     /* --- CSS copied from index.php (Ensuring Navbar and Social Icons consistency) --- */
     
     
         .admin-container { display: flex; min-height: 100vh; }
    .admin-sidebar { width: 250px; background: #2c3e50; color: white; padding: 20px 0; }
    .admin-sidebar h2 { padding: 0 20px 20px; border-bottom: 1px solid #444;}
    .admin-sidebar ul { list-style: none;}
    .admin-sidebar ul li a {display: block; padding: 15px 20px; color: white; text-decoration: none; transition: all 0.3s;}
    .admin-sidebar ul li a:hover, .admin-sidebar ul li a.active {background:#34495e;}
   
    .admin-content { flex-grow: 1; padding: 30px; background: #ecf0f1; }
   
    .alert { padding: 15px; border-radius: 4px; margin-bottom: 20px; font-weight: 600; }
    .alert.success { background-color: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
    .alert.error { background-color: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
   
    .table-container { overflow-x: auto; background: white; padding: 20px; border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
    .data-table { width: 100%; border-collapse: collapse; margin-top: 20px; }
    .data-table th, .data-table td {
      border: 1px solid #ddd;
      padding: 12px 15px;
      text-align: left;
      vertical-align: middle;
      white-space: nowrap;
    }
    .data-table th {
      background-color: #f4f4f4;
      font-weight: 600;
      color: #333;
    }
    .data-table tr:nth-child(even) { background-color: #f9f9f9; }
    .data-table tr:hover { background-color: #f1f1f1; }
   
    .btn {
      display: inline-block;
      padding: 8px 12px;
      border-radius: 4px;
      text-decoration: none;
      color: white;
      font-weight: 500;
      margin: 2px;
      transition: background-color 0.3s;
      font-size: 14px;
    }
    .btn-primary { background-color: #007bff; }
    .btn-primary:hover { background-color: #0056b3; }
    .btn-success { background-color: #28a745; }
    .btn-success:hover { background-color: #1e7e34; }
    .btn-danger { background-color: #dc3545; }
    .btn-danger:hover { background-color: #bd2130; }
    .btn-warning { background-color: #ffc107; color: #333; }
    .btn-warning:hover { background-color: #e0a800; }
    .status-badge {
      padding: 5px 10px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
    }
    .status-active { background-color: #d4edda; color: #155724; }
    .status-inactive { background-color: #f8d7da; color: #721c24; }
    .table-img { width: 80px; height: 50px; object-fit: cover; border-radius: 4px; }
        
        /* ⭐ New Style for Search Bar */
        .search-form-group {
            display: flex; 
            gap: 10px; 
            max-width: 400px;
        }
        .search-form-group input[type="text"] {
            flex-grow: 1; 
            padding: 10px; 
            border: 1px solid #ccc; 
            border-radius: 4px;
        }
     
     
     * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
     }
     body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: #333;
      background-color: #f8f8f8;
     }
     html { scroll-behavior: smooth; }
     .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
     }
     a {
      text-decoration: none;
      color: #9F0050;
     }

     /* Typography & Section */
     h1, h2, h3 {
      margin-bottom: 15px;
      color: #333;
     }
     .logo {
      font-size: 24px;
      font-weight: 700;
      color: white !important;
     }
     section {
      padding: 60px 0;
     }
     .section-title {
      text-align: center;
      margin-bottom: 40px;
     }
     .section-title h2 {
      font-size: 36px;
      color: #9F0050;
      font-weight: 700;
     }
     .section-title p {
      color: #666;
      font-size: 18px;
      margin-top: 10px;
     }

     /* Buttons */
     .btn {
      display: inline-block;
      padding: 10px 25px;
      background-color: #EF9511;
      color: white !important;
      text-align: center;
      border-radius: 5px;
      font-weight: 500;
      transition: background-color 0.3s;
      text-decoration: none;
      border: none;
      cursor: pointer;
      font-size: 16px;
     }
     .btn:hover {
      background-color: #d8860f;
     }
     .btn-primary {
      background-color: #9F0050 !important;
     }
     .btn-primary:hover {
      background-color: #7d0040 !important;
     }
     
     /* Forms & Alerts */
     .form-group {
      margin-bottom: 15px;
     }
     .form-group label {
      display: block;
      margin-bottom: 5px;
      font-weight: 600;
     }
     .form-group input,
     .form-group select,
     .form-group textarea {
      width: 100%;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 5px;
      font-size: 16px;
     }
     .alert-success {
      color: #04AA6D;
      padding: 15px;
      border-left: 5px solid #04AA6D;
      border-radius: 5px;
      margin-bottom: 20px;
      background: #e6ffe6;
     }
     .alert-error {
      color: #f44336;
      padding: 15px;
      border-left: 5px solid #f44336;
      border-radius: 5px;
      margin-bottom: 20px;
      background: #ffe6e6;
     }

     /* Card Styles (Placeholder for potential future use) */
     .card {
      background: white;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      transition: transform 0.3s;
      display: flex;
      flex-direction: column;
     }
     .card:hover {
      transform: translateY(-5px);
     }
     .card-img {
      width: 100%;
      height: 150px;
      object-fit: cover;
     }
     .card-content {
      padding: 15px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
     }

     /* New CSS for Responsive Design and better structure */
     
     /* Header & Navigation (Features from index.php) */
     .top-bar .container {
      display: flex;
      justify-content: space-between;
      padding: 12px 15px;
      color: white;
      font-size: 14px;
     }
     
     nav .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
     }
     nav {
      padding: 10px 0;
      background: #9F0050;
      font-size: 22px;
     }
     
     .nav-links {
      display: flex;
      list-style: none;
      gap: 30px;
      margin: 0;
      padding: 0;
     }
     
     .nav-links a {
      color: white;
      text-decoration: none;
      font-weight: 400;
      transition: color 0.3s;
     }
     
     /* Hamburger Menu Icon (hidden by default) */
     .menu-toggle {
      display: none;
      font-size: 30px;
      background: none;
      border: none;
      color: white;
      cursor: pointer;
      z-index: 100;
      padding: 5px 10px;
      line-height: 1;
     }
     
     /* Contact Details Grid (New for contact.php) */
     .contact-details-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
      text-align: center;
     }

     .contact-info-box {
         background: white;
         padding: 30px;
         border-radius: 10px;
         box-shadow: 0 4px 12px rgba(0,0,0,0.05);
         border-bottom: 3px solid #EF9511;
     }

     .contact-info-box i {
         font-size: 30px;
         color: #9F0050;
         margin-bottom: 15px;
     }

     /* Enquiry Form */
     .form-container {
      max-width: 600px;
      margin: 0 auto;
     }

     .enquiry-form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
     }
     
     /* Footer */
     footer {
      background: #333;
      color: white;
     }
     footer .container {
      padding: 40px 15px 20px 15px;
     }
     
     .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 30px;
      margin-bottom: 30px;
     }
     
     .footer-section h3 {
      margin-bottom: 20px;
      font-size: 18px;
      color: white;
     }
     
     .footer-section p, .footer-section ul {
      font-size: 14px;
      color: #bbb;
      margin-bottom: 10px;
     }
     
     .footer-section ul {
      list-style: none;
      padding: 0;
     }
     
     .footer-section a {
      color: #bbb;
      text-decoration: none;
      transition: color 0.3s;
     }
     
     .footer-section a:hover {
      color: white;
     }
     
     .footer-bottom {
      text-align: center;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      font-size: 14px;
      color: #bbb;
     }

     /* Social Icons Styles (Features from index.php) */
     .social-icons {
         margin-top: 20px;
         display: flex;
         gap: 15px;
         justify-content: flex-start;
     }
     .social-icon {
         display: inline-flex;
         align-items: center;
         justify-content: center;
         width: 40px;
         height: 40px;
         background-color: #555;
         color: white !important;
         border-radius: 50%;
         font-size: 18px;
         transition: background-color 0.3s, transform 0.3s;
         text-decoration: none;
     }
     .social-icon:hover {
         background-color: #EF9511;
         transform: translateY(-2px);
     }
     
     /* --- START RESPONSIVE DESIGN (Media Queries - Features from index.php) --- */
     @media (max-width: 768px) {
      
      /* Header/Nav */
      nav .container {
        padding: 10px 15px;
      }
      .nav-links {
        position: absolute;
        top: 60px; /* Adjust based on header height */
        right: 0;
        background: #333;
        width: 70%;
        max-width: 300px;
        flex-direction: column;
        padding: 20px;
        box-shadow: -2px 2px 5px rgba(0,0,0,0.2);
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        z-index: 50;
        gap: 15px;
      }
      .nav-links li a {
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
      }
      .nav-links.active {
        transform: translateX(0);
      }
      .menu-toggle {
        display: block;
      }
      
      /* Top Bar */
      .top-bar .container {
        flex-direction: column;
        align-items: center;
        gap: 5px;
        font-size: 12px;
      }
      
      /* Enquiry Form */
      .enquiry-form-grid {
        grid-template-columns: 1fr; /* Single column for enquiry form inputs */
      }

      /* Footer */
      .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
      }
      .footer-section ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 20px;
      }
      /* Center social icons on mobile */
      .social-icons {
          justify-content: center; 
      }
     }
     
      .action-btn {
            display: inline-block;
            padding: 8px 12px;
            font-size: 14px;
            margin-right: 5px;
            margin-bottom: 5px;
            border-radius: 5px;
            text-decoration: none;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }
        .btn-email {
            background: #0077B5;
            color: white;
        }
        .btn-email:hover {
            background: #005885;
        }
        .btn-whatsapp {
            background: #25D366;
            color: white;
        }
        .btn-whatsapp:hover {
            background: #1DA851;
        }
        .action-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 5px;
        }
        
        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
        }
        .modal-content {
            background-color: #fefefe;
            margin: 5% auto;
            padding: 30px;
            border-radius: 10px;
            width: 90%;
            max-width: 600px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.3);
        }
        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid #f0f0f0;
        }
        .modal-header h2 {
            margin: 0;
            color: #333;
        }
        .close {
            color: #aaa;
            font-size: 32px;
            font-weight: bold;
            cursor: pointer;
            line-height: 1;
        }
        .close:hover {
            color: #000;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #333;
        }
        .form-group input,
        .form-group textarea,
        .form-group select { /* Added select style */
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 14px;
            font-family: inherit;
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .package-info {
            background: #f8f9fa;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
        }
        .package-info h3 {
            margin: 0 0 10px 0;
            color: #667eea;
        }
        .package-info p {
            margin: 5px 0;
            color: #666;
        }
        /* ==================== GLOBAL STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f5f7fa;
    color: #333;
    line-height: 1.6;
}

/* ==================== ADMIN CONTAINER ==================== */
.admin-container {
    display: flex;
    min-height: 100vh;
}

/* ==================== SIDEBAR ==================== */
.admin-sidebar {
    width: 260px;
    color: white;
    background: #142633;
    color: white;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    box-shadow: 4px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.admin-sidebar h2 {
    padding: 20px;
    font-size: 24px;
    font-weight: 700;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.admin-sidebar ul {
    list-style: none;
    padding: 10px 0;
}

.admin-sidebar ul li {
    margin: 5px 0;
}

.admin-sidebar ul li a {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
    font-weight: 500;
}

.admin-sidebar ul li a:hover {
    background: rgba(255, 255, 255, 0.15);
    padding-left: 25px;
}

.admin-sidebar ul li a.active {
    background: rgba(255, 255, 255, 0.25);
    border-left: 4px solid white;
    font-weight: 600;
}

/* ==================== ADMIN CONTENT ==================== */
.admin-content {
    flex: 1;
    margin-left: 260px;
    padding: 30px 40px;
    background: #f5f7fa;
}

.admin-content h1 {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

/* ==================== STATS GRID ==================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.stats-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.stats-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border-left: 5px solid;
    transition: all 0.3s ease;
    cursor: pointer;
}

.stats-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.stats-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stats-content p {
    color: #666;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stats-content h2 {
    font-size: 36px;
    margin: 0;
    font-weight: 700;
}

.stats-content .icon {
    font-size: 42px;
    opacity: 0.9;
}

/* ==================== TABLE STYLES ==================== */
.table-container {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow-x: auto;
}

.table-container h2 {
    margin-bottom: 20px;
    color: #2c3e50;
    font-size: 24px;
}

.table-container table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.table-container th {
    background: #142633;
    color: white;
    padding: 15px 12px;
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    border: none;
}

.table-container td {
    padding: 15px 12px;
    border-bottom: 1px solid #e9ecef;
    color: #495057;
    font-size: 14px;
}

.table-container tbody tr {
    transition: background 0.2s ease;
}

.table-container tbody tr:hover {
    background: #f8f9fa;
}

.table-container tbody tr:last-child td {
    border-bottom: none;
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.btn-success {
    background: #28a745;
    color: white;
}

.btn-success:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
}

.btn-danger {
    background: #dc3545;
    color: white;
}

.btn-danger:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.4);
}

.btn-warning {
    background: #ffc107;
    color: #333;
}

.btn-warning:hover {
    background: #e0a800;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.btn-info {
    background: #17a2b8;
    color: white;
}

.btn-info:hover {
    background: #138496;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(23, 162, 184, 0.4);
}

/* ==================== FORM STYLES ==================== */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #495057;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ced4da;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* ==================== ALERTS ==================== */
.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-warning {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.alert-info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* ==================== BADGES ==================== */
.badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-success {
    background: #28a745;
    color: white;
}

.badge-warning {
    background: #ffc107;
    color: #333;
}

.badge-danger {
    background: #dc3545;
    color: white;
}

.badge-info {
    background: #17a2b8;
    color: white;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .admin-sidebar {
        width: 200px;
    }
    
    .admin-content {
        margin-left: 200px;
        padding: 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .admin-content h1 {
        font-size: 24px;
    }
    
    .table-container {
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .admin-sidebar {
        width: 60px;
        overflow: hidden;
    }
    
    .admin-sidebar h2,
    .admin-sidebar ul li a span {
        display: none;
    }
    
    .admin-sidebar ul li a {
        justify-content: center;
        padding: 15px;
    }
    
    .admin-content {
        margin-left: 60px;
        padding: 15px;
    }
    
    .stats-content {
        flex-direction: column;
        text-align: center;
    }
    
    .stats-content .icon {
        margin-top: 10px;
    }
}

/* ==================== SCROLLBAR STYLING ==================== */
.admin-sidebar::-webkit-scrollbar {
    width: 6px;
}

.admin-sidebar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.admin-sidebar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.admin-sidebar::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* ==================== UTILITY CLASSES ==================== */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.p-20 {
    padding: 20px;
}

.d-flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.align-center {
    align-items: center;
}

.gap-10 {
    gap: 10px;
}

.gap-20 {
    gap: 20px;
}
