    /* ----- RESET & BASE ----- */
    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }

    body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    line-height: 1.5;
    color: #1e2a3a;
    background-color: #fff;
    scroll-behavior: smooth;
    }

    :root {
    --primary: #ef7027;
    --primary-dark: #d45c1a;
    --primary-light: #fef1e8;
    --text-dark: #0f172a;
    --text-light: #475569;
    --border: #e2e8f0;
    --whatsapp-green: #25D366;
    }

    .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    }
    
    /* ----- RESET & BASE ----- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    line-height: 1.5;
    color: #1e2a3a;
    background-color: #fff;
    scroll-behavior: smooth;
}

:root {
    --primary: #ef7027;
    --primary-dark: #d45c1a;
    --primary-light: #fef1e8;
    --text-dark: #0f172a;
    --text-light: #475569;
    --border: #e2e8f0;
    --whatsapp-green: #25D366;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== HEADER SECTION ========== */
header {
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 16px;
}

/* ========== LOGO IMAGE STYLES ========== */
.logo-area {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.logo-link {
    display: inline-block;
    text-decoration: none;
}

.logo-image {
    height: 50px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.02);
}

.logo-subtitle {
    font-size: 0.65rem;
    font-weight: 700;
    color: #000;
    letter-spacing: 0.5px;
    display: block;
    text-align: center;
}

/* Remove old text logo styles if still present */
.logo-text {
    display: none;
}

/* Responsive Logo */
@media (max-width: 768px) {
    .logo-image {
        height: 40px;
    }
    .logo-subtitle {
        font-size: 0.6rem;
    }
}

@media (max-width: 550px) {
    .logo-image {
        height: 35px;
    }
    .logo-subtitle {
        font-size: 0.55rem;
    }
}

/* ========== NAVIGATION RIGHT SIDE ========== */
.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* Buttons */
.contact-btn,
.enquire-btn {
    padding: 10px 20px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

/* WhatsApp Button */
.whatsapp-btn {
    background: #fff;
    border: 1.5px solid var(--whatsapp-green);
    color: #000;
    position: relative;
    overflow: hidden;
    animation: 2s infinite pulse;
}

.whatsapp-btn:hover {
    background: #e8f5e9;
    transform: scale(1.02);
    animation: none;
}

.whatsapp-icon {
    transition: transform 0.3s;
}

.whatsapp-btn:hover .whatsapp-icon {
    transform: scale(1.2) rotate(5deg);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Enquire Button */
.enquire-btn {
    background: var(--primary);
    color: #000;
    border: none;
    box-shadow: 0 2px 8px rgba(239, 112, 39, 0.3);
}

.enquire-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* ========== HAMBURGER MENU (MOBILE) ========== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: 0.3s;
}

.hamburger.active .hamburger-line:first-child {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ========== MAIN NAVIGATION ========== */
.main-nav {
    background: #fff;
    border-top: 1px solid var(--border);
    transition: 0.3s;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px 50px;
    list-style: none;
    padding: 12px 0;
}

.nav-links li a {
    text-decoration: none;
    font-weight: 500;
    color: var(--text-dark);
    transition: 0.2s;
    font-size: 0.9rem;
    position: relative;
}

.nav-links li a.active,
.nav-links li a:hover {
    color: #000;
    font-weight: 600;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-links li a.active::after,
.nav-links li a:hover::after {
    width: 100%;
}

/* ========== MENU OVERLAY ========== */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}
    
  /* ========== BLOG BANNER SECTION ========== */
.blog-banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 35px 0;
    position: relative;
}

.blog-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
    z-index: 0;
}

.blog-banner .container {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.blog-banner-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.blog-banner .blog-badge {
    display: inline-block;
    background: rgba(239, 112, 39, 0.9);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    text-transform: uppercase;
    backdrop-filter: blur(2px);
}

.blog-banner h1 {
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.blog-banner .blog-meta-center {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

/* Hover Effects */
.blog-banner .blog-badge:hover {
    background: rgba(239, 112, 39, 1);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.blog-banner h1:hover {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 992px) {
    .blog-banner h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .blog-banner {
        padding: 50px 0;
    }
    
    .blog-banner h1 {
        font-size: 1.8rem;
    }
    
    .blog-banner .blog-meta-center {
        flex-wrap: wrap;
        gap: 12px;
        font-size: 0.8rem;
    }
    
    .blog-banner .blog-badge {
        font-size: 0.7rem;
        padding: 6px 16px;
    }
}

@media (max-width: 550px) {
    .blog-banner {
        padding: 40px 0;
    }
    
    .blog-banner h1 {
        font-size: 1.4rem;
    }
    
    .blog-banner .blog-meta-center {
        font-size: 0.7rem;
        gap: 10px;
    }
    
    .blog-banner .blog-badge {
        font-size: 0.65rem;
        padding: 5px 12px;
        margin-bottom: 15px;
    }
}

@media (max-width: 380px) {
    .blog-banner {
        padding: 30px 0;
    }
    
    .blog-banner h1 {
        font-size: 1.2rem;
    }
    
    .blog-banner .blog-meta-center {
        font-size: 0.65rem;
        gap: 8px;
    }
}

/* Meta center styles - keep this separate (for other sections if needed) */
.blog-meta-center {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    color: #5a6874;
    font-size: 0.9rem;
}

/* Reduce motion preference */
@media (prefers-reduced-motion: reduce) {
    .blog-banner .blog-badge,
    .blog-banner h1 {
        transition: none;
    }
    
    .blog-banner .blog-badge:hover {
        transform: none;
    }
}
/* ========== BREADCRUMB ========== */
.breadcrumb-section {
  padding: 5px 0;
  background: #f8fafc;
  border-bottom: 1px solid #eef2f6;
}

.breadcrumb-section .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.breadcrumb-section p {
  font-size: 0.85rem;
  color: #5a6874;
}

.breadcrumb-section a {
  color: #ef7027;
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb-section a:hover {
  color: #ff3700;
}

/* ========== MAIN CONTENT ========== */
.blog-content-section {
  padding: 35px 0;
  background: #fff;
}

.blog-content-section .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.blog-content-wrapper {
  flex: 2;
  min-width: 300px;
}

.blog-sidebar {
  flex: 1;
  min-width: 280px;
  position: sticky;
  top: 150px;
}

/* Table of Contents */
.table-of-contents {
  background: #f8fafc;
  padding: 25px;
  border-radius: 16px;
  margin-bottom: 40px;
  border: 1px solid #eef2f6;
}

.table-of-contents h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #1a2a3a;
}

.table-of-contents ul {
  list-style: none;
  columns: 2;
  padding: 0;
  margin: 0;
}

.table-of-contents li {
  margin-bottom: 8px;
}

.table-of-contents a {
  color: #5a6874;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
  cursor: pointer;
}

.table-of-contents a:hover {
  color: #ef7027;
}

/* Content Blocks */
.content-block {
  margin-bottom: 40px;
  scroll-margin-top: 80px;
}

.content-block h2 {
  font-size: 1.6rem;
  color: #1a2a3a;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #eef2f6;
}

.content-block p {
  font-size: 1rem;
  line-height: 1.8;
  color: #5a6874;
  margin-bottom: 15px;
}

/* Content with Image */
.content-with-image {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.content-with-image .content-text {
  flex: 1;
}

.content-with-image .content-image {
  flex: 1;
}

.content-with-image .content-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
}

.content-with-image.reverse {
  flex-direction: row-reverse;
}

/* Checklist */
.checklist {
  list-style: none;
  padding-left: 0;
}

.checklist li {
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #5a6874;
  padding-left: 28px;
  position: relative;
}

.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ef7027;
  font-weight: bold;
}

/* Numbered List */
.numbered-list {
  padding-left: 20px;
}

.numbered-list li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #5a6874;
}

/* Location Table */
.location-table {
  overflow-x: auto;
  margin: 20px 0;
}

.location-table table {
  width: 100%;
  border-collapse: collapse;
}

.location-table th,
.location-table td {
  padding: 12px;
  text-align: left;
  border: 1px solid #eef2f6;
}

.location-table th {
  background: #fef5ed;
  color: #1a2a3a;
  font-weight: 600;
}

.location-table td {
  color: #5a6874;
}

/* Amenities Grid */
.amenities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0;
}

.amenities-grid span {
  background: #f8fafc;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  color: #1a2a3a;
  border: 1px solid #eef2f6;
  transition: all 0.3s;
}

.amenities-grid span:hover {
  background: #ef7027;
  color: #fff;
  border-color: #ef7027;
}

.amenities-grid.large {
  gap: 15px;
}

.amenities-grid.large span {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* Benefits Cards */
.benefits-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

.benefit-card {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid #eef2f6;
  transition: all 0.3s;
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: #ef7027;
  box-shadow: 0 10px 25px rgba(239, 112, 39, 0.1);
}

.benefit-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #ef7027;
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #5a6874;
  margin: 0;
}

/* FAQ Block */
.faq-block {
  background: #f8fafc;
  padding: 25px;
  border-radius: 20px;
}

.faq-item {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eef2f6;
}

.faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.faq-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a2a3a;
  margin-bottom: 8px;
  cursor: pointer;
  transition: color 0.3s;
}

.faq-item h3:hover {
  color: #ef7027;
}

.faq-item p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #5a6874;
  margin: 0;
}

/* Call to Action */
.cta-block {
  background: linear-gradient(135deg, #fef5ed, #fff8f2);
  padding: 35px;
  border-radius: 24px;
  text-align: center;
  margin: 40px 0;
  border: 1px solid rgba(239, 112, 39, 0.2);
}

.cta-block h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a2a3a;
  margin-bottom: 15px;
}

.cta-block p {
  font-size: 1rem;
  color: #5a6874;
  margin-bottom: 25px;
}

/* ========== CTA BUTTONS SECTION ========== */
.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

/* Primary Button */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ef7027, #d45c1a);
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(239, 112, 39, 0.3);
    background: linear-gradient(135deg, #d45c1a, #ef7027);
}

/* WhatsApp Button */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d3652a;
    color: #011f0c;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    background: #20b85a54;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* WhatsApp Icon */
.btn-whatsapp img {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-whatsapp:hover img {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 550px) {
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary,
    .btn-whatsapp {
        width: 100%;
        justify-content: center;
        padding: 10px 20px;
    }
}

/* ========== SHARE SECTION ========== */
.share-section {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 15px;
    padding: 20px 0px 0px 0px;
    border-top: 1px solid #eef2f6;
    margin-top: 30px;
}

.share-section span {
    font-size: 0.9rem;
    color: #5a6874;
    font-weight: 500;
}

.share-icons {
    display: flex;
    padding: 0px 0px 0px 50px;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* Social Icon Styles */
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: #f8fafc;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid #eef2f6;
}

.social-icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.social-icon:hover {
    transform: translateY(-3px);
    /* background: #ef702782; */
    border-color: #ef7027;
}


/* Copy Link Icon */
.share-copy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: #0080ff;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid #eef2f6;
    color: #5a6874;
    cursor: pointer;
}

.share-copy svg {
    width: 18px;
    height: 18px;
}


/* Responsive */
@media (max-width: 768px) {
    .share-section {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .share-icons {
        justify-content: center;
    }
    
    .social-icon,
    .share-copy {
        width: 36px;
        height: 36px;
    }
    
    .social-icon img {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 550px) {
    .share-section span {
        font-size: 0.8rem;
    }
    
    .share-icons {
        gap: 10px;
    }
    
    .social-icon,
    .share-copy {
        width: 34px;
        height: 34px;
    }
}

/* Tooltip */
.share-icon::after {
  content: attr(data-platform);
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: #1a2a3a;
  color: #fff;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

.share-icon:hover::after {
  opacity: 1;
  visibility: visible;
  bottom: -40px;
}

/* Social Icon Colors */
.share-facebook {
  background: #1877F2;
  color: #fff;
}
.share-facebook:hover { background: #145dbf; }

.share-twitter {
  background: #1DA1F2;
  color: #fff;
}
.share-twitter:hover { background: #1a8acd; }

.share-linkedin {
  background: #0077B5;
  color: #fff;
}
.share-linkedin:hover { background: #005e91; }

.share-whatsapp {
  background: #25D366;
  color: #fff;
}
.share-whatsapp:hover { background: #1da851; }

.share-copy {
  background: #eef2f6;
  color: #5a6874;
}
.share-copy:hover { background: #ef7027; color: #fff; }

/* Sidebar Widgets */
.sidebar-widget {
  background: #f8fafc;
  padding: 20px;
  border-radius: 16px;
  margin-bottom: 25px;
  border: 1px solid #eef2f6;
}

.sidebar-widget h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a2a3a;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #ef7027;
  display: inline-block;
}

.sidebar-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-widget li {
  margin-bottom: 12px;
}

.sidebar-widget a {
  color: #000000;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s;
  display: block;
}

.sidebar-widget a:hover {
  color: #ef7027;
  transform: translateX(5px);
}

.contact-phone {
  display: inline-block;
  background: #ef7027;
  color: #fff;
  padding: 10px 20px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 10px;
  transition: all 0.3s;
}

.contact-phone:hover {
  background: #d45c1a;
  transform: translateX(5px);
}

/* Channel Partner Widget */
.channel-partner .partner-logo {
  text-align: center;
  margin-bottom: 15px;
}

.channel-partner .partner-name {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  color: #ef7027;
}

.channel-partner .partner-tag {
  display: block;
  font-size: 0.7rem;
  color: #5a6874;
  letter-spacing: 1px;
}

.channel-partner .partner-features {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.channel-partner .partner-features li {
  font-size: 0.8rem;
  padding: 5px 0;
  color: #5a6874;
}

.channel-partner .partner-contact p {
  margin: 8px 0;
  font-size: 0.8rem;
}

.channel-partner .partner-contact a {
  color: #ef7027;
  text-decoration: none;
}

.directions-link {
  display: inline-block;
  margin-top: 12px;
  color: #ef7027;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Map Placeholder */
.map-placeholder {
  border-radius: 12px;
  overflow: hidden;
}

/* Responsive */
@media (max-width: 992px) {
  .blog-content-section .container {
    flex-direction: column;
  }
  
  .table-of-contents ul {
    columns: 1;
  }
  
  .blog-sidebar {
    position: static !important;
  }
}

@media (max-width: 768px) {
  .blog-banner {
    padding: 40px 0;
  }
  
  .blog-banner h1 {
    font-size: 1.8rem;
  }
  
  .blog-meta-center {
    flex-wrap: wrap;
    gap: 12px;
  }
  
  .content-with-image,
  .content-with-image.reverse {
    flex-direction: column;
  }
  
  .content-block h2 {
    font-size: 1.4rem;
  }
  
  .benefits-cards {
    grid-template-columns: 1fr;
  }
  
  .cta-block {
    padding: 25px;
  }
  
  .cta-block h3 {
    font-size: 1.3rem;
  }
  
    .cta-buttons {
      flex-direction: column;
      align-items: center;
    }
    
    .btn-primary,
    .btn-whatsapp {
      width: 100%;
      max-width: 280px;
      text-align: center;
    }
    
    .share-section {
      justify-content: center;
    }
}

@media (max-width: 550px) {
  .blog-banner h1 {
    font-size: 1.4rem;
  }
  
  .blog-badge {
    font-size: 0.7rem;
  }
  
  .blog-meta-center {
    font-size: 0.75rem;
  }
  
  .content-block h2 {
    font-size: 1.2rem;
  }
  
  .content-block p {
    font-size: 0.9rem;
  }
  
  .table-of-contents {
    padding: 15px;
  }
  
  .table-of-contents a {
    font-size: 0.75rem;
  }
  
  .amenities-grid span {
    font-size: 0.7rem;
    padding: 5px 12px;
  }
  
  .faq-item h3 {
    font-size: 0.9rem;
  }
  
  .faq-item p {
    font-size: 0.85rem;
  }
  
  .share-icon {
    width: 34px;
    height: 34px;
  }
}
/* ========== FOOTER SECTION ========== */
    .footer-section {
    background: linear-gradient(135deg, #0a1628 0, #0f1a2e 100%);
    color: #cbd5e1;
    padding: 50px 0 0;
    position: relative;
    }

    .footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #ffb347, var(--primary));
    }

    .footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
    }

    .footer-logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
    }

    .footer-tagline {
    font-size: 0.7rem;
    color: var(--primary);
    letter-spacing: 2px;
    display: block;
    margin-top: 5px;
    }

    .footer-description {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #a0aec0;
    }

    .footer-certified {
    margin-top: 5px;
    }

    .certified-badge {
    display: inline-block;
    background: rgba(239, 112, 39, 0.15);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--primary);
    border: 1px solid rgba(239, 112, 39, 0.3);
    }

    .footer-links {
    text-align: center;
    }

    .footer-heading {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    padding-bottom: 5px;
    position: relative;
    }

    .links-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    }

    .footer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
    }
    .footer-nav li a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: 0.3s;
    display: inline-block;
    }

    .footer-nav li a:hover {
    color: var(--primary);
    transform: translateX(5px);
    }

    .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
    }

    .footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: #a0aec0;
    transition: 0.3s;
    padding: 5px 0;
    width: fit-content;
    min-width: 220px;
    }

    .footer-contact-item:hover {
    transform: translateX(5px);
    }

    .footer-contact-item .contact-icon {
    font-size: 1.1rem;
    width: 30px;
    text-align: center;
    display: inline-block;
    }

    .footer-contact-item a {
    color: #a0aec0;
    text-decoration: none;
    }

    .footer-contact-item a:hover {
    color: var(--primary);
    }

    .footer-social {
    display: flex;
    flex-direction: column;
    gap: 20px;
    }

    .social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    }

    .social-icon {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .social-icon:hover {
    background: var(--primary);
    transform: translateY(-5px);
    border-color: var(--primary);
    }

    .social-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    }

    .footer-visit {
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-visit p {
    font-size: 0.8rem;
    color: #a0aec0;
    margin-bottom: 10px;
    }

    .visit-btn {
    display: inline-block;
    background: transparent;
    border: 1.5px solid var(--primary);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    }

    .visit-btn:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
    }

    .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 25px 0;
    }

    .footer-copyright p {
    font-size: 0.75rem;
    color: #718096;
    }

    .footer-bottom-links {
    display: flex;
    gap: 25px;
    }

    .footer-bottom-links a {
    font-size: 0.75rem;
    color: #718096;
    text-decoration: none;
    transition: color 0.3s;
    }

    .footer-bottom-links a:hover {
    color: var(--primary);
    }
