/* ============================================
   ATKINSON COUNTY - FULLY RESPONSIVE STYLES
   ============================================ */

/* CSS Variables */
:root {
  --primary: #1a365d;
  --primary-light: #2c5282;
  --primary-dark: #0f2540;
  --accent: #c9a227;
  --accent-light: #d4b445;
  --accent-dark: #a88b1f;
  --white: #ffffff;
  --light: #f7fafc;
  --gray-100: #edf2f7;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e0;
  --gray-400: #a0aec0;
  --gray-500: #718096;
  --gray-600: #4a5568;
  --gray-700: #2d3748;
  --gray-800: #1a202c;
  --text: #2d3748;
  --text-light: #718096;
  --success: #38a169;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 40px rgba(0,0,0,0.15);
  --transition: all 0.3s ease;
  --transition-slow: all 0.5s ease;
  --radius: 12px;
  --radius-lg: 20px;
}

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--light);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

body.loaded {
  cursor: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.5s, visibility 0.5s;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader {
  text-align: center;
}

.loader-inner {
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
  position: relative;
}

.loader-line-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: spin 2s cubic-bezier(0.175, 0.885, 0.32, 1.275) infinite;
}

.loader-line-wrap:nth-child(1) { animation-delay: -0.2s; }
.loader-line-wrap:nth-child(2) { animation-delay: -0.1s; }
.loader-line-wrap:nth-child(3) { animation-delay: 0s; }
.loader-line-wrap:nth-child(4) { animation-delay: 0.1s; }
.loader-line-wrap:nth-child(5) { animation-delay: 0.2s; }

.loader-line {
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-top-color: var(--accent);
  border-radius: 50%;
}

.loader-text {
  color: var(--accent);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes spin {
  0%, 15% { transform: rotate(0); }
  100% { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ============================================
   CUSTOM CURSOR (Desktop Only)
   ============================================ */
.cursor, .cursor-follower {
  display: none;
}

@media (min-width: 1025px) and (hover: hover) {
  .cursor {
    display: block;
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s, width 0.2s, height 0.2s;
  }

  .cursor.active {
    width: 40px;
    height: 40px;
    background: rgba(201, 162, 39, 0.2);
  }

  .cursor-follower {
    display: block;
    position: fixed;
    width: 30px;
    height: 30px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    opacity: 0.5;
    transition: transform 0.15s ease-out;
  }

  .cursor-follower.active {
    width: 50px;
    height: 50px;
  }

  body.loaded a,
  body.loaded button {
    cursor: none;
  }
}

/* ============================================
   PARTICLES (Desktop Only)
   ============================================ */
#particles-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.2;
  animation: float 20s infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(100vh);
    opacity: 0;
  }
  10% { opacity: 0.2; }
  90% { opacity: 0.2; }
  100% {
    transform: translateY(-100vh);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  #particles-container {
    display: none;
  }
}

/* ============================================
   HEADER
   ============================================ */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 15px 20px;
  background: transparent;
  z-index: 1000;
  transition: var(--transition);
}

header.scrolled {
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
  transition: var(--transition);
  z-index: 1001;
}

header.scrolled .logo {
  color: var(--primary);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}

.logo-text {
  white-space: nowrap;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-link {
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 0;
  position: relative;
  transition: var(--transition);
}

header.scrolled .nav-link {
  color: var(--text);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  width: 28px;
  height: 20px;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

header.scrolled .menu-toggle span {
  background: var(--primary);
}

.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.menu-toggle span:nth-child(3) { bottom: 0; }

.menu-toggle.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  background: var(--primary);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
  background: var(--primary);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px 60px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary-dark) 100%);
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1569025690938-a00729c9e1f9?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  opacity: 0.15;
}

.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  opacity: 0.1;
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -100px;
}

.shape-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: -50px;
}

.shape-3 {
  width: 150px;
  height: 150px;
  top: 40%;
  left: 5%;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  text-align: center;
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(201, 162, 39, 0.2);
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: 50px;
  color: var(--accent-light);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-title .highlight {
  color: var(--accent);
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
  text-align: center;
}

.stat-num {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--accent);
}

.stat-plus {
  font-size: 1.2rem;
  color: var(--accent);
}

.stat-text {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 5px;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  position: relative;
}

.wheel {
  width: 3px;
  height: 6px;
  background: var(--accent);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: wheelScroll 2s infinite;
}

@keyframes wheelScroll {
  0% { opacity: 1; top: 6px; }
  100% { opacity: 0; top: 20px; }
}

.scroll-indicator span {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(201, 162, 39, 0.3);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(201, 162, 39, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

/* ============================================
   STATS MARQUEE
   ============================================ */
.stats-marquee {
  background: var(--accent);
  padding: 15px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: fit-content;
  animation: marquee 25s linear infinite;
}

.marquee-content {
  display: flex;
  gap: 50px;
  padding: 0 25px;
}

.marquee-content span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   SECTION STYLES
   ============================================ */
section {
  padding: 80px 0;
  position: relative;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-label.centered {
  justify-content: center;
}

.label-line {
  width: 30px;
  height: 2px;
  background: var(--accent);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
  line-height: 1.2;
}

.section-title .highlight {
  color: var(--accent);
}

.section-desc {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 600px;
}

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

.text-center .section-desc {
  margin: 0 auto;
}

.section-header {
  margin-bottom: 50px;
}

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

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.image-stack {
  position: relative;
}

.image-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.image-main img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.image-secondary {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 180px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.image-secondary img {
  width: 100%;
  height: 130px;
  object-fit: cover;
}

.experience-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.exp-number {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}

.exp-text {
  font-size: 0.65rem;
  text-align: center;
  line-height: 1.2;
}

.float-animation {
  animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.about-text {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 25px;
  line-height: 1.8;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 25px;
}

.feature-item {
  display: flex;
  gap: 15px;
  padding: 15px;
  background: var(--light);
  border-radius: var(--radius);
  transition: var(--transition);
}

.feature-item:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 45px;
  height: 45px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}

.feature-text h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 3px;
}

.feature-text p {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ============================================
   DEPARTMENTS SECTION
   ============================================ */
.departments-section {
  background: var(--light);
}

.departments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}

.dept-card {
  background: var(--white);
  padding: 25px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--gray-200);
}

.dept-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.dept-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 15px;
}

.dept-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
}

.dept-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 15px;
  line-height: 1.6;
}

.dept-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.dept-link:hover {
  gap: 12px;
}

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
}

.service-card {
  position: relative;
  background: var(--light);
  padding: 30px 25px;
  border-radius: var(--radius-lg);
  text-align: center;
  overflow: hidden;
  transition: var(--transition);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  opacity: 0;
  transition: var(--transition);
  z-index: 0;
}

.service-card:hover .card-bg {
  opacity: 1;
}

.service-card .card-icon,
.service-card h3,
.service-card p,
.service-card .card-link {
  position: relative;
  z-index: 2;
}

.card-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  transition: var(--transition);
}

.service-card:hover .card-icon {
  background: var(--white);
  color: var(--accent);
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
  transition: var(--transition);
}

.service-card:hover h3 {
  color: var(--white);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 15px;
  transition: var(--transition);
}

.service-card:hover p {
  color: rgba(255, 255, 255, 0.9);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.service-card:hover .card-link {
  color: var(--white);
}

/* ============================================
   NOTICES SECTION
   ============================================ */
.notices-section {
  background: var(--light);
}

.notices-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.notices-content p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 25px;
  line-height: 1.8;
}

.notices-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 25px;
}

.notice-item {
  display: flex;
  gap: 15px;
  padding: 15px;
  background: var(--white);
  border-radius: var(--radius);
  transition: var(--transition);
  border: 1px solid var(--gray-200);
}

.notice-item:hover {
  border-color: var(--accent);
  transform: translateX(5px);
  box-shadow: var(--shadow-sm);
}

.notice-icon {
  width: 50px;
  height: 50px;
  background: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}

.notice-info h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 3px;
}

.notice-info p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
}

.notices-image .image-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.notices-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* ============================================
   QUICK LINKS SECTION
   ============================================ */
.quick-links-section {
  background: var(--white);
  padding: 60px 0;
}

.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.quick-link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px 20px;
  background: var(--light);
  border-radius: var(--radius);
  transition: var(--transition);
  border: 2px solid transparent;
}

.quick-link-card:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.ql-icon {
  width: 60px;
  height: 60px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 15px;
  transition: var(--transition);
}

.quick-link-card:hover .ql-icon {
  transform: scale(1.1);
}

.quick-link-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 5px;
}

.quick-link-card p {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.cta-shapes .cta-shape {
  position: absolute;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.1;
}

.cta-shape.shape-1 {
  width: 200px;
  height: 200px;
  top: -50px;
  right: 10%;
}

.cta-shape.shape-2 {
  width: 150px;
  height: 150px;
  bottom: -30px;
  left: 5%;
}

.cta-shape.shape-3 {
  width: 100px;
  height: 100px;
  top: 50%;
  left: 25%;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
}

.cta-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-content > p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.cta-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.cta-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition);
}

.cta-link:hover {
  color: var(--accent);
}

.cta-link i {
  color: var(--accent);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  background: var(--light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}

.contact-info > p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 25px;
}

.info-cards {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 25px;
}

.info-card {
  display: flex;
  gap: 15px;
  padding: 15px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.info-card:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
}

.info-icon {
  width: 45px;
  height: 45px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}

.info-content h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 3px;
}

.info-content p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.5;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 42px;
  height: 42px;
  background: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--white);
  padding: 35px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.contact-form h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 25px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form .form-group {
  position: relative;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 15px 0;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--gray-200);
  font-size: 1rem;
  font-family: inherit;
  color: var(--text);
  outline: none;
  transition: var(--transition);
}

.contact-form select {
  cursor: pointer;
  appearance: none;
}

.contact-form textarea {
  resize: none;
  min-height: 100px;
}

.contact-form label {
  position: absolute;
  left: 0;
  top: 15px;
  color: var(--text-light);
  font-size: 0.95rem;
  transition: var(--transition);
  pointer-events: none;
}

.contact-form input:focus ~ label,
.contact-form input:valid ~ label,
.contact-form textarea:focus ~ label,
.contact-form textarea:valid ~ label,
.contact-form select:focus ~ label,
.contact-form select:valid ~ label {
  top: -8px;
  font-size: 0.75rem;
  color: var(--accent);
}

.focus-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

.contact-form input:focus ~ .focus-border,
.contact-form textarea:focus ~ .focus-border,
.contact-form select:focus ~ .focus-border {
  width: 100%;
}

/* ============================================
   MAP SECTION
   ============================================ */
.map-section {
  padding: 0;
}

.map-container {
  width: 100%;
  height: 400px;
  background: var(--gray-200);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--primary-dark);
  color: var(--white);
}

.footer-top {
  padding: 60px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
}

.footer-brand {
  max-width: 280px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 15px;
}

.footer-logo i {
  color: var(--accent);
  font-size: 1.5rem;
}

.footer-brand > p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 15px;
  line-height: 1.6;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.footer-contact i {
  color: var(--accent);
}

.footer-links h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--accent);
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 45px;
  height: 45px;
  background: var(--accent);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
}

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

.animate-item {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

.animate-item:nth-child(1) { animation-delay: 0.1s; }
.animate-item:nth-child(2) { animation-delay: 0.2s; }
.animate-item:nth-child(3) { animation-delay: 0.3s; }
.animate-item:nth-child(4) { animation-delay: 0.4s; }
.animate-item:nth-child(5) { animation-delay: 0.5s; }

/* Reveal Animations */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */
@media (max-width: 1024px) {
  .about-grid {
    gap: 40px;
  }

  .notices-wrapper {
    gap: 40px;
  }

  .contact-grid {
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-images {
    order: -1;
    max-width: 450px;
    margin: 0 auto;
  }

  .notices-wrapper {
    grid-template-columns: 1fr;
  }

  .notices-image {
    order: -1;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  .menu-toggle {
    display: block;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 1000;
  }

  nav.active {
    right: 0;
  }

  nav ul {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .nav-link {
    color: var(--primary);
    font-size: 1.3rem;
  }

  .hero {
    padding: 100px 20px 50px;
    min-height: auto;
  }

  .hero-stats {
    gap: 25px;
  }

  .scroll-indicator {
    display: none;
  }

  section {
    padding: 60px 0;
  }

  .image-secondary {
    width: 140px;
    right: 10px;
    bottom: -20px;
  }

  .image-secondary img {
    height: 100px;
  }

  .experience-badge {
    width: 80px;
    height: 80px;
    top: -10px;
    left: -10px;
  }

  .exp-number {
    font-size: 1.2rem;
  }

  .image-main img {
    height: 300px;
  }

  .notices-image img {
    height: 300px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-contact p {
    justify-content: center;
  }

  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-links {
    flex-direction: column;
    gap: 15px;
  }

  .departments-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .quick-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 15px;
    border-top: none;
    padding-top: 0;
  }

  .contact-form-wrapper {
    padding: 25px 20px;
  }

  .quick-links-grid {
    grid-template-columns: 1fr;
  }

  .map-container {
    height: 300px;
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .preloader,
  .cursor,
  .cursor-follower,
  #particles-container,
  .back-to-top,
  .scroll-indicator {
    display: none !important;
  }

  header {
    position: static;
    background: var(--white);
  }

  .hero {
    min-height: auto;
    padding: 40px 20px;
  }
}
