/* Theme Palette & Variables */
:root {
    --primary-color: #0A2540;       /* Dark Elegant Navy */
    --secondary-color: #0056B3;     /* Royal Corporate Blue */
    --accent-color: #00B4D8;        /* Modern Tech Cyan Accent */
    --dark-title: #1E293B;          /* Charcoal Slate for readable text */
    --light-bg: #F8FAFC;            /* Clean light-elegant background */
    --white-soft: rgba(255, 255, 255, 0.15);
    --primary-soft: rgba(10, 37, 64, 0.06);
    --danger-soft: rgba(239, 68, 68, 0.1);
    --warning-soft: rgba(245, 158, 11, 0.1);
    --success-soft: rgba(16, 185, 129, 0.1);
}

/* Base Typo Smoothness */
body {
    font-family: 'Inter', 'Poppins', sans-serif;
    color: #475569;
    background-color: #FFFFFF;
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

/* Topbar Typography */
.top-bar {
    background-color: var(--primary-color);
    color: #E2E8F0;
    font-size: 0.85rem;
    font-weight: 400;
}
.text-accent {
    color: var(--accent-color) !important;
}
.text-success-accent {
    color: #10B981 !important;
}

/* Navbar High Refinement */
.main-navbar {
    transition: all 0.3s ease;
    padding: 0.75rem 0;
    border-bottom: 1px solid #F1F5F9;
}
.navbar-logo {
    height: 48px;
    object-fit: contain;
}
.navbar-nav .nav-link {
    color: #334155;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.25s ease;
    position: relative;
}
.navbar-nav .nav-link:hover, 
.navbar-nav .nav-link.active {
    color: var(--secondary-color);
}

/* Buttons Styling */
.btn-primary-elegant {
    background-color: var(--secondary-color);
    color: #FFFFFF;
    border: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}
.btn-primary-elegant:hover {
    background-color: #004494;
    color: #FFFFFF;
    transform: translateY(-1px);
}
.btn-accent-gradient {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: #FFFFFF;
    border: none;
    transition: all 0.3s ease;
}
.btn-accent-gradient:hover {
    opacity: 0.95;
    color: #FFFFFF;
    transform: translateY(-1px);
}
.btn-outline-light-elegant {
    border: 2px solid rgba(255,255,255,0.4);
    color: #FFFFFF;
    font-weight: 500;
    transition: all 0.3s ease;
}
.btn-outline-light-elegant:hover {
    background-color: #FFFFFF;
    color: var(--primary-color);
    border-color: #FFFFFF;
}
.btn-outline-primary-elegant {
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    font-weight: 500;
    transition: all 0.3s ease;
}
.btn-outline-primary-elegant:hover {
    background-color: var(--secondary-color);
    color: white;
}

/* Premium Hero Layout */
.hero-premium {
    background: linear-gradient(145deg, #0A2540 30%, #004494 100%);
    position: relative;
    padding: 4rem 0;
}
.hero-premium::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0; height: 40px;
    background: linear-gradient(to top, var(--light-bg), transparent);
}
.text-accent-gradient {
    background: linear-gradient(to right, #00B4D8, #38BDF8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}
.bg-accent-light {
    background-color: rgba(0, 180, 216, 0.15);
}
.uppercase-tracking {
    letter-spacing: 1.5px;
    font-size: 0.8rem;
}
.leading-tight {
    line-height: 1.25;
}
.opacity-90 {
    opacity: 0.90;
}
.border-glass {
    border: 6px solid rgba(255, 255, 255, 0.08);
}

/* Service & Grid Cards */
.bg-light-elegant {
    background-color: var(--light-bg);
}
.max-w-600 {
    max-width: 650px;
    margin: 0 auto;
}
.decor-line {
    width: 50px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 4px;
}
.text-dark-title {
    color: var(--dark-title);
}
.corporate-card {
    border-radius: 16px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.corporate-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(10, 37, 64, 0.08) !important;
}
.bg-gradient-premium {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}
.icon-shape {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bg-white-soft {
    background-color: rgba(255, 255, 255, 0.12);
}
.text-white-80 { color: rgba(255,255,255,0.8); }
.text-white-90 { color: rgba(255,255,255,0.9); }
.space-y-2 li, .space-y-3 li {
    margin-bottom: 0.75rem;
}

/* Facility Box Grid Layout */
.facility-item-box {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0 !important;
    transition: all 0.3s ease;
}
.facility-item-box:hover {
    border-color: var(--accent-color) !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.03);
}
.facility-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

/* Pricing Section */
.price-elegant-card {
    border-radius: 16px;
    background-color: #FFFFFF;
    transition: all 0.3s ease;
}
.price-elegant-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.06) !important;
}
.featured-price-card {
    background: linear-gradient(150deg, #0A2540 0%, #0056B3 100%);
    border: none;
    color: #FFFFFF;
    transform: scale(1.03);
}
@media (max-width: 991px) {
    .featured-price-card {
        transform: scale(1);
        margin-top: 15px;
        margin-bottom: 15px;
    }
}
.border-white-20 {
    border-color: rgba(255,255,255,0.15) !important;
}

/* Premium Footer */
.footer-premium {
    background-color: #0F172A !important;
}
.footer-logo {
    height: 48px;
}
.text-white-60 { color: #94A3B8; }
.text-white-70 { color: #CBD5E1; }
.social-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.06);
    color: #FFFFFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    text-decoration: none;
}
.social-icon-btn:hover {
    background-color: var(--accent-color);
    color: #0F172A;
}
.footer-heading::after {
    content: '';
    position: absolute;
    left: 0; bottom: -8px; width: 35px; height: 2px;
    background-color: var(--accent-color);
}

/* About & Company Profile Styling */
.about-section {
  padding: 60px 20px;
  background-color: #f9fbfd;
  color: #333;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 36px;
  color: #0A2540;
  margin-bottom: 10px;
}

.section-title h2 span {
  color: #00B4D8;
}

.section-title p {
  font-size: 18px;
  color: #64748B;
}

/* Company Profile Layout */
.company-profile-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.company-profile-content .text-content {
  flex: 1;
  min-width: 300px;
}

.company-profile-content .text-content h3 {
  font-size: 26px;
  color: #0A2540;
  margin-bottom: 20px;
}

.company-profile-content .text-content p {
  line-height: 1.8;
  margin-bottom: 15px;
  color: #475569;
}

.vision-mission {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.vision-mission .box {
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  flex: 1;
  border-left: 4px solid #00B4D8;
}

.vision-mission .box h4 {
  color: #0A2540;
  margin-bottom: 10px;
  font-size: 20px;
}

.vision-mission .box ul {
  padding-left: 20px;
  line-height: 1.6;
}

.company-profile-content .image-content {
  flex: 1;
  min-width: 300px;
}

.company-profile-content .image-content img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.divider {
  border: 0;
  height: 1px;
  background: #CBD5E1;
  margin: 60px 0;
}

/* Profile Card Styling */
.profile-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border-top: 5px solid #0A2540;
}

.profile-info h3 {
  font-size: 28px;
  color: #0A2540;
  margin-bottom: 5px;
}

.profile-info .role {
  font-size: 18px;
  font-weight: bold;
  color: #00B4D8;
  margin-bottom: 25px;
}

.profile-info .description {
  line-height: 1.8;
  color: #475569;
  margin-bottom: 15px;
}

/* Responsiveness */
@media (max-width: 768px) {
  .vision-mission {
    flex-direction: column;
  }
}