@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:wght@300;400;500;600;700&family=Urbanist:wght@300;400;500;600;700;800&display=swap');

/* ============================================
   CSS VARIABLES - Theme Colors & Design Tokens
   ============================================ */
:root {
    --main-color: #0d473c;
    --accent-color: #0d473c;
    --accent-light: #156556;
    --accent-dark: #0a352b;
    --dark-green: #0d473c;
    --medium-green: #0d473c;
    --light-green: #156556;
    --dark-bg: #0a352b;
    --light-bg: #f8faf9;
    --text-primary: #1d1d1b;
    --text-secondary: #4a5568;
    --white: #fcf8f5;
    --gold: #f0ca86;
    --gold-light: #f5d9a8;
    --gold-dark: #d4b066;
    --gradient-dark: linear-gradient(135deg, #0d473c 0%, #0a352b 100%);
    --gradient-green: linear-gradient(135deg, #0d473c 0%, #156556 100%);
    --gradient-light: linear-gradient(135deg, #156556 0%, #1a7a6a 100%);
    --gradient-green-gold: linear-gradient(135deg, #0d473c 0%, #f0ca86 100%);
    --gradient-gold-green: linear-gradient(135deg, #f0ca86 0%, #0d473c 100%);
    --shadow-sm: 0 2px 8px rgba(13, 71, 60, 0.1);
    --shadow-md: 0 4px 16px rgba(13, 71, 60, 0.15);
    --shadow-lg: 0 8px 32px rgba(13, 71, 60, 0.2);
    --shadow-xl: 0 12px 48px rgba(13, 71, 60, 0.25);
    --shadow-gold: 0 4px 16px rgba(240, 202, 134, 0.2);
}

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

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 15px;
}

body {
    font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--light-bg);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 16px;
}

/* ============================================
   TYPOGRAPHY - Font System
   ============================================ */
/* All headings use Urbanist */
h1, .h1 {
    font-family: 'Urbanist', serif;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    line-height: 1.3;
}

h2, .h2 {
    font-family: 'Urbanist', serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    line-height: 1.3;
}

h3, .h3 {
    font-family: 'Urbanist', serif;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    line-height: 1.3;
}

h4, .h4 {
    font-family: 'Urbanist', serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    line-height: 1.3;
}

h5, .h5 {
    font-family: 'Urbanist', serif;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    line-height: 1.3;
}

h6, .h6 {
    font-family: 'Urbanist', serif;
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    line-height: 1.3;
}

.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
    font-family: 'Urbanist', serif;
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

/* Body text and paragraphs use Inter Tight */
p, span:not(h1 span):not(h2 span):not(h3 span):not(h4 span):not(h5 span):not(h6 span), 
a, li, td, th, label, input, textarea, select, button, .text, .body-text {
    font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
}

/* Lead text uses Inter Tight */
.lead {
    font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Ensure all buttons use Inter */
.btn, .btn-elegant, .btn-primary, .btn-success, .btn-outline-primary, .btn-outline-light, .btn-outline-secondary {
    font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Ensure all badges use Inter - font will be set in badge definition below */

/* Ensure all navigation links use Urbanist */
.nav-link, .nav-link-elegant {
    font-family: 'Urbanist', serif;
}

/* Ensure all card text uses Inter */
.card-text, .card-text-elegant, .article-description, .feature-description, .news-description {
    font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Ensure all form elements use Inter */
.form-control, .form-select, .form-label, .input-group {
    font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Ensure all small text uses Inter */
small, .small {
    font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ============================================
   SCROLLING & SCROLLBAR
   ============================================ */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

/* Enhanced Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--gradient-green);
    border-radius: 5px;
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-light);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-gradient-section {
    padding: 120px 0 40px 0;
    background: linear-gradient(135deg, #0d473c 0%, #0d473c 50%, #156556 100%); 
    position: relative;
    overflow: hidden;
}

/* Flying logos in hero section - more transparent than footer */
.hero-gradient-section::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background-image: url("/logo-footer.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.2;
    z-index: 0;
    pointer-events: none;
    animation: hero-logo-fly-1 120s linear infinite;
    top: 20%;
    left: 10%;
}

.hero-gradient-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background-image: url("/logo-footer.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.2;
    z-index: 0;
    pointer-events: none;
    animation: hero-logo-fly-2 150s linear infinite;
    top: 60%;
    right: 15%;
}

/* Third logo using hero-gradient-content */
.hero-gradient-content::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    background-image: url("/logo-footer.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
    animation: hero-logo-fly-3 180s linear infinite;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-gradient-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes hero-logo-fly-1 {
  0% { 
    transform: translate(0, 0) rotate(0deg);
  }
  25% { 
    transform: translate(150px, -60px) rotate(90deg);
  }
  50% { 
    transform: translate(300px, 0) rotate(180deg);
  }
  75% { 
    transform: translate(150px, 60px) rotate(270deg);
  }
  100% { 
    transform: translate(0, 0) rotate(360deg);
  }
}

@keyframes hero-logo-fly-2 {
  0% { 
    transform: translate(0, 0) rotate(360deg);
  }
  25% { 
    transform: translate(-100px, 50px) rotate(270deg);
  }
  50% { 
    transform: translate(-200px, 0) rotate(180deg);
  }
  75% { 
    transform: translate(-100px, -50px) rotate(90deg);
  }
  100% { 
    transform: translate(0, 0) rotate(0deg);
  }
}

@keyframes hero-logo-fly-3 {
  0% { 
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  33% { 
    transform: translate(-80px, -100px) rotate(120deg) scale(1.1);
  }
  66% { 
    transform: translate(80px, -50px) rotate(240deg) scale(0.9);
  }
  100% { 
    transform: translate(0, 0) rotate(360deg) scale(1);
  }
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar-elegant {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(13, 71, 60, 0.15);
    padding: 1.2rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 24px rgba(13, 71, 60, 0.08);
}

.navbar-elegant.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    box-shadow: 0 8px 32px rgba(13, 71, 60, 0.12);
    border-bottom: 1px solid rgba(13, 71, 60, 0.2);
    padding: 0.8rem 0;
}

.navbar-brand-elegant {
    font-family: 'Urbanist', serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    background: var(--gradient-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-logo {
    width: 40px;
    height: 40px;
    margin-right: 12px;
    border-radius: 50%;
    background: var(--gradient-green-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--white);
    box-shadow: 0 2px 8px rgba(13, 71, 60, 0.2), 0 0 20px rgba(240, 202, 134, 0.3);
}

.navbar-toggler {
    border-color: rgba(13, 71, 60, 0.3);
}

.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='rgba(13, 71, 60, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(13, 71, 60, 0.15);
}

.nav-link-elegant {
    color: var(--dark-green) !important;
    font-family: 'Urbanist', serif;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.95rem;
}

.nav-link-elegant:hover {
    color: var(--accent-color) !important;
    background: rgba(13, 71, 60, 0.05);
}

.nav-link-elegant::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-green-gold);
    transition: width 0.3s ease;
}

/* Dropdown toggle in navbar - override nav-link-elegant::after */
.nav-link-elegant.dropdown-toggle {
    cursor: pointer;
}

.nav-link-elegant.dropdown-toggle::after {
    content: '';
    position: static;
    display: inline-block;
    margin-left: 0.5em;
    vertical-align: 0.255em;
    width: 0;
    height: 0;
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    transform: none;
    background: none;
}

.nav-link-elegant.dropdown-toggle:hover::after {
    width: 0;
    height: 0;
}

.nav-link-elegant:hover::after {
    width: 80%;
}

/* Dropdown Menu Elegant Styling */
.nav-item.dropdown .dropdown-menu {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(13, 71, 60, 0.15);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(13, 71, 60, 0.15), 0 0 20px rgba(240, 202, 134, 0.1);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    min-width: 200px;
    animation: dropdownFadeIn 0.3s ease-out;
    overflow: hidden;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-item.dropdown .dropdown-item {
    padding: 0.75rem 1.25rem;
    color: var(--dark-green);
    font-family: 'Urbanist', serif;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: none;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.nav-item.dropdown .dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: var(--gradient-green-gold);
    transition: width 0.3s ease;
    z-index: 0;
}

.nav-item.dropdown .dropdown-item:hover {
    background: rgba(13, 71, 60, 0.08);
    color: var(--accent-color);
    padding-left: 1.5rem;
    transform: translateX(3px);
}

.nav-item.dropdown .dropdown-item:hover::before {
    width: 4px;
}

.nav-item.dropdown .dropdown-item.active {
    background: rgba(13, 71, 60, 0.12);
    color: var(--accent-color);
    font-weight: 600;
}

.nav-item.dropdown .dropdown-item.active::before {
    width: 4px;
    background: var(--gradient-green-gold);
}

.nav-item.dropdown .dropdown-item span {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    flex: 1;
}

.nav-item.dropdown .dropdown-item i {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.nav-item.dropdown .dropdown-item span i:first-child {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.nav-item.dropdown .dropdown-item:hover span i:first-child,
.nav-item.dropdown .dropdown-item.active span i:first-child {
    color: var(--accent-color);
    transform: scale(1.1);
}

.nav-item.dropdown .dropdown-item .bi-check-circle-fill {
    color: var(--gold);
    font-size: 1.1rem;
    margin-left: auto;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.nav-item.dropdown .dropdown-item.active .bi-check-circle-fill {
    opacity: 1;
    transform: scale(1);
}

.nav-link-elegant.active::after {
    width: 80%;
    background: var(--gradient-green-gold);
}


/* Offcanvas Mobile Menu */
.offcanvas {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-left: 1px solid rgba(13, 71, 60, 0.15);
    box-shadow: -4px 0 24px rgba(13, 71, 60, 0.15);
}

.offcanvas-header {
    border-bottom: 1px solid rgba(13, 71, 60, 0.1);
    padding: 1.5rem;
}

.offcanvas-title {
    font-family: 'Urbanist', serif;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1px;
    background: var(--gradient-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-close {
    background-size: 1rem;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.btn-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.offcanvas-body {
    padding: 1.5rem;
}

.offcanvas-body .navbar-nav {
    gap: 0.5rem;
}

.offcanvas-body .nav-link-elegant {
    padding: 1rem 1.25rem !important;
    margin: 0 !important;
    border-radius: 12px;
    font-size: 1rem;
}

.offcanvas-body .nav-link-elegant:hover {
    background: rgba(13, 71, 60, 0.1);
    transform: translateX(5px);
}

.offcanvas-body .nav-link-elegant.active {
    background: var(--gradient-green);
    color: var(--white) !important;
    box-shadow: 0 4px 16px rgba(13, 71, 60, 0.2);
}

.offcanvas-body .nav-link-elegant.active::after {
    display: none;
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    min-height: 70vh;
    overflow: hidden;
}

.carousel-item {
    min-height: 70vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 71, 60, 0.85) 0%, rgba(13, 71, 60, 0.75) 100%);
    z-index: 1;
}

.carousel-content {
    position: relative;
    z-index: 2;
    padding: 180px 18px 60px 18px;
    color: var(--white);
} 

/* Glassmorphism Hero Content Box */
.hero-glass-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.hero-glass-box:hover {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
    transform: translateY(-5px);
}

.hero-subtitle {
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.875rem;
    letter-spacing: 3px;
    color: var(--gold-light);
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-family: 'Urbanist', serif;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.hero-description {
    font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    font-weight: 400;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

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

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

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: rgba(21, 101, 86, 0.25);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), 0 0 20px rgba(240, 202, 134, 0.3);
    transform: translateY(-50%) scale(1.1);
    border-color: rgba(240, 202, 134, 0.5);
}

.carousel-indicators {
    bottom: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0 auto;
    width: fit-content;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    margin: 0 0.25rem;
}

.carousel-indicators [data-bs-target].active {
    background: var(--gradient-green-gold);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    border-color: rgba(240, 202, 134, 0.6);
    width: 30px;
    border-radius: 6px;
    box-shadow: 0 0 15px rgba(240, 202, 134, 0.4);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-elegant {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    font-family: 'Inter Tight', sans-serif;
}

.btn-elegant-primary {
    background: var(--gradient-green);
    color: var(--white);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.btn-elegant-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 0 20px rgba(240, 202, 134, 0.3);
    background: var(--gradient-green);
    color: var(--white);
    border-color: var(--gold);
}

.btn-elegant-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-elegant-outline:hover {
    background: var(--white);
    color: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-elegant-gold {
    background: var(--gold);
    color: var(--dark-green);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.btn-elegant-gold:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 0 20px rgba(240, 202, 134, 0.4);
    background: var(--gold-light);
    color: var(--dark-green);
    border-color: var(--gold-dark);
}
.lounge-hero{
    position: relative;
    padding: 70px 0 0 0;
    overflow: hidden;
} 
.lounge-title {
    font-family: 'Urbanist', serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--dark-green); 
    text-align: center;
    position: relative;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
}

.left-title {
    font-family: 'Urbanist', serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--dark-green); 
    text-align: center;
    position: relative;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
}

.left-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0px;
    transform: translateX(0%);
    width: 80px;
    height: 4px;
    background: var(--gradient-green-gold);
    border-radius: 2px;
    opacity: 0.8;
    transition: width 0.3s ease;
}

.left-title:hover::after {
    width: 120px;
}

/* ============================================
   SECTIONS
   ============================================ */
.section-elegant {
    padding: 4rem 0;
}

.section-title {
    font-family: 'Urbanist', serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--dark-green); 
    text-align: center;
    position: relative;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-green-gold);
    border-radius: 2px;
    opacity: 0.8;
    transition: width 0.3s ease;
}

.section-title:hover::after {
    width: 120px;
}


.section-subtitle {
    font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    font-weight: 400;
}

/* ============================================
   CARDS - Unified Card Styling
   ============================================ */
.card-elegant {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
}

.card-elegant::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 71, 60, 0.05) 0%, rgba(240, 202, 134, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: 20px;
    z-index: 0;
}

.card-elegant:hover::before {
    opacity: 1;
}

.card-elegant > * {
    position: relative;
    z-index: 1;
}

.card-elegant:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    box-shadow: var(--shadow-xl), 0 0 25px rgba(240, 202, 134, 0.1);
    border-color: rgba(240, 202, 134, 0.4);
}

.card-elegant-no-hover {
    transition: none;
}

.card-elegant-no-hover:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 255, 255, 0.2);
}

.card-elegant-no-hover::before {
    display: none;
}

.border-gold {
    border-color: var(--gold) !important;
}

.card-img-elegant {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.card-body-elegant {
    padding: 2rem;
}

.card-title-elegant {
    font-family: 'Urbanist', serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: var(--dark-green);
    margin-bottom: 1rem;
}

.card-text-elegant {
    font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
    font-weight: 400;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-green);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%); 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--white); 
    transition: all 0.3s ease;
}

.card-icon:hover {
    background: var(--gradient-gold-green);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-lg), var(--shadow-gold);
    border-color: rgba(240, 202, 134, 0.6);
}

/* ============================================
   OFFERS SECTION
   ============================================ */
.offers-section {
    background: linear-gradient(135deg, var(--light-bg) 0%, #e8f5ed 100%);
}

.offer-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    height: 100%;
}

.offer-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(240, 202, 134, 0.15);
    border-color: var(--gold);
}

.offer-badge {
    display: inline-block;
    background: var(--gold-dark);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-family: 'Inter Tight', sans-serif;
    box-shadow: var(--shadow-gold);
}

.offer-title {
    /* font-family: 'Urbanist', serif; */
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 1rem;
}

.offer-description {
    /* font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; */
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.offer-price {
    /* font-family: 'Urbanist', serif; */
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.offer-price small {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    background: var(--white);
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img.rounded {
    border-radius: 20px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-text {
    font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-secondary);
    font-weight: 400;
}

.about-icon {
    width: 50px;
    height: 50px;
    background: var(--dark-green);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    border: 1px solid rgba(240, 202, 134, 0.4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.3rem;
    color: var(--white);
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md), var(--shadow-gold);
}

.about-icon:hover {
    transform: scale(1.1) rotate(5deg);
    background: var(--gradient-gold-green);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    box-shadow: var(--shadow-lg), var(--shadow-gold);
    border-color: rgba(240, 202, 134, 0.6);
}

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

/* ============================================
   NEWS SECTION
   ============================================ */
.news-section {
    background: linear-gradient(135deg, var(--light-bg) 0%, #e8f5ed 100%);
    position: relative;
}

.news-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(21, 101, 86, 0.02) 0%, rgba(13, 71, 60, 0.02) 100%);
    pointer-events: none;
}

.news-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.news-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(240, 202, 134, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.news-card:hover::after {
    opacity: 1;
}

.news-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    box-shadow: var(--shadow-xl);
}

.news-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.news-date {
    font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    font-weight: 400;
}

.news-date i {
    color: var(--gold);
}

.news-category {
    font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--gradient-dark);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: var(--shadow-sm);
}

.news-link {
    font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--gold-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.news-link:hover {
    color: var(--light-green);
    transform: translateX(5px);
}

.news-link i {
    transition: transform 0.3s ease;
}

.news-link:hover i {
    transform: translateX(3px);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    background: linear-gradient(135deg, var(--light-bg) 0%, #e8f5ed 100%);
}

/* ============================================
   FORMS
   ============================================ */
.form-control-elegant {
    border-radius: 12px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    padding: 1rem 1.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
}

.form-control-elegant:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    box-shadow: 0 0 0 0.2rem rgba(21, 101, 86, 0.15), 0 4px 16px rgba(240, 202, 134, 0.2);
    outline: none;
}

.form-control-elegant::placeholder {
    color: #a0aec0;
    font-weight: 400;
}

.form-label-elegant {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 0.5rem;
    letter-spacing: 0.3px;
    font-size: 0.95rem;
}

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

/* Bootstrap Form Controls Override for Palmeera */
.form-control {
    border-radius: 12px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    color: var(--text-primary);
}

.form-control:focus {
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    box-shadow: 0 0 0 0.2rem rgba(13, 71, 60, 0.15), 0 4px 16px rgba(240, 202, 134, 0.2);
    outline: none;
    color: var(--text-primary);
}

.form-control-lg {
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    border-radius: 12px;
}

.form-control::placeholder {
    color: #a0aec0;
    font-weight: 400;
}

.form-select {
    border-radius: 12px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    color: var(--text-primary);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    padding-right: 2.5rem;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.form-select:focus {
    border-color: var(--accent-color);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    box-shadow: 0 0 0 0.2rem rgba(13, 71, 60, 0.15), 0 4px 16px rgba(240, 202, 134, 0.2);
    outline: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%231a5d3a' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    color: var(--text-primary);
}

.form-select-lg {
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    border-radius: 12px;
    padding-right: 3rem;
    background-position: right 1rem center;
}

.form-label {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 0.5rem;
    letter-spacing: 0.3px;
    font-size: 0.95rem;
    display: block;
}

.form-label i {
    margin-right: 0.5rem;
}

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

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

/* Alert Styles */
.alert {
    border-radius: 12px;
    border: none;
    padding: 1rem 1.5rem;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    box-shadow: 0 4px 16px rgba(13, 71, 60, 0.1);
}

.alert-info {
    background: rgba(13, 202, 240, 0.15);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    color: #032830;
    border-left: 4px solid #0dcaf0;
}

.alert-success {
    background: rgba(25, 135, 84, 0.15);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    color: #051b11;
    border-left: 4px solid #198754;
}

.alert-danger {
    background: rgba(220, 53, 69, 0.15);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    color: #2c0e12;
    border-left: 4px solid #dc3545;
}

.alert-warning {
    background: rgba(255, 193, 7, 0.15);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    color: #332601;
    border-left: 4px solid #ffc107;
}

.alert-primary {
    background: rgba(13, 110, 253, 0.15);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    color: #021633;
    border-left: 4px solid #0d6efd;
}

/* Input Group Styles */
.input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}

.input-group .form-control {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
}

.input-group .btn {
    position: relative;
    z-index: 2;
    border-radius: 0 12px 12px 0;
}

.input-group .form-control:first-child {
    border-radius: 12px 0 0 12px;
}

/* ============================================
   BADGES
   ============================================ */
.badge {
    font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
}

/* List Unstyled */
.list-unstyled {
    padding-left: 0;
    list-style: none;
}

.list-unstyled li {
    margin-bottom: 0.5rem;
}

/* Border Utilities */
.border-top {
    border-top: 1px solid rgba(13, 71, 60, 0.1) !important;
}

.border-bottom {
    border-bottom: 1px solid rgba(13, 71, 60, 0.1) !important;
}

/* Shadow Utilities */
.shadow-sm {
    box-shadow: var(--shadow-sm) !important;
}

/* Border Radius Utilities */
.rounded-pill {
    border-radius: 50px !important;
}

.rounded {
    border-radius: 12px !important;
}

/* Width Utilities */
.w-100 {
    width: 100% !important;
}

/* Text Utilities */
.text-muted {
    color: var(--text-secondary) !important;
}

.text-center {
    text-align: center !important;
}

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

.text-success {
    color: #198754 !important;
}

.text-danger {
    color: #dc3545 !important;
}

.text-warning {
    color: #ffc107 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.small {
    font-size: 0.875rem;
}


/* Spacing Utilities */
.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }
.me-1 { margin-right: 0.25rem !important; }
.me-2 { margin-right: 0.5rem !important; }
.me-3 { margin-right: 1rem !important; }
.py-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
.px-5 { padding-left: 3rem !important; padding-right: 3rem !important; }

/* Display Utilities */
.d-flex {
    display: flex !important;
}

.d-block {
    display: block !important;
}

.align-items-center {
    align-items: center !important;
}

.align-items-start {
    align-items: flex-start !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.justify-content-center {
    justify-content: center !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

/* Position Utilities */
.position-relative {
    position: relative !important;
}

/* Gap Utilities */
.gap-3 {
    gap: 1rem !important;
}

.g-3 {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
}

.g-4 {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
    display: flex;
    padding-left: 0;
    list-style: none;
    justify-content: center;
    margin: 2rem 0;
    gap: 0.5rem;
}

.page-item {
    margin: 0;
}

.page-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 12px;
    transition: all 0.3s ease;
    min-width: 44px;
    height: 44px;
    box-shadow: 0 2px 8px rgba(13, 71, 60, 0.08);
}

.page-link:hover {
    z-index: 2;
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(13, 71, 60, 0.15);
}

.page-link:focus {
    z-index: 3;
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.95);
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(13, 71, 60, 0.15), 0 4px 16px rgba(13, 71, 60, 0.2);
    border-color: var(--accent-color);
}

.page-item.active .page-link,
.page-link.active {
    z-index: 3;
    color: var(--white);
    background: var(--gradient-green);
    border-color: var(--accent-color);
    box-shadow: 0 4px 16px rgba(13, 71, 60, 0.3);
    font-weight: 600;
}

.page-item.active .page-link:hover,
.page-link.active:hover {
    background: var(--gradient-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 71, 60, 0.4);
}

.page-item.disabled .page-link,
.page-link.disabled {
    color: #a0aec0;
    pointer-events: none;
    background: rgba(248, 250, 252, 0.8);
    border-color: rgba(226, 232, 240, 0.5);
    opacity: 0.6;
    cursor: not-allowed;
}

.page-link i {
    font-size: 1.1rem;
    line-height: 1;
}

/* Pagination Responsive */
@media (max-width: 576px) {
    .pagination {
        gap: 0.25rem;
        flex-wrap: wrap;
    }
    
    .page-link {
        padding: 0.5rem 0.75rem;
        min-width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .page-link i {
        font-size: 1rem;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer-elegant {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-title {
    font-family: 'Urbanist', serif;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    color: var(--gold-light);
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.footer-link:hover {
    color: var(--gold-light);
    padding-left: 5px;
}

.footer-copyright {
    text-align: center;
    padding-top: 2rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-social {
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.footer-social:hover {
    color: var(--gold-light) !important;
    transform: translateY(-3px);
}

/* ============================================
   DECORATIVE ELEMENTS
   ============================================ */
.divider-gold {
    width: 100px;
    height: 4px;
    background: var(--gradient-green-gold);
    margin: 2rem auto;
    border-radius: 2px;
    box-shadow: var(--shadow-gold);
}

.divider-left {
    margin-left: 0;
    margin-right: auto;
    margin-top: 0;
    margin-bottom: 1rem;
}

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

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

/* Responsive Typography */
@media (max-width: 768px) {
    body {
        font-size: 15px;
    }
    
    h1, .h1 {
        font-size: 2rem;
    }
    
    h2, .h2 {
        font-size: 1.75rem;
    }
    
    h3, .h3 {
        font-size: 1.5rem;
    }
    
    h4, .h4 {
        font-size: 1.25rem;
    }
    
    h5, .h5 {
        font-size: 1.125rem;
    }
    
    h6, .h6 {
        font-size: 1rem;
    }
    
    .lead {
        font-size: 1.125rem;
    }
}

@media (max-width: 576px) {
    body {
        font-size: 14px;
    }
    
    h1, .h1 {
        font-size: 1.75rem;
    }
    
    h2, .h2 {
        font-size: 1.5rem;
    }
    
    h3, .h3 {
        font-size: 1.25rem;
    }
    
    h4, .h4 {
        font-size: 1.125rem;
    }
    
    h5, .h5 {
        font-size: 1rem;
    }
    
    h6, .h6 {
        font-size: 0.95rem;
    }
    
    .lead {
        font-size: 1rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .carousel-content {
        padding: 140px 30px 60px 30px;
    }
    .hero-subtitle {
        font-size: 0.75rem;
        letter-spacing: 2px;
        margin-bottom: 0.75rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
        letter-spacing: 0.3px;
        margin-bottom: 1.25rem;
        line-height: 1.3;
        word-wrap: break-word;
    }
    
    .hero-description {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
        padding-right: 0;
        word-wrap: break-word;
    }
    
    .btn-elegant {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .section-elegant {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .lounge-title {
        font-size: 1.75rem;
    }
    
    .hero-carousel,
    .carousel-item {
        min-height: 50vh;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
    }

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

    .carousel-control-next {
        right: 15px;
    }
    
    .hero-glass-box {
        padding: 1.5rem;
        margin: 0 1rem;
    }
}

@media (max-width: 576px) {
    .hero-subtitle {
        font-size: 0.7rem;
        letter-spacing: 1.5px;
        margin-bottom: 0.5rem;
    }
    
    .hero-title {
        font-size: 1.875rem;
        letter-spacing: 0.2px;
        margin-bottom: 1rem;
        line-height: 1.3;
        word-wrap: break-word;
    }
    
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.25rem;
        word-wrap: break-word;
    }
    
    .btn-elegant {
        padding: 0.625rem 1.25rem;
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .lounge-title {
        font-size: 1.5rem;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    border: none;
    color: white;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: visible;
}

.whatsapp-button:hover {
    background: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}

.whatsapp-button:active {
    transform: scale(0.95);
}

.whatsapp-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    opacity: 0.6;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.5);
        opacity: 0;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* WhatsApp Modal Chatbot */
.whatsapp-modal-dialog {
    max-width: 420px;
    position: fixed !important;
    bottom: 110px !important;
    right: 30px !important;
    left: auto !important;
    top: auto !important;
    margin: 0 !important;
    transform: none !important;
}

.modal.show .whatsapp-modal-dialog {
    transform: none !important;
}

#whatsappModal .modal-backdrop {
    background-color: rgba(0, 0, 0, 0.4);
}

#whatsappModal.modal.show {
    display: block !important;
}

#whatsappModal.modal {
    padding-right: 0 !important;
}

.whatsapp-modal-content {
    border-radius: 20px;
    overflow: hidden;
    border: none;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.whatsapp-modal-header {
    background: var(--dark-green);
    border-bottom: none;
    padding: 1.5rem;
    color: white;
}

.whatsapp-modal-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.whatsapp-modal-body {
    padding: 2rem;
    background: var(--white);
    max-height: 70vh;
    overflow-y: auto;
}

.whatsapp-welcome {
    background: linear-gradient(135deg, #f8faf9 0%, #e8f5ed 100%);
    padding: 1.25rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.whatsapp-welcome p {
    margin-bottom: 0.5rem;
    color: var(--dark-green);
    font-weight: 500;
}

/* Responsive WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-button {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .whatsapp-modal-dialog {
        max-width: calc(100% - 40px) !important;
        width: calc(100% - 40px) !important;
        bottom: 85px !important;
        right: 20px !important;
        left: auto !important;
        top: auto !important;
    }
    
    .whatsapp-modal-body {
        padding: 1.5rem;
        max-height: calc(100vh - 180px);
    }
    
    .whatsapp-modal-header {
        padding: 1.25rem;
    }
    
    .whatsapp-modal-avatar {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-button {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .whatsapp-modal-dialog {
        max-width: calc(100% - 30px) !important;
        width: calc(100% - 30px) !important;
        bottom: 75px !important;
        right: 15px !important;
        left: auto !important;
        top: auto !important;
    }
    
    .whatsapp-modal-body {
        padding: 1.25rem;
        max-height: calc(100vh - 160px);
    }
    
    .whatsapp-modal-header {
        padding: 1rem;
    }
    
    .whatsapp-modal-avatar {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .whatsapp-welcome {
        padding: 1rem;
    }
    
    .form-label-elegant {
        font-size: 0.875rem;
    }
    
    .form-control-elegant {
        font-size: 0.9rem;
        padding: 0.875rem 1.25rem;
    }
    
    .btn-elegant {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }
}

/* Utility Classes */
.text-accent {
    color: var(--light-green);
}

.text-gold {
    color: var(--gold);
}

.bg-gold-gradient {
    background: var(--gradient-green-gold);
}

.bg-dark-elegant {
    background: var(--gradient-dark);
}

/* ============================================
   OWL CAROUSEL - GALLERY
   ============================================ */
.gallery-owl * {
    box-sizing: border-box;
}

.gallery-owl { 
    position: relative !important;
}

.gallery-owl.owl-carousel {
    display: block !important;
}

.gallery-owl .owl-stage-outer {
    overflow: visible !important;
}

.gallery-owl .owl-stage {
    display: flex !important;
    align-items: stretch;
} 

/* Owl Navigation */
.gallery-owl .owl-nav {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 100% !important;
    display: flex !important;
    justify-content: space-between !important;
    padding: 0 !important;
    margin: 0 !important;
    pointer-events: none !important;
    z-index: 10 !important;
}

.gallery-owl .owl-nav button {
    width: 50px !important;
    height: 50px !important;
    min-width: 50px !important;
    min-height: 50px !important;
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border: 2px solid rgba(13, 71, 60, 0.2) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0.8 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 16px rgba(13, 71, 60, 0.15) !important;
    pointer-events: all !important;
    margin: 0 !important;
    padding: 0 !important;
    position: absolute !important;
    cursor: pointer !important;
    outline: none !important;
    text-indent: 0 !important;
    font-size: 0 !important;
    line-height: 0 !important;
}

.gallery-owl .owl-nav button:hover,
.gallery-owl .owl-nav button:focus {
    opacity: 1 !important;
    background: rgba(255, 255, 255, 0.95) !important;
    border-color: var(--gold) !important;
    box-shadow: 0 8px 24px rgba(13, 71, 60, 0.2), 0 0 20px rgba(240, 202, 134, 0.3) !important;
    transform: scale(1.1) !important;
    outline: none !important;
}

.gallery-owl .owl-nav .owl-prev {
    left: -25px;
}

.gallery-owl .owl-nav .owl-next {
    right: -25px;
}

.gallery-owl .owl-nav button i {
    font-size: 1.2rem !important;
    color: var(--dark-green) !important;
    display: inline-block !important;
    line-height: 1 !important;
}

.gallery-owl .owl-nav button:hover i,
.gallery-owl .owl-nav button:focus i {
    color: var(--gold) !important;
}

.gallery-owl .owl-nav button.owl-prev,
.gallery-owl .owl-nav button.owl-next {
    background-color: transparent !important;
    color: inherit !important;
}

/* Reset Bootstrap button styles */
.gallery-owl .owl-nav button.btn,
.gallery-owl .owl-nav button[type="button"] {
    -webkit-appearance: none !important;
    appearance: none !important;
}

/* Owl Dots */
.gallery-owl .owl-dots {
    text-align: center !important;
    margin-top: 20px !important;
    padding: 0 !important;
    display: block !important;
}

.gallery-owl .owl-dots .owl-dot {
    width: 12px !important;
    height: 12px !important;
    min-width: 12px !important;
    min-height: 12px !important;
    border-radius: 50% !important;
    background-color: rgba(13, 71, 60, 0.3) !important;
    border: 2px solid rgba(13, 71, 60, 0.5) !important;
    transition: all 0.3s ease !important;
    margin: 0 0.25rem !important;
    display: inline-block !important;
    padding: 0 !important;
    cursor: pointer !important;
    outline: none !important;
}

.gallery-owl .owl-dots .owl-dot span {
    display: none !important;
}

.gallery-owl .owl-dots .owl-dot.active {
    background: var(--gradient-green-gold) !important;
    border-color: var(--gold) !important;
    width: 30px !important;
    border-radius: 6px !important;
    box-shadow: 0 0 15px rgba(240, 202, 134, 0.4) !important;
}

@media (max-width: 768px) {
    .gallery-owl {
        padding-bottom: 50px;
    }
    
    .gallery-owl .owl-stage-outer {
        overflow: hidden !important;
    }
    
    .gallery-owl .owl-item {
        padding: 0 8px !important;
    }
    
    .gallery-owl .owl-nav button {
        width: 40px;
        height: 40px;
    }
    
    .gallery-owl .owl-nav .owl-prev {
        left: 5px;
    }
    
    .gallery-owl .owl-nav .owl-next {
        right: 5px;
    }
    
    .gallery-owl .owl-nav button i {
        font-size: 1rem;
    }
    
    .gallery-owl .owl-dots {
        margin-top: 15px;
    }
}

/* FNB Category Owl Carousel - Navigation Styles */
.fnb-category-owl {
    position: relative !important;
}

.fnb-category-owl * {
    box-sizing: border-box;
}

.fnb-category-owl.owl-carousel {
    display: block !important;
}

.fnb-category-owl .owl-stage-outer {
    overflow: visible !important;
}

.fnb-category-owl .owl-stage {
    display: flex !important;
    align-items: stretch;
}

/* FNB Category Owl Navigation */
.fnb-category-owl .owl-nav {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 100% !important;
    display: flex !important;
    justify-content: space-between !important;
    padding: 0 !important;
    margin: 0 !important;
    pointer-events: none !important;
    z-index: 10 !important;
}

.fnb-category-owl .owl-nav button {
    width: 50px !important;
    height: 50px !important;
    min-width: 50px !important;
    min-height: 50px !important;
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border: 2px solid rgba(13, 71, 60, 0.2) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0.8 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 16px rgba(13, 71, 60, 0.15) !important;
    pointer-events: all !important;
    margin: 0 !important;
    padding: 0 !important;
    position: absolute !important;
    cursor: pointer !important;
    outline: none !important;
    text-indent: 0 !important;
    font-size: 0 !important;
    line-height: 0 !important;
}

.fnb-category-owl .owl-nav button:hover,
.fnb-category-owl .owl-nav button:focus {
    opacity: 1 !important;
    background: rgba(255, 255, 255, 0.95) !important;
    border-color: var(--gold) !important;
    box-shadow: 0 8px 24px rgba(13, 71, 60, 0.2), 0 0 20px rgba(240, 202, 134, 0.3) !important;
    transform: scale(1.1) !important;
    outline: none !important;
}

.fnb-category-owl .owl-nav .owl-prev {
    left: -25px;
}

.fnb-category-owl .owl-nav .owl-next {
    right: -25px;
}

.fnb-category-owl .owl-nav button i {
    font-size: 1.2rem !important;
    color: var(--dark-green) !important;
    display: inline-block !important;
    line-height: 1 !important;
}

.fnb-category-owl .owl-nav button:hover i,
.fnb-category-owl .owl-nav button:focus i {
    color: var(--gold) !important;
}

.fnb-category-owl .owl-nav button.owl-prev,
.fnb-category-owl .owl-nav button.owl-next {
    background-color: transparent !important;
    color: inherit !important;
}

/* Reset Bootstrap button styles */
.fnb-category-owl .owl-nav button.btn,
.fnb-category-owl .owl-nav button[type="button"] {
    -webkit-appearance: none !important;
    appearance: none !important;
}

@media (max-width: 768px) {
    .fnb-category-owl {
        padding-bottom: 50px;
    }
    
    .fnb-category-owl .owl-stage-outer {
        overflow: hidden !important;
    }
    
    .fnb-category-owl .owl-item {
        padding: 0 8px !important;
    }
    
    .fnb-category-owl .owl-nav button {
        width: 40px;
        height: 40px;
    }
    
    .fnb-category-owl .owl-nav .owl-prev {
        left: 5px;
    }
    
    .fnb-category-owl .owl-nav .owl-next {
        right: 5px;
    }
    
    .fnb-category-owl .owl-nav button i {
        font-size: 1rem;
    }
}

.bg-green-elegant {
    background: var(--gradient-green);
}

.shadow-elegant {
    box-shadow: var(--shadow-lg);
}

/* Page Header Padding */
.pt-90 {
    padding-top: 90px;
}

/* Article Card with Image (for produk page) */
.article-card-with-image {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(13, 71, 60, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: block;
}

.article-card-with-image:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    box-shadow: 0 16px 48px rgba(13, 71, 60, 0.2), 0 0 25px rgba(240, 202, 134, 0.1);
    border-color: rgba(240, 202, 134, 0.4);
}

.article-link-wrapper {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.article-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.article-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.article-card-with-image:hover .article-image-wrapper img {
    transform: scale(1.1);
}

.article-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(13, 71, 60, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.article-card-with-image:hover .article-overlay {
    opacity: 1;
}

.article-badge-wrapper {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
}

.article-content-bottom {
    padding: 1.5rem;
}

.article-title {
    font-family: 'Urbanist', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.article-card-with-image:hover .article-title {
    color: var(--accent-color);
}

.article-description {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 0;
}

/* Feature Card Modern (for kontak page) */
.feature-card-modern {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(13, 71, 60, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card-modern:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    box-shadow: 0 16px 48px rgba(13, 71, 60, 0.2), 0 0 30px rgba(240, 202, 134, 0.15);
    border-color: var(--gold);
}

.feature-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.feature-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.feature-icon-primary {
    background: var(--gradient-green);
}

.feature-icon-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
}

.feature-icon-success {
    background: var(--gradient-green);
}

.feature-icon-warning {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
}

.feature-icon-danger {
    background: var(--gradient-green);
}

.feature-card-modern:hover .feature-icon-circle {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 24px rgba(13, 71, 60, 0.3), 0 0 25px rgba(240, 202, 134, 0.4);
}

.feature-icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(13, 71, 60, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1;
    transition: all 0.3s ease;
}

.feature-card-modern:hover .feature-icon-bg {
    width: 140px;
    height: 140px;
    background: rgba(240, 202, 134, 0.15);
}

.feature-content {
    position: relative;
    z-index: 2;
}

.feature-title {
    font-family: 'Urbanist', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 0.75rem;
}

.feature-description {
    font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 400;
}

.feature-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: 'Urbanist', serif;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(13, 71, 60, 0.05);
    line-height: 1;
    z-index: 0;
}

/* Contact Form Card */
.contact-form-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(13, 71, 60, 0.1);
}

.contact-link {
    font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-link:hover {
    transform: translateX(5px);
    text-decoration: underline;
}

/* Breadcrumb Section */
.breadcrumb-section {
    padding: 48px 0;
    margin-top: 80px;
    background: linear-gradient(135deg, rgba(248, 250, 249, 0.95) 0%, rgba(232, 245, 237, 0.95) 100%);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    border-bottom: 1px solid rgba(13, 71, 60, 0.1);
    position: relative;
    overflow: hidden;
}

.breadcrumb-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-color) 50%, transparent 100%);
    opacity: 0.3;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    font-family: 'Inter Tight', sans-serif;
}

.breadcrumb-item::before {
    content: '/';
    color: rgba(13, 71, 60, 0.3);
    padding: 0 0.75rem;
    font-weight: 300;
    font-size: 1rem;
}

.breadcrumb-item:first-child::before {
    display: none;
}

.breadcrumb-item a {
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.breadcrumb-item a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.breadcrumb-item a:hover {
    color: var(--white);
    background: var(--gradient-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 71, 60, 0.2);
    text-decoration: none;
}

.breadcrumb-item a:hover::before {
    left: 100%;
}

.breadcrumb-item a i {
    font-size: 0.85rem;
    opacity: 0.8;
}

.breadcrumb-item.active {
    color: var(--text-secondary);
    font-weight: 600;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 8px;
    border: 1px solid rgba(13, 71, 60, 0.1);
    box-shadow: 0 2px 8px rgba(13, 71, 60, 0.08);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb-item.active::before {
    display: none;
}

/* Article Detail Styles */
.article-detail {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(13, 71, 60, 0.1);
}

.article-header {
    border-bottom: 2px solid rgba(13, 71, 60, 0.1);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

.author-avatar {
    background: var(--gradient-green);
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
}

.article-featured-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-primary);
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
    font-family: 'Urbanist', serif;
    color: var(--dark-green);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 1.5rem 0;
    box-shadow: var(--shadow-md);
}

.article-content ul,
.article-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.article-content li {
    margin-bottom: 0.5rem;
}

.article-footer {
    border-top: 2px solid rgba(13, 71, 60, 0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
}

/* ============================================
   CONTENT BODY
   ============================================ */

/* Product Detail Hero */
.product-hero-gradient {
    background: linear-gradient(135deg, rgb(94, 204, 198) 0%, rgb(107, 201, 70) 100%);
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

/* Content Body Styles */
.content-body {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-primary);
}

.content-body h1,
.content-body h2,
.content-body h3,
.content-body h4,
.content-body h5,
.content-body h6 {
    font-family: 'Urbanist', serif;
    color: var(--dark-green);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-body p {
    margin-bottom: 1.5rem;
}

.content-body ul,
.content-body ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.content-body li {
    margin-bottom: 0.5rem;
}

/* Lounge Content Styles - sesuai dengan Summernote (Inter dan Urbanist) */
.lounge-content {
    font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-primary);
}

.lounge-content h1,
.lounge-content h2,
.lounge-content h3,
.lounge-content h4,
.lounge-content h5,
.lounge-content h6 {
    font-family: 'Urbanist', serif;
    color: var(--dark-green);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.lounge-content p {
    font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin-bottom: 1.5rem;
}

.lounge-content ul,
.lounge-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.lounge-content li {
    margin-bottom: 0.5rem;
}

.lounge-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 1.5rem 0;
    box-shadow: var(--shadow-md);
}

.lounge-content table {
    width: 100%;
    margin: 1.5rem 0;
    border-collapse: collapse;
}

.lounge-content table th,
.lounge-content table td {
    padding: 0.75rem;
    border: 1px solid rgba(13, 71, 60, 0.1);
}

.lounge-content table th {
    font-family: 'Urbanist', serif;
    background: var(--light-bg);
    color: var(--dark-green);
    font-weight: 600;
}

/* Mapping font 'Inter' dari Summernote ke 'Inter Tight' */
.lounge-content [style*="font-family: Inter"],
.lounge-content [style*="font-family:'Inter'"],
.lounge-content [style*='font-family:"Inter"'],
.lounge-content [style*="font-family: Inter;"],
.lounge-content [style*="font-family: 'Inter';"],
.lounge-content [style*='font-family: "Inter";'] {
    font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}

.content-body table {
    width: 100%;
    margin: 1.5rem 0;
    border-collapse: collapse;
}

.content-body table th {
    background: var(--gradient-green);
    color: var(--white);
    font-weight: 600;
    padding: 0.75rem;
    border: 1px solid rgba(13, 71, 60, 0.1);
}

.content-body table td {
    padding: 0.75rem;
    border: 1px solid rgba(13, 71, 60, 0.1);
}

/* ============================================
   ACCORDION
   ============================================ */
.accordion-item {
    border: none !important;
    margin-bottom: 1rem;
    background: transparent;
    overflow: hidden;
}

.accordion-button {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 16px !important;
    padding: 1.25rem 1.5rem;
    font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark-green);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 2px 8px rgba(13, 71, 60, 0.08);
    position: relative;
    overflow: hidden;
}

.accordion-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.accordion-button:hover::before {
    left: 100%;
}

.accordion-button:hover {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(13, 71, 60, 0.15);
    color: var(--accent-color);
}

.accordion-button:not(.collapsed) {
    background: var(--gradient-green);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(13, 71, 60, 0.25), 0 0 20px rgba(240, 202, 134, 0.15);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.accordion-button:not(.collapsed)::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(13, 71, 60, 0.15), 0 4px 16px rgba(13, 71, 60, 0.15);
    border-color: var(--accent-color);
    outline: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230d473c'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: brightness(0) saturate(100%) invert(25%) sepia(45%) saturate(2000%) hue-rotate(120deg) brightness(0.9);
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(180deg);
    filter: none;
}

.accordion-collapse {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.accordion-body {
    background: rgba(248, 250, 249, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 0 0 16px 16px;
    padding: 1.5rem 1.5rem;
    border-top: 1px solid rgba(13, 71, 60, 0.1);
    font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.8;
    color: var(--text-primary);
    animation: fadeInDown 0.4s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: var(--gradient-dark);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 71, 60, 0.95) 0%, rgba(13, 71, 60, 0.9) 100%);
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-content {
    color: var(--white);
}

.cta-badge {
    display: inline-block;
    background: rgba(240, 202, 134, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--gold-light);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-family: 'Inter Tight', sans-serif;
    border: 1px solid rgba(240, 202, 134, 0.3);
    box-shadow: var(--shadow-gold);
}

.cta-title {
    font-family: 'Urbanist', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.cta-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-weight: 400;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(240, 202, 134, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.cta-shape-1 {
    width: 200px;
    height: 200px;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.cta-shape-2 {
    width: 150px;
    height: 150px;
    bottom: -75px;
    right: 10%;
    animation-delay: 2s;
}

.cta-shape-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    right: -50px;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* ============================================
   BOOTSTRAP BUTTON OVERRIDES
   ============================================ */
.btn-primary {
    background: var(--gradient-green);
    border-color: var(--accent-color);
    color: var(--white);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--gradient-light);
    border-color: var(--light-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13, 71, 60, 0.2);
    color: var(--white);
}

.btn-outline-primary {
    border-color: var(--accent-color);
    color: var(--accent-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--gradient-green);
    border-color: var(--accent-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13, 71, 60, 0.2);
}

.btn-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-color: #28a745;
    color: var(--white);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-success:hover {
    background: linear-gradient(135deg, #218838 0%, #1ea080 100%);
    border-color: #218838;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn {
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn i {
    font-size: 1.1em;
}

.btn-light {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--dark-green);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-light:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   DISPLAY TYPOGRAPHY
   ============================================ */
.display-4 {
    font-size: 2.5rem;
    font-weight: 800;
}

.display-5 {
    font-size: 2rem;
    font-weight: 700;
}

.display-6 {
    font-size: 1.75rem;
    font-weight: 700;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pt-90 {
        padding-top: 80px;
    }
    
    .article-card-with-image {
        margin-bottom: 1.5rem;
    }
    
    .feature-card-modern {
        margin-bottom: 1.5rem;
    }
    
    .contact-form-card {
        padding: 1.5rem;
    }
    
    .article-detail {
        padding: 1.5rem;
    }
    
    .article-content,
    .content-body {
        font-size: 1rem;
    }
    
    .cta-section {
        padding: 3rem 0;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .cta-buttons {
        justify-content: center;
        margin-top: 1.5rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 1.75rem;
    }
    
    .display-6 {
        font-size: 1.5rem;
    }
}


.owl-carousel .owl-stage-outer{
    padding-bottom: 40px;
}

/* Footer Islamic Ornament Styles */
.footer-islamic {
  position: relative;
  overflow: hidden;
}

/* Flying logos in footer - only a few logos floating slowly */
.footer-islamic::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  background-image: url("/logo-footer.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
  pointer-events: none;
  animation: footer-logo-fly-1 120s linear infinite;
  top: 20%;
  left: 10%;
}

.footer-islamic::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  background-image: url("/logo-footer.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
  animation: footer-logo-fly-2 150s linear infinite;
  top: 60%;
  right: 15%;
}

.footer-islamic .container::before {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  background-image: url("/logo-footer.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.09;
  z-index: 0;
  pointer-events: none;
  animation: footer-logo-fly-3 180s linear infinite;
  top: 40%;
  left: 50%;
}

@keyframes footer-logo-fly-1 {
  0% { 
    transform: translate(0, 0) rotate(0deg);
  }
  25% { 
    transform: translate(100px, -50px) rotate(90deg);
  }
  50% { 
    transform: translate(200px, 0) rotate(180deg);
  }
  75% { 
    transform: translate(100px, 50px) rotate(270deg);
  }
  100% { 
    transform: translate(0, 0) rotate(360deg);
  }
}

@keyframes footer-logo-fly-2 {
  0% { 
    transform: translate(0, 0) rotate(360deg);
  }
  25% { 
    transform: translate(-80px, 40px) rotate(270deg);
  }
  50% { 
    transform: translate(-160px, 0) rotate(180deg);
  }
  75% { 
    transform: translate(-80px, -40px) rotate(90deg);
  }
  100% { 
    transform: translate(0, 0) rotate(0deg);
  }
}

@keyframes footer-logo-fly-3 {
  0% { 
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  33% { 
    transform: translate(-60px, -80px) rotate(120deg) scale(1.1);
  }
  66% { 
    transform: translate(60px, -40px) rotate(240deg) scale(0.9);
  }
  100% { 
    transform: translate(0, 0) rotate(360deg) scale(1);
  }
}

/* Decorative slim ornament bar at the top of footer */
.footer-ornament {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 12px;
  z-index: 1;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='12' viewBox='0 0 120 12'%3E%3Cpath d='M0 6h12l6-6 6 6h12l6-6 6 6h12l6-6 6 6h12l6-6 6 6h12' stroke='%23ffffff' stroke-opacity='0.9' fill='none'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 120px 12px;
}

/* Ensure footer content stays above ornaments */
.footer-islamic .container,
.footer-islamic .footer-content,
.footer-islamic .footer-title,
.footer-islamic .footer-link {
  position: relative;
  z-index: 2;
}