/* ===== CSS RESET & BASE STYLES ===== */
:root {
    /* Primary Colors - Lagos State Theme */
    --primary-color:  #020202;
    --primary-dark: #cc5200;
    --primary-light: #004080;
    --secondary-color: #00a859;
    --secondary-dark: #008746;
    --secondary-light: #00c06e;
    --accent-color: #ff6b00;
    --accent-light: #ff8533;
    
    /* Neutral Colors */
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --dark-gray: #6c757d;
    --black: #212529;
    
    /* Semantic Colors */
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --info: #17a2b8;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Fonts */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

/* ===== LAYOUT UTILITIES ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    margin-top: 3rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--dark-gray);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-normal);
    border: 2px solid transparent;
    text-align: center;
    white-space: nowrap;
    user-select: none;
    margin-bottom: 1rem;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
    box-shadow: 0 1px 10px rgba(255, 102, 0, 0.45);
}

.btn-primary:hover {
    /* background-color: var(--primary-dark); */
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    animation: pulse 1s;
    background: linear-gradient(to bottom, #ff7a18, #ff5c00);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
    box-shadow: 0 1px 10px rgba(124, 248, 124, 0.45);
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    border-color: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}


.btnt-primary {
      padding: 0.9rem 2.6rem;
      border-radius: 999px;
      background: linear-gradient(to bottom, #ff7a18, #ff5c00);
      color: #fff;
      border: none;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 0.6rem;
      transition: all 0.25s ease;
      box-shadow: 0 10px 30px rgba(255, 102, 0, 0.45);
      animation: pulse 1.5s;
    }
/* ===== WHATSAPP CHAT ===== */
.whatsapp-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    color: var(--white);
    padding: 12px 20px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    font-weight: 600;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.whatsapp-btn i {
    font-size: 1.5rem;
}

/* PROCESSED APPLICATIONS */

/* PAGE LAYOUT */

.permits-page {
  padding: 3rem 1rem;
  font-family: system-ui, sans-serif;
  color: #1f2937;
  background: #f9fafb;
}


/* HEADER */

.page-headerp {
  text-align: center;
  margin-bottom: 2rem;
}

.page-headerp h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #111;
}

.page-headerp p {
  color: #4b5563;
  font-size: 1rem;
  margin-top: 0.4rem;
}

.search-bar {
  margin-top: 1.5rem;
  text-align: right;
}

.search-bar input {
  padding: 0.6rem 1rem;
  width: 100%;
  max-width: 350px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}

.search-bar input:focus {
  border-color: #6366f1;
  box-shadow: 0 0 4px rgba(99, 102, 241, 0.4);
}

/* TABLE */

.table-wrapper {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

th, td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
  font-size: 0.95rem;
}

th {
  background: #eef2ff;
  font-weight: 600;
  color: #1e3a8a;
  position: sticky;
  top: 0;
}

tbody tr:nth-child(even) {
  background: #f8fafc;
}

tbody tr:hover {
  background: #e0e7ff;
}


/* ===== HEADER ===== */
.header {
    position: sticky;
    top: 0;
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 100;
    padding: 0 1rem;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo-icon {
    color: var(--white);
    display: flex;
    align-items: center;
    /* justify-content: center;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.875rem; */
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    color: var(--primary-color);
    line-height: 1.2;
    width: auto;
    height: 100px;
    justify-content: center;
}

.logo-sub {
    font-size: 0.75rem;
    color: var(--dark-gray);
    line-height: 2;
}

/* ===== NAVIGATION ===== */



.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;  
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 101;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition-normal);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    color: var(--dark-gray);
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    background-color: rgba(0, 51, 102, 0.1);
    color: var(--primary-color);
}

.nav-link i {
    font-size: 1.125rem;
}

/* ===== DROPDOWN MENU ===== */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background-color: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-normal);
    z-index: 10;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    color: var(--dark-gray);
    transition: var(--transition-fast);
}

.dropdown-menu a:hover {
    background-color: var(--light-gray);
    color: var(--primary-color);
}

.dropdown-menu i {
    width: 20px;
    text-align: center;
}

.roman-list {
  list-style-type: lower-roman;
  padding-left: 1.5rem;
  line-height: 1;
  color: #0e0d0d;
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.herot{
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.herot::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.45),
        rgba(0,0,0,0.75)
      );
      z-index: 1;
    }

.slideshow {
      position: absolute;
      inset: 0;
      z-index: 0;
}

.slide {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: opacity 1.5s ease-in-out;
    }
.slide.active {
      opacity: 1;
    }

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    padding: 0 2rem;
}

.herot-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    padding: 0 2rem;
}
.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}
.herot-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #d1d5db;
}

.ttext {
    font-size: 1.5rem;
    font-weight: 600;
    align-items: left;
    margin-bottom: 1rem;
    justify-content: left;
}
.hero-subtitle {
    font-size: 1.125rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    text-align: justify;
}
.hero-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    text-align: justify;
}

.herot-subtitle {
    max-width: 760px;
    margin: 0 auto 3rem;
    font-size: 1.25rem;
    color: #d1d5db;
    line-height: 1.7;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.herot-buttons {
    display: flex;
    gap: 1.75rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    justify-content: center;
}

.hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.herot-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    
}


.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
}

.feature i {
    color: var(--secondary-color);
}

.hero-image {
    flex: 1;
    min-width: 300px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 4rem 0;
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 1px solid var(--medium-gray);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 51, 102, 0.1);
    color: var(--accent-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card p {
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.service-link:hover {
    color: var(--secondary-dark);
}

.service-link i {
    transition: var(--transition-fast);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* ===== ANNOUNCEMENTS SECTION ===== */
.announcements {
    padding: 4rem 0;
    background-color: var(--light-gray);
}

.announcement-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.announcement-card {
    display: flex;
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.announcement-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.announcement-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    background-color: var(--accent-light);
    color: var(--white);
    padding: 1rem;
}

.announcement-date .day {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.announcement-date .month {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
}

.announcement-content {
    flex: 1;
    padding: 1.5rem;
}

.announcement-content h3 {
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.announcement-content p {
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.read-more {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 600;
}

.read-more:hover {
    color: var(--secondary-dark);
}

/* ===== QUICK LINKS SECTION ===== */
.quick-links {
    padding: 4rem 0;
    background-color: var(--white);
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background-color: var(--light-gray);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

.link-card:hover {
    background-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.link-card:hover,
.link-card:hover h3,
.link-card:hover p {
    color: var(--white);
}

.link-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: var(--transition-normal);
}

.link-card:hover i {
    color: var(--white);
}

.link-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.link-card p {
    color: var(--dark-gray);
}

/* ===== FOOTER ===== */
.footer {
    background-color: #222;
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer-logo {
    display: flex;
    align-items: left;
    gap: 1rem;
    margin-bottom: .1rem;
}

.footer-logo .logo-icon {
    background-color: var(--white);
    color: var(--primary-color);
}

.footer-logo .logo-main {
    color: var(--white);
}

.footer-logo .logo-sub {
    color: rgba(255, 255, 255, 0.8);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-col ul li a i {
    font-size: 0.75rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    color: var(--secondary-color);
    margin-top: 0.25rem;
}

.contact-item div {
    flex: 3;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--white);
}

.contact-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-links a:hover {
    color: var(--white);
}

/* ===== PAGE HEADER ===== */
.page-header {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
    align-items: center;
    justify-content: center;
    background-image:
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.75),
      rgba(120, 50, 0, 0.75),
      rgba(255, 102, 0, 0.75)
    ),
    url("/image/img.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: clamp(2rem, 5vw, 3rem);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.breadcrumb a:hover {
    color: var(--white);
}

/* ===== CONTENT SECTIONS ===== */
.content-section {
    padding: 4rem 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.content-main {
    background-color: var(--white);
}

.content-sidebar {
    background-color: var(--white);
}

.sidebar-card {
    background-color: var(--light-gray);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
}

.sidebar-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* ===== FORMS ===== */
.form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--medium-gray);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.1);
}

.form-textarea {
    min-height: auto;
    resize: vertical;
}

.form-row {
    /* display: grid; */
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-content: center;
}

/* ===== TABLES ===== */
.table-container {
    overflow-x: auto;
    margin: 2rem 0;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
}

.data-table th {
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    text-align: left;
    padding: 1rem;
}

.data-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--medium-gray);
}

.data-table tr:hover {
    background-color: var(--light-gray);
}

/* ===== CARDS ===== */
.card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition-normal);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-header {
    padding: 1.5rem;
    background-color: var(--primary-color);
    color: var(--white);
}

.card-body {
    padding: 1.5rem;
}

.card-footer {
    padding: 1.5rem;
    background-color: var(--light-gray);
    border-top: 1px solid var(--medium-gray);
}

/* ===== ALERTS ===== */
.alert {
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.alert-info {
    background-color: #e7f3ff;
    border-left: 4px solid var(--accent-color);
    color: var(--primary-color);
}

.alert-success {
    background-color: #d4edda;
    border-left: 4px solid var(--success);
    color: #155724;
}

.alert-warning {
    background-color: #fff3cd;
    border-left: 4px solid var(--warning);
    color: #856404;
}

.alert-danger {
    background-color: #f8d7da;
    border-left: 4px solid var(--danger);
    color: #721c24;
}

.alert i {
    font-size: 1.25rem;
}

/* ===== BADGES ===== */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.badge-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.badge-success {
    background-color: var(--success);
    color: var(--white);
}

/* ===== PROCESS STEPS ===== */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 30px;
    width: 2px;
    background-color: var(--medium-gray);
    z-index: 1;
}

.process-step {
    display: flex;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
    padding-top: 0.5rem;
}

.step-content h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary-color);
}

.text-secondary {
    color: var(--secondary-color);
}

.bg-light {
    background-color: var(--light-gray);
}

.bg-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.pt-1 { padding-top: 1rem; }
.pt-2 { padding-top: 2rem; }
.pt-3 { padding-top: 3rem; }
.pb-1 { padding-bottom: 1rem; }
.pb-2 { padding-bottom: 2rem; }
.pb-3 { padding-bottom: 3rem; }

.hidden {
    display: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
/* ===== ABOUT PAGE STYLES ===== */
.functions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.function-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--accent-light);
    transition: var(--transition-normal);
}

.function-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.function-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.function-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.facts-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--medium-gray);
}

.fact-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.fact-item i {
    color: var(--secondary-color);
    font-size: 1.25rem;
}

.leadership-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.leader-avatar {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.leader-info h4 {
    margin-bottom: 0.25rem;
    color: var(--primary-color);
}

.leader-info p {
    margin: 0;
    color: var(--dark-gray);
    font-size: 0.875rem;
}

/* ===== RESOURCES PAGE STYLES ===== */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.resource-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    margin-bottom: 2rem;
    text-align: center;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.resource-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 1.5rem;
}

.resource-header h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.resource-body {
    padding: 1.5rem;
}

.resource-list {
    list-style: none;
    padding: 0;
}

.resource-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--medium-gray);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.resource-list li:last-child {
    border-bottom: none;
}

.resource-list i {
    color: var(--secondary-color);
}

.resource-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-top: 1rem;
}

/* ===== MEDIA PAGE STYLES ===== */
.media-filter {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    background: var(--light-gray);
    border: 1px solid var(--medium-gray);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.media-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.media-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.media-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.media-image {
    height: 200px;
    overflow: hidden;
}

.media-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.media-item:hover .media-image img {
    transform: scale(1.05);
}

.media-content {
    padding: 1.5rem;
}

.media-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--dark-gray);
}

.media-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.media-content h3 {
    margin-bottom: 0.75rem;
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info-grid {
    display: grid;
    gap: 1.5rem;
}

.contact-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--secondary-color);
}

.contact-card h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-card i {
    color: var(--secondary-color);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-detail i {
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.map-container {
    height: 300px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 2rem;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== APPLICATION  PAGES ===== */
.process-guide {
    margin: 2rem 0;
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.step-content h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.requirements-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.requirements-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--medium-gray);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.requirements-list li:last-child {
    border-bottom: none;
}

.requirements-list i {
    color: var(--secondary-color);
}

.document-list {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin: 1.5rem 0;
}

.document-list h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* ===== FAQ STYLES ===== */
.faq-container {
    margin: 2rem 0;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--light-gray);
    transition: var(--transition-fast);
}

.faq-question:hover {
    background: var(--medium-gray);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.125rem;
}

.faq-toggle {
    color: var(--primary-color);
    transition: var(--transition-fast);
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 1000px;
}


/* Application header */
.fibre-row-requirements {
  padding: 3rem 1rem;
  background: #fafbfc;
  font-family: system-ui, sans-serif;
  color: #1e293b;
}

.containerr {
  max-width: 980px;
  margin: auto;
}

.section-headerr h1 {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
}

.section-headerr p {
  text-align: center;
  margin: 0.8rem 0 2rem;
  color: #4b5563;
}

.requirements-block,
.fees-block,
.reinstatement-block {
  margin-bottom: 2.5rem;
  background: #fff;
  padding: 1.8rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.requirements-block h2,
.fees-block h2,
.reinstatement-block h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #111827;
}

.checklistr {
  list-style: none;
  padding: 0;
}

.checklistr li {
  padding: 0.65rem 0;
  border-bottom: 1px solid #e5e7eb;
  font-size: 1.05rem;
}

.checklistr li:last-child {
  border: none;
}

.fees-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.fees-table th,
.fees-table td {
  padding: 0.8rem 1rem;
  border-bottom: 1px solid #e2e8f0;
  font-size: 1rem;
}

.fees-table th {
  background: #eef2ff;
  font-weight: 600;
  text-align: left;
  color: #1e3a8a;
}

.contact-info {
  text-align: center;
  font-size: 0.95rem;
  color: #475569;
}






.media-gallery {
  padding: 3rem 1rem;
  background: #fafbfb;
  font-family: system-ui, sans-serif;
}


.gallery-header {
  text-align: center;
  margin-bottom: 2rem;
}

.gallery-header h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #111827;
}

.gallery-header p {
  color: #4b5563;
  font-size: 1rem;
  margin-top: 0.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.6rem;
}

.gallery-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.gallery-card img:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.gallery-card figcaption {
  margin-top: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
}

.gallery-card a {
  text-decoration: none;
  color: #1d4ed8;
}

.gallery-card a:hover {
  text-decoration: underline;
}

.news-link {
    margin-bottom: 2rem;
    display: inline-block;
    color: #1d4ed8;
}

.news-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
}
.contact-section {
  padding: 5rem 2rem;
  background: #fafafa;
}

.contact-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}

/* FORM */

.contact-form h2 {
  font-size: 2.4rem;
  margin-bottom: .5rem;
}

.subtitle {
  color: #666;
  margin-bottom: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.3rem;
}

label {
  font-weight: 600;
  margin-bottom: .4rem;
}

input,
select,
textarea {
  padding: .8rem 1rem;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 1rem;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #ff6600;
}

/* BUTTON */

.send-btn {
  margin-top: 1rem;
  background: #ff6600;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 999px;
  font-size: 1rem;
  cursor: pointer;
  transition: .3s;
}

.send-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255,102,0,.3);
}

/* MAP */

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 18px;
}


.notice-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.65);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.notice-modal {
  background: #fff;
  max-width: 620px;
  width: 90%;
  padding: 3rem;
  border-radius: 18px;
  text-align: center;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
  animation: fadeInUp .5s ease;
}

.notice-header {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.notice-header img {
  height: 55px;
}

.notice-modal h2 {
  letter-spacing: .15em;
  font-size: 1.2rem;
  margin-bottom: .3rem;
}

.notice-modal h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.notice-modal p {
  color: #333;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.notice-contact p {
  font-weight: 600;
}

.notice-signature {
  margin-top: 2rem;
  font-size: .95rem;
}

/* CLOSE */

.notice-close {
  position: absolute;
  right: 18px;
  top: 18px;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
}

/* ANIMATION */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
