/* ==========================================
   GLOBAL STYLES & CSS VARIABLES
   ========================================== */

:root {
  /* Typography */
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans: "Poppins", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  
  /* Alternative font suggestions for testing:
     --font-display: "Cormorant Garamond", Georgia, serif;
     --font-display: "Cinzel", Georgia, serif;
     --font-sans: "Montserrat", sans-serif;
     --font-sans: "Raleway", sans-serif;
  */

  /* Core dark neutrals (muted blacks) */
  --bg: #0f1720;          
  --surface-900: #0d141a; 
  --surface-800: #11161d; 
  --surface-700: #151b24;
  --muted-black: #0b1220; 

  --text-primary: #e6eef8;
  --text-muted: #9aa6b3;
  --text-inverse: #0b1220;

  /* Brand gradient */
  /*--brand-gradient-stop-1: #ff9a3c;
  --brand-gradient-stop-2: #ff6b81;
  --brand-gradient-stop-3: #7c5cff;*/
  --brand-gradient-stop-1: #eec900;
  --brand-gradient-stop-2: #ffc439;
  --brand-gradient-stop-3: #5cff85;
  --brand-gradient: linear-gradient(90deg, var(--brand-gradient-stop-1) 0%, var(--brand-gradient-stop-2) 50%, var(--brand-gradient-stop-2) 100%);
  
  /* Accent colors */
  --accent-gold: #d4af37;
  --accent-teal: #06b6a4;
  --accent-coral: #ff6b6b;
  --accent-ocean: #0077b6;

  /* Coastal personality */
  --coast-sand: #f4e6cd; 
  --coast-palm: #2f7a3e;
  --coast-sky: #8fd3ff;
  --coast-sun: #ffb74d;
  
  --glass-bg: rgba(255,255,255,0.03);
  --glass-border: rgba(255,255,255,0.06);
  --card-bg: rgba(255,255,255,0.02);
  --divider: rgba(255,255,255,0.06);
  
  --shadow-xs: 0 1px 2px rgba(2,6,23,0.45);
  --shadow-sm: 0 6px 18px rgba(2,6,23,0.5);
  --shadow-lg: 0 20px 50px rgba(2,6,23,0.55);
  --glow-accent: 0 8px 30px rgba(124,92,255,0.12);
  --glow-warm: 0 8px 30px rgba(255,105,128,0.08);
  
  --btn-primary-bg: var(--accent-teal);
  --btn-primary-text: #07151a;
  --btn-secondary-bg: transparent;
  --btn-secondary-border: rgba(230,238,248,0.08);
  
  --focus-ring: rgba(124,92,255,0.28);
  --error: #ff4d6d;
  --success: #2dd4bf;
  
  --ease-quick: cubic-bezier(.2,.9,.3,1);
  --ease-smooth: cubic-bezier(.25,.8,.25,1);
  --dur-250: 250ms;
  --dur-450: 450ms;
  
  --bg-gradient: linear-gradient(180deg, rgba(7,12,18,0.6) 0%, rgba(6,9,14,0.9) 60%), 
                 radial-gradient(800px 500px at 10% 10%, rgba(124,92,255,0.06), transparent 20%), 
                 radial-gradient(600px 400px at 90% 90%, rgba(255,105,128,0.04), transparent 20%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  height: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--text-primary);
  background-color: var(--bg);
  background-image: var(--bg-gradient);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 16px;
  text-align: center;
}

.section-subtitle {
  color: var(--text-muted);
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

:focus {
  outline: 3px solid var(--focus-ring);
  outline-offset: 2px;
}

/* ==========================================
   NAVIGATION SECTION - START
   ========================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13,20,26,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  transition: all var(--dur-450) var(--ease-smooth);
}

.navbar.scrolled {
  background: rgba(13,20,26,0.95);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text-primary);
  z-index: 1001;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  position: relative;
  transition: all var(--dur-250) var(--ease-smooth);
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--dur-250) var(--ease-smooth);
  left:0px;
}

.hamburger::before {
  top: -7px;
}

#registration-dates{
  text-align: center;
}

.hamburger::after {
  bottom: -7px;
}

.menu-toggle.active .hamburger {
  background: transparent;
}

.menu-toggle.active .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}

.menu-toggle.active .hamburger::after {
  transform: rotate(-45deg);
  bottom: 0;
}

.nav-logo {
  flex-shrink: 0;
}

.logo-img {
  height: 80px;
  width: auto;
  display: block;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 48px;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav-link {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 8px 0;
  transition: color var(--dur-250) var(--ease-smooth);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-gradient);
  transition: width var(--dur-250) var(--ease-smooth);
}

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.social-icons {
  display: flex;
  gap: 16px;
}

.social-icons a svg{
  color: var(--brand-gradient-stop-3);
}

.social-icons a {
  color: var(--text-muted);
  transition: all var(--dur-250) var(--ease-smooth);
  display: flex;
  align-items: center;
}

.social-icons a:hover {
  color: var(--accent-teal);
  transform: translateY(-2px);
}

.login-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  color: var(--text-primary);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--dur-250) var(--ease-smooth);
  font-family: var(--font-sans);
  font-size: 0.95rem;
}

.login-btn:hover {
  background: var(--accent-teal);
  color: var(--text-inverse);
  border-color: var(--accent-teal);
  transform: scale(1.02);
}

/* NAVIGATION SECTION - END */

/* ==========================================
   HERO BANNER SECTION - START
   ========================================== */

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(15,23,32,0.9) 0%, rgba(11,18,32,0.95) 100%);
  overflow: hidden;
}

.hero::before{
  content: "";
  background-image: url("../images/bannerback.jpeg");
  position:fixed;
  left:0px;
  right:0px;
  top:0px;
  bottom:0px;
  z-index: -1;
  opacity:.4;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(124,92,255,0.08), transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(255,107,129,0.06), transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  text-align: center;
  z-index: 10;
  padding: 24px;
  animation: fadeInUp 1s var(--ease-smooth);
}

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

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.hero-subtitle {
  display: block;
  color: var(--text-primary);
  font-weight: 700;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--coast-sand);
  margin-bottom: 32px;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.btn-hero {
  padding: 16px 48px;
  font-size: 1.1rem;
  font-weight: 600;
  background: var(--brand-gradient-stop-1);
  color: var(--text-inverse);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--dur-250) var(--ease-smooth);
  box-shadow: 0 8px 24px rgba(6,182,164,0.3);
  font-family: var(--font-sans);
  position: relative;
  overflow: hidden;
}

.btn-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.btn-hero:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 12px 32px rgba(6,182,164,0.4);
}

.btn-hero:hover::before {
  transform: translateX(100%);
}

/* HERO BANNER SECTION - END */

/* ==========================================
   COUNTDOWN TIMER SECTION - START
   ========================================== */

.countdown-section {
  background: var(--surface-900);
  padding: 48px 0;
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}

.countdown-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 32px;
  color: var(--text-primary);
  letter-spacing: 1px;
}

.countdown {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 100px;
}

.countdown-value {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.countdown-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}

/* COUNTDOWN TIMER SECTION - END */

/* ==========================================
   ABOUT SECTION - START
   ========================================== */

.about-section {
  padding: 120px 0;
  background-color: var(--bg);
  background-image: var(--bg-gradient);
  background-attachment: fixed;
  position:relative;
}

.about-section::before{
  content: '';
  background-image: url("../images/gradientimg.png");
  top:0px;
  bottom:0px;
  left:0px;
  right:0px;
  position:absolute;
  z-index: 0;
  opacity:.5;
  background-size: cover;
}

.process-section::before{
  content: '';
  background-image: url("../images/gradientimg.png");
  top:0px;
  bottom:0px;
  left:0px;
  right:0px;
  position:absolute;
  z-index: 0;
  opacity:.3;
  background-size: cover;
}

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

.about-text h2 {
  text-align: left;
  margin-bottom: 24px;
}

.about-description {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.about-stats {
  display: flex;
  gap: 48px;
  margin-top: 48px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.process-icon svg{
  color: var(--brand-gradient-stop-2);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-image {
  position: relative;
}

.image-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, rgba(124,92,255,0.1), rgba(255,107,129,0.1));
  border-radius: 16px;
  border: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
}

.image-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  display: flex;
  color: var(--text-muted);
  font-size: 1.2rem;
  font-weight: 500;
  background-image: url("../images/abouthomebanner.jpg");
  background-size: cover;
  background-position-x: center;
}

/* ABOUT SECTION - END */

/* ==========================================
   CATEGORIES SECTION - START
   ========================================== */

.categories-section {
  padding: 120px 0;
  background: var(--surface-900);
}

.categories-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.category-wrapper {
  opacity: 0;
  animation: fadeIn 0.5s var(--ease-smooth) forwards;
  min-width: 48%;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.category-header {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 24px 32px;
  cursor: pointer;
  transition: all var(--dur-250) var(--ease-smooth);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.category-header:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.category-header.active {
  background: rgba(124,92,255,0.08);
  border-color: rgba(124,92,255,0.2);
}

.category-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  font-family: var(--font-display);
  max-width:358px;
}

.category-icon {
  width: 24px;
  height: 24px;
  transition: transform var(--dur-250) var(--ease-smooth);
  color: var(--accent-teal);
}

.category-header.active .category-icon {
  transform: rotate(180deg);
}

.subcategories {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-smooth), opacity 0.3s var(--ease-smooth);
  opacity: 0;
}

.subcategories.active {
  max-height: 1000px;
  opacity: 1;
  margin-top: 8px;
}

.subcategories-list {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--divider);
  border-radius: 8px;
  padding: 16px;
  list-style: none;
}

.subcategory-item {
  padding: 12px 16px;
  color: var(--text-muted);
  font-size: 1rem;
  border-bottom: 1px solid var(--divider);
  transition: all var(--dur-250) var(--ease-smooth);
  animation: slideInLeft 0.3s var(--ease-smooth) backwards;
  cursor:pointer;
}

.subcategory-item:last-child {
  border-bottom: none;
}

.subcategory-item:hover {
  color: var(--accent-teal);
  padding-left: 24px;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.subcategory-item:nth-child(1) { animation-delay: 0.05s; }
.subcategory-item:nth-child(2) { animation-delay: 0.1s; }
.subcategory-item:nth-child(3) { animation-delay: 0.15s; }
.subcategory-item:nth-child(4) { animation-delay: 0.2s; }
.subcategory-item:nth-child(5) { animation-delay: 0.25s; }

/* CATEGORIES SECTION - END */

/* ==========================================
   VOTING PROCESS SECTION - START
   ========================================== */

.process-section {
  padding: 120px 0;
  background-color: var(--bg);
  background-image: var(--bg-gradient);
  background-attachment: fixed;
  position:relative;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-top: 64px;
}

.process-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  transition: all var(--dur-450) var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.process-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--brand-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-450) var(--ease-smooth);
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255,255,255,0.12);
}

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

.process-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6,182,164,0.1);
  border-radius: 50%;
  color: var(--accent-teal);
  transition: all var(--dur-450) var(--ease-smooth);
}

.process-card:hover .process-icon {
  background: rgba(6,182,164,0.2);
  transform: scale(1.1) rotate(5deg);
}

.process-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-primary);
  font-family: var(--font-display);
}

.process-description {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* VOTING PROCESS SECTION - END */

/* ==========================================
   PARTNERS SECTION - START
   ========================================== */

.partners-section {
  padding: 120px 0;
  background: var(--surface-900);
  overflow: hidden;
}

.partners-slider {
  margin-top: 64px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
}

.partners-track {
  display: flex;
  gap: 64px;
  animation: slideLeft 20s linear infinite;
}

@keyframes slideLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.partner-logo {
  flex-shrink: 0;
  width: 180px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 12px;
  transition: all var(--dur-250) var(--ease-smooth);
}

.partner-logo:hover {
  transform: scale(1.05);
  border-color: var(--accent-teal);
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(0.9);
  transition: filter var(--dur-250);
}

.partner-logo:hover img {
  filter: brightness(1.1);
}

/* PARTNERS SECTION - END */

/* ==========================================
   GALLERY SECTION - START
   ========================================== */

.gallery-section {
  padding: 120px 0;
  background-color: var(--bg);
  background-image: var(--bg-gradient);
  background-attachment: fixed;
  /*background: linear-gradient(180deg, transparent 0%, rgba(255,107,129,0.03) 100%);*/
  overflow: hidden;
}

.gallery-slider {
  margin-top: 64px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, white 5%, white 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, white 5%, white 95%, transparent);
}

.gallery-track {
  display: flex;
  gap: 24px;
  animation: slideRight 12s linear infinite;
}

@keyframes slideRight {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

.gallery-item {
  flex-shrink: 0;
  width: 350px;
  height: 450px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: all var(--dur-450) var(--ease-smooth);
  background: var(--surface-800);
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
  z-index: 10;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-450) var(--ease-smooth);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-cta {
  text-align: center;
  margin-top: 64px;
}

.btn-secondary {
  padding: 14px 40px;
  font-size: 1rem;
  font-weight: 600;
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--glass-border);
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--dur-250) var(--ease-smooth);
  font-family: var(--font-sans);
}

.btn-secondary:hover {
  background: var(--accent-teal);
  color: var(--text-inverse);
  border-color: var(--accent-teal);
  transform: translateY(-2px);
}

/* GALLERY SECTION - END */

/* ==========================================
   FOOTER SECTION - START
   ========================================== */

.footer {
  background: var(--surface-900);
  border-top: 1px solid var(--divider);
  padding: 80px 0 32px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 48px;
  margin-bottom: 48px;
}

.footer-col h3, 
.footer-col h4 {
  margin-bottom: 24px;
}

.footer-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.footer-heading {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.footer-text {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  color: var(--text-muted);
  transition: all var(--dur-250) var(--ease-smooth);
}

.footer-social a:hover {
  background: var(--accent-teal);
  color: var(--text-inverse);
  border-color: var(--accent-teal);
  transform: translateY(-3px);
}

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

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

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--dur-250) var(--ease-smooth);
}

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

.footer-contact {
  list-style: none;
}

.footer-contact li {
  display: flex;
  align-items: start;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-contact svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent-teal);
}

.footer-contact a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--dur-250);
}

.footer-contact a:hover {
  color: var(--accent-teal);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.newsletter-input {
  padding: 12px 16px;
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: all var(--dur-250) var(--ease-smooth);
}

.newsletter-input::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

.newsletter-input:focus {
  border-color: var(--accent-teal);
  background: rgba(255,255,255,0.05);
}

.newsletter-btn {
  padding: 12px 24px;
  background: var(--accent-teal);
  color: var(--text-inverse);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--dur-250) var(--ease-smooth);
  font-family: var(--font-sans);
  font-size: 0.95rem;
}

.newsletter-btn:hover {
  background: #05a091;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(6,182,164,0.3);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--divider);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 8px 0;
}

/* FOOTER SECTION - END */

/* ==========================================
   RESPONSIVE STYLES
   ========================================== */

/* Extra Large screens */
@media (max-width: 1400px) {
  .container {
    max-width: 1140px;
  }
}

/* Large screens */
@media (max-width: 1200px) {
  .nav-container {
    gap: 24px;
  }
  
  .nav-menu {
    gap: 32px;
  }
  
  .about-content {
    gap: 48px;
  }
  
  .process-grid {
    gap: 24px;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .nav-menu {
    gap: 24px;
    font-size: 0.9rem;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .about-text h2 {
    text-align: center;
  }
  
  .about-image {
    order: -1;
    max-width: 500px;
    /*margin: 0 auto;*/
  }
  
  .about-stats {
    justify-content: center;
  }
  
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .partner-logo {
    width: 160px;
    height: 134px;
  }
  
  .gallery-item {
    width: 320px;
    height: 420px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: rgba(13,20,26,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 100px 32px 32px;
    gap: 24px;
    align-items: flex-start;
    justify-content: flex-start;
    transition: left var(--dur-450) var(--ease-smooth);
    z-index: 999;
    border-right: 1px solid var(--glass-border);
    box-shadow: var(--shadow-lg);
  }
  
  .nav-menu.active {
    left: 0;
  }

  .partners-track {
    animation: slideLeft 4s linear infinite;
  }
  
  .nav-link {
    font-size: 1.1rem;
    padding: 12px 0;
    width: 100%;
  }

  .gallery-track {
    animation: slideRight 4s linear infinite;
  }
  
  .nav-link::after {
    display: none;
  }
  
  
  .hero {
    min-height: 500px;
    height: 80vh;
  }
  
  .hero-content {
    padding: 20px;
  }
  
  .hero-title {
    font-size: clamp(2.7rem, 10vw, 4rem);
  }
  
  .hero-tagline {
    font-size: 1rem;
    letter-spacing: 1.5px;
  }
  
  .btn-hero {
    padding: 14px 36px;
    font-size: 1rem;
  }
  
  .countdown-section {
    padding: 36px 0;
  }
  
  .countdown {
    gap: 16px;
  }
  
  .countdown-item {
    min-width: 80px;
  }
  
  .countdown-value {
    font-size: 2.5rem;
  }
  
  .countdown-label {
    font-size: 0.8rem;
  }
  
  .about-section {
    padding: 80px 0;
  }
  
  .about-stats {
    gap: 32px;
    flex-wrap: wrap;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .categories-section {
    padding: 80px 0;
  }
  
  .category-header {
    padding: 20px 24px;
  }
  
  .category-name {
    font-size: 1.1rem;
  }
  
  .process-section {
    padding: 80px 0;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .process-card {
    padding: 32px 24px;
  }
  
  .partners-section {
    padding: 80px 0;
  }
  
  .partner-logo {
    width: 160px;
    height: 134px;
  }
  
  .gallery-section {
    padding: 80px 0;
  }
  
  .gallery-item {
    width: 280px;
    height: 380px;
  }
  
  .footer {
    padding: 60px 0 24px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .nav-container {
    padding: 12px 16px;
  }

  .about-section::before,.process-section::before {
    background-image: url("../images/gradientimgsm.png");
  }

  .hero::before {
    background-image: url("../images/bannerbacksm.jpeg");
  }

  .nav-logo{
    position: absolute;
    left: 4rem;
  }
  
  .logo-img {
    height: 60px;
  }

  .category-wrapper {
    width: 96%;
  }
  
  .login-btn {
    padding: 8px 12px;
    gap: 6px;
  }
  
  .login-btn span {
    display: none;
  }
  
  .login-btn svg {
    width: 20px;
    height: 20px;
  }
  
  .hero {
    min-height: 350px;
    height: 64vh;
  }
  
  .hero-title {
    font-size: 2.6rem;
  }
  
  .hero-tagline {
    font-size: 0.9rem;
    margin-bottom: 24px;
  }
  
  .btn-hero {
    padding: 12px 28px;
    font-size: 0.95rem;
  }
  
  .countdown-section {
    padding: 32px 0;
  }
  
  .countdown-title {
    font-size: 1.2rem;
    margin-bottom: 24px;
  }
  
  .countdown {
    gap: 12px;
  }
  
  .countdown-item {
    min-width: 70px;
  }
  
  .countdown-value {
    font-size: 2rem;
  }
  
  .countdown-label {
    font-size: 0.75rem;
    letter-spacing: 1px;
  }
  
  .about-section {
    padding: 12px 0;
  }
  
  .section-title {
    font-size: 2rem;
    margin-bottom: 12px;
  }
  
  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 36px;
  }
  
  .about-description {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .about-stats {
    gap: 24px;
    align-items: center;
    margin-bottom: 2rem;
  }
  
  .stat-item {
    align-items: center;
  }
  
  .stat-number {
    font-size: 2.2rem;
  }
  
  .categories-section {
    padding: 60px 0;
  }
  
  .category-header {
    padding: 18px 20px;
  }
  
  .category-name {
    font-size: 1rem;
  }
  
  .category-icon {
    width: 20px;
    height: 20px;
  }
  
  .subcategory-item {
    padding: 10px 12px;
    font-size: 0.95rem;
  }
  
  .process-section {
    padding: 60px 0;
  }
  
  .process-card {
    padding: 28px 20px;
  }
  
  .process-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }
  
  .process-icon svg {
    width: 32px;
    height: 32px;
  }
  
  .process-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }
  
  .process-description {
    font-size: 0.9rem;
  }
  
  .partners-section {
    padding: 60px 0;
  }
  
  .partners-slider {
    margin-top: 48px;
  }
  
  .partners-track {
    gap: 8px;
  }
  
  .partner-logo {
    padding:8px;
  }
  
  .gallery-section {
    padding: 60px 0;
  }
  
  .gallery-slider {
    margin-top: 48px;
  }
  
  .gallery-track {
    gap: 16px;
  }
  
  .gallery-item {
    width: 250px;
    height: 340px;
  }
  
  .gallery-cta {
    margin-top: 48px;
  }
  
  .btn-secondary {
    padding: 12px 32px;
    font-size: 0.95rem;
  }
  
  .footer {
    padding: 48px 0 20px;
  }
  
  .footer-content {
    gap: 32px;
  }
  
  .footer-title {
    font-size: 1.3rem;
  }
  
  .footer-heading {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .footer-text {
    font-size: 0.9rem;
    margin-bottom: 12px;
  }
  
  .footer-contact li {
    font-size: 0.9rem;
    margin-bottom: 12px;
  }
  
  .newsletter-input,
  .newsletter-btn {
    font-size: 0.9rem;
  }
  
  .footer-bottom {
    padding-top: 24px;
    font-size: 0.85rem;
  }
}

/* Extra Small mobile */
@media (max-width: 360px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .countdown-item {
    min-width: 60px;
  }
  
  .countdown-value {
    font-size: 1.8rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .category-name {
    font-size: 0.95rem;
  }
  
  .process-title {
    font-size: 1.2rem;
  }
  
  .partner-logo {
    width: 144px;
    height: 94px;
  }
  
  .gallery-item {
    width: 220px;
    height: 300px;
  }
}

/* Landscape orientation fixes for mobile */
@media (max-height: 600px) and (orientation: landscape) {
  .hero {
    min-height: 400px;
    height: 100vh;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-tagline {
    font-size: 0.9rem;
    margin-bottom: 16px;
  }
  
  .btn-hero {
    padding: 10px 24px;
  }
  
  .countdown-section {
    padding: 24px 0;
  }
  
  .countdown-title {
    font-size: 1.1rem;
    margin-bottom: 16px;
  }
  
  .countdown-item {
    min-width: 60px;
  }
  
  .countdown-value {
    font-size: 2rem;
  }
}

/* Print styles */
@media print {
  .navbar,
  .menu-toggle,
  .login-btn,
  .btn-hero,
  .btn-secondary,
  .newsletter-form {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .hero {
    page-break-after: always;
  }
  
  section {
    page-break-inside: avoid;
  }
}