:root {
  --primary-blue: #1a5f7a;
  --primary-blue-dark: #114456;
  --secondary-blue: #2a9d8f;
  --accent-color: #e76f51;
  --accent-light: #f4a261;
  
  /* Text Colors with Better Contrast */
  --dark-text: #1a2b3c;
  --medium-text: #3a4b5c;
  --light-text: #6c757d;
  
  /* Background Colors */
  --bg-light: #f8fafc;
  --bg-lighter: #ffffff;
  --bg-section: #f1f7fa;
  --bg-card: #ffffff;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #1a5f7a 0%, #2a9d8f 100%);
  --gradient-accent: linear-gradient(135deg, #e76f51 0%, #f4a261 100%);
  --gradient-dark: linear-gradient(135deg, #114456 0%, #1a5f7a 100%);
  
  /* Shadows */
  --shadow-light: 0 6px 20px rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.1);
  --shadow-dark: 0 15px 40px rgba(0, 0, 0, 0.12);
  --shadow-button: 0 5px 15px rgba(26, 95, 122, 0.3);
  --shadow-button-hover: 0 8px 25px rgba(26, 95, 122, 0.4);
  
  /* Spacing System */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 4rem;
  
  /* Border Radius */
  --border-radius-sm: 8px;
  --border-radius: 12px;
  --border-radius-lg: 16px;
  --border-radius-pill: 50px;
  
  /* Transitions */
  --transition-fast: all 0.2s ease;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--medium-text);
    line-height: 1.6;
    background-color: var(--bg-lighter);
    overflow-x: hidden;
}

/* Header & Navigation */
.top-bar {
    background: var(--gradient-primary);
    color: white;
    font-size: 0.9rem;
    padding: 8px 0;
}

.top-bar a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.top-bar a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.navbar {
    padding: 15px 0;
    background: white !important;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-light);
}

.navbar-brand img {
    height: 55px;
    transition: var(--transition);
}

.nav-link {
    font-weight: 600;
    color: var(--dark-text) !important;
    margin: 0 8px;
    padding: 8px 16px !important;
    border-radius: 50px;
    transition: var(--transition);
    font-family: 'Montserrat', sans-serif;
}

.nav-link:hover, .nav-link.active {
    background: rgba(26, 95, 122, 0.1);
    color: var(--primary-blue) !important;
}

.nav-cta {
    background: var(--gradient-accent) !important;
    color: white !important;
    padding: 10px 25px !important;
    border-radius: 50px;
    font-weight: 700;
    margin-left: 15px;
    border: none;
    box-shadow: 0 5px 15px rgba(231, 111, 81, 0.3);
}

.nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(231, 111, 81, 0.4);
}
/* Clear Heading Hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: var(--space-md);
}

h1 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: var(--space-lg);
}

h2 {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3;
}

h3 {
  font-size: 1.8rem;
  font-weight: 600;
}

h4 {
  font-size: 1.4rem;
  font-weight: 600;
}

h5 {
  font-size: 1.2rem;
  font-weight: 600;
}

h6 {
  font-size: 1rem;
  font-weight: 600;
}

.lead {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--medium-text);
  line-height: 1.7;
}

p {
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

/* ========== SPACING & LAYOUT ========== */
/* Section Spacing */
section {
  padding: var(--space-xxl) 0;
  position: relative;
}

.section-bg-light {
  background-color: var(--bg-section);
}

/* Grid Spacing */
.row.g-4 {
  row-gap: var(--space-lg);
}

/* ========== BUTTON SYSTEM ENHANCEMENT ========== */
/* Primary CTA Button - Most Prominent */
.btn-primary {
  background: var(--gradient-primary);
  border: none;
  padding: 0.875rem 2rem;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: var(--border-radius-pill);
  transition: var(--transition);
  box-shadow: var(--shadow-button);
  color: white;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-dark);
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-button-hover);
  color: white;
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(26, 95, 122, 0.3), var(--shadow-button-hover);
}

/* Hero Section Primary Button - Larger */
.hero-section .btn-primary {
  font-size: 1.125rem;
  padding: 1rem 2.5rem;
  margin-right: var(--space-sm);
  min-width: 180px;
}

/* Secondary Button */
.btn-outline-primary {
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
  background: transparent;
  padding: 0.75rem 1.75rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--border-radius-pill);
  transition: var(--transition);
}

.btn-outline-primary:hover {
  background: var(--primary-blue);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 95, 122, 0.2);
}

.btn-outline-primary:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(26, 95, 122, 0.2);
}
       /* Small mobile devices */
@media (max-width: 576px) {
    .btn-primary, .btn-outline-primary {
        padding: 12px 20px;
        font-size: 1rem;
        margin-bottom: 20px;
    }
} 
/* Footer - Updated Contact Info Section */
footer {
    background: var(--dark-text);
    color: white;
    padding-top: 80px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: var(--gradient-accent);
}

.footer-logo {
    height: 60px;
    margin-bottom: 25px;
}

.footer-about {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    line-height: 1.8;
}

.footer-title {
    color: white;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-color);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: white;
    padding-left: 8px;
}

.footer-links a i {
    margin-right: 10px;
    font-size: 0.9rem;
}

/* Contact Info Styling - Block layout without <br/> */
.contact-info {
    color: rgba(255, 255, 255, 0.7);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    color: var(--accent-color);
    margin-right: 15px;
    margin-top: 4px;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-content {
    flex: 1;
    display: block; /* Changed from flex to block for proper stacking */
}

.contact-label {
    display: block; /* Makes heading a block element */
    margin-bottom: 4px; /* Space between heading and detail */
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.3;
}

.contact-detail {
    display: block; /* Makes detail a block element */
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    line-height: 1.4;
    transition: var(--transition);
}

.contact-detail:hover {
    color: white;
    text-decoration: underline;
}

/* For links specifically */
a.contact-detail:hover {
    color: white;
    text-decoration: underline;
}

/* Social Icons */
.social-icons {
    display: flex;
    margin-top: 25px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 12px;
    color: white;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--gradient-accent);
    transform: translateY(-5px);
}

.copyright {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px 0;
    margin-top: 60px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-item {
        margin-bottom: 18px;
    }
    
    .contact-label {
        margin-bottom: 3px;
    }
}