/* 
  Silver Hills School - School of the Next Generation
  Premium "Coming Soon" Landing Page Custom Stylesheet (Light Premium Edition)
*/

/* Imports premium typography from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;700;800;900&family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');

:root {
  /* Color Palette derived precisely from the Silver Hills Logo */
  --royal-blue: #0f2043;         /* Left Shield / Crest background */
  --crimson-red: #8a1818;        /* Right Shield */
  --premium-gold: #c5a059;       /* Outer crest rims / elements */
  --gold-light: #fbf8f0;         /* Soft cream gold background */
  --gold-dark: #7c6027;          /* Darker gold for text readability */
  --white: #ffffff;
  --light-bg: #f8fafc;           /* Elegant slate-white base background */
  
  /* Text Colors */
  --text-main: #0f172a;          /* Deep slate blue for primary headings */
  --text-muted: #334155;         /* Slate gray for descriptions/subtitles */
  --text-light: #64748b;         /* Muted gray for labels and details */
  
  /* Transparent glassmorphism layers (Light theme) */
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(15, 32, 67, 0.06);
  --gold-border: rgba(197, 160, 89, 0.25);
  --gold-glow: rgba(197, 160, 89, 0.12);
  
  /* Typography */
  --font-serif: 'Cinzel', Georgia, serif;
  --font-body-serif: 'Poppins', sans-serif;
  --font-sans: 'Poppins', sans-serif;
  
  /* Smooth transitions */
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s ease;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--light-bg);
  color: var(--text-main);
  overflow-x: hidden;
  line-height: 1.6;
  min-height: 100vh;
}

/* Selection highlight */
::selection {
  background-color: var(--premium-gold);
  color: var(--white);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
  background: rgba(197, 160, 89, 0.3);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--premium-gold);
}

/* Ambient Particles Canvas */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Interactive Mouse Glow Element */
#mouse-glow {
  position: fixed;
  width: 650px;
  height: 650px;
  /* Light radial gradient blending blue, red, and gold */
  background: radial-gradient(circle, rgba(15, 32, 67, 0.05) 0%, rgba(246, 235, 212, 0.3) 40%, rgba(197, 160, 89, 0.02) 70%, transparent 100%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  mix-blend-mode: multiply;
}

/* Preloader Screen */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s;
  visibility: visible;
  opacity: 1;
}

#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.preloader-logo-container {
  width: 90px;
  height: 100px;
  position: relative;
  animation: pulseLogo 2s infinite ease-in-out;
}

.preloader-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.preloader-logo-svg-fallback {
  width: 100%;
  height: 100%;
}

.preloader-spinner-bar {
  width: 160px;
  height: 3px;
  background-color: #f1f5f9;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.preloader-progress {
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, var(--royal-blue), var(--premium-gold), var(--crimson-red));
  border-radius: 10px;
  position: absolute;
  left: -40%;
  animation: preloaderProgress 1.5s infinite linear;
}

.preloader-text {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Layout Wrapper */
.layout-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  /* Mesh gradient using brand colors (Blue, Crimson, Gold) at specific anchors */
  background-image: 
    radial-gradient(circle at 5% 15%, rgba(15, 32, 67, 0.05) 0%, transparent 35%),
    radial-gradient(circle at 95% 25%, rgba(197, 160, 89, 0.08) 0%, transparent 30%),
    radial-gradient(circle at 50% 50%, rgba(246, 235, 212, 0.35) 0%, transparent 60%),
    radial-gradient(circle at 85% 85%, rgba(138, 24, 24, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 20% 90%, rgba(15, 32, 67, 0.03) 0%, transparent 35%);
  background-attachment: scroll;
}

/* Header & Social Media */
header {
  width: 100%;
  padding: 1.25rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 10;
}

/* Brand logo top left */
.header-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.header-logo-img {
  width: 44px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 2px 5px rgba(197, 160, 89, 0.25));
}

.header-logo-svg-fallback {
  width: 44px;
  height: 48px;
  filter: drop-shadow(0 2px 5px rgba(197, 160, 89, 0.2));
}

.header-brand-text {
  display: flex;
  flex-direction: column;
}

.header-brand-text .title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--royal-blue);
  line-height: 1.2;
}

.header-brand-text .subtitle {
  font-family: var(--font-sans);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  color: var(--premium-gold);
  text-transform: uppercase;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.follow-us-label {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--text-light);
  text-transform: uppercase;
}

.social-container {
  display: flex;
  gap: 0.75rem;
}

.social-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--glass-border);
  color: var(--royal-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.85rem;
  box-shadow: 0 2px 5px rgba(15, 32, 67, 0.04);
  transition: var(--transition-smooth);
}

.social-icon:hover {
  background: var(--royal-blue);
  border-color: var(--royal-blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(15, 32, 67, 0.15);
}

/* Main Container */
main {
  flex: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 1.5rem 2rem 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Hero Section */
.hero-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 2rem;
}

.logo-wrapper {
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Large Center Crest logo */
.brand-logo-img {
  width: 135px;
  height: 148px;
  object-fit: contain;
  filter: drop-shadow(0 4px 15px rgba(197, 160, 89, 0.3));
  transition: var(--transition-smooth);
}

.brand-logo-img:hover {
  transform: scale(1.03) rotate(1deg);
  filter: drop-shadow(0 6px 20px rgba(197, 160, 89, 0.4));
}

.brand-logo-svg {
  width: 135px;
  height: 148px;
  filter: drop-shadow(0 4px 15px rgba(197, 160, 89, 0.25));
  transition: var(--transition-smooth);
}

.brand-logo-svg:hover {
  transform: scale(1.03) rotate(1deg);
  filter: drop-shadow(0 6px 20px rgba(197, 160, 89, 0.35));
}

.logo-svg-wrapper {
  width: 135px;
  height: 148px;
}

/* Title head "SILVER HILLS" */
.main-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  /* Premium dark brand gradient text */
  background: linear-gradient(135deg, var(--royal-blue) 20%, var(--crimson-red) 55%, var(--royal-blue) 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 6px rgba(15, 32, 67, 0.06));
}

/* Subtitle under brand */
.brand-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(0.6rem, 1.1vw, 0.85rem);
  font-weight: 700;
  letter-spacing: 0.4em;
  color: var(--premium-gold);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  opacity: 0.95;
  text-shadow: 0 1px 2px rgba(197, 160, 89, 0.1);
}

.brand-subtitle-dots {
  color: var(--premium-gold);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  margin-bottom: 1.25rem;
  opacity: 0.8;
}

/* WEBSITE UNDER DEVELOPMENT badge (split colors Blue-Gold-Red) */
.under-dev-badge {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  width: 100%;
  max-width: 600px;
  justify-content: center;
}

.under-dev-line {
  flex: 1;
  height: 1px;
}

/* Left line transitions transparent to blue/gold */
.under-dev-badge .under-dev-line:first-child {
  background: linear-gradient(90deg, transparent, var(--royal-blue), var(--premium-gold));
}

/* Right line transitions gold/red to transparent */
.under-dev-badge .under-dev-line:last-child {
  background: linear-gradient(90deg, var(--premium-gold), var(--crimson-red), transparent);
}

.under-dev-text {
  font-family: var(--font-serif);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--royal-blue);
  text-transform: uppercase;
  white-space: nowrap;
}

/* BUILDING SOMETHING EXCEPTIONAL layout */
.exceptional-title {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.02em;
  max-width: 900px;
  margin-bottom: 1.25rem;
}

.exceptional-title span {
  display: block;
}

.exceptional-title .word-normal {
  color: var(--text-main);
  font-weight: 600;
}

.exceptional-title .word-gold {
  font-weight: 900;
  background: linear-gradient(135deg, var(--premium-gold) 10%, var(--gold-dark) 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 1px 3px rgba(197, 160, 89, 0.1));
}

.description {
  font-family: var(--font-sans);
  font-size: clamp(0.9rem, 1.6vw, 1.02rem);
  font-weight: 450;
  max-width: 700px;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.65;
}

/* Premium Outlined Button */
.launch-badge-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 2.5rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--royal-blue);
  border: 1px solid var(--royal-blue);
  border-radius: 50px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(15, 32, 67, 0.2);
  transition: var(--transition-smooth);
}

.launch-badge-btn:hover {
  transform: translateY(-2px);
  background: var(--crimson-red);
  border-color: var(--crimson-red);
  box-shadow: 0 6px 20px rgba(138, 24, 24, 0.25);
}

/* Button Shine Effect */
.launch-badge-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  animation: shine 5s ease-in-out infinite;
}

/* Prominent Live Countdown Timer */
.countdown-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin: 1.5rem 0 2.5rem 0;
  width: 100%;
  max-width: 620px;
}

.countdown-card {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 10px 25px rgba(15, 32, 67, 0.04);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.countdown-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--royal-blue), var(--premium-gold));
}

/* Alternate top bar colors to match branding */
.countdown-card:nth-of-type(3)::before {
  background: linear-gradient(90deg, var(--premium-gold), var(--crimson-red));
}
.countdown-card:nth-of-type(5)::before {
  background: linear-gradient(90deg, var(--crimson-red), var(--royal-blue));
}
.countdown-card:nth-of-type(7)::before {
  background: linear-gradient(90deg, var(--royal-blue), var(--premium-gold));
}

.countdown-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(15, 32, 67, 0.1);
  border-color: var(--premium-gold);
}

.countdown-num {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--royal-blue) 0%, var(--crimson-red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.countdown-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-light);
  letter-spacing: 0.1em;
}

.countdown-divider {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--premium-gold);
  line-height: 1;
  margin-bottom: 0.8rem;
  animation: blink 1.5s infinite;
}

/* Features section */
.features-section {
  width: 100%;
  margin-top: 1rem;
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.features-section-title {
  font-family: var(--font-serif);
  font-size: clamp(0.9rem, 2vw, 1.15rem);
  font-weight: 700;
  letter-spacing: 0.35em;
  color: var(--royal-blue);
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  position: relative;
  text-align: center;
}

.features-section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background-color: var(--premium-gold);
}

/* Single line horizontal flex grid for 7 features */
.features-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1050px;
  gap: 1.25rem;
  flex-wrap: nowrap;
}

.feature-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition-smooth);
}

.feature-item:hover {
  transform: translateY(-4px);
}

.feature-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--glass-border);
  color: var(--royal-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 10px rgba(15, 32, 67, 0.03);
  transition: var(--transition-smooth);
}

.feature-item:hover .feature-icon-box {
  background: var(--royal-blue);
  color: var(--white);
  border-color: var(--royal-blue);
  /* Logo color reflection shadows */
  box-shadow: -4px 0 12px rgba(15, 32, 67, 0.12), 4px 0 12px rgba(138, 24, 24, 0.12);
}

.feature-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-main);
  text-transform: uppercase;
  line-height: 1.4;
  max-width: 90px;
}

/* Glass Values Bar */
.values-bar {
  width: 100%;
  max-width: 900px;
  background: var(--white);
  border: 1px solid var(--gold-border);
  border-radius: 50px;
  padding: 1.15rem 2.5rem;
  margin-bottom: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 10px 30px rgba(15, 32, 67, 0.04);
}

.values-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: var(--transition-smooth);
}

.values-item:hover {
  transform: scale(1.02);
}

.values-item i {
  font-size: 1.1rem;
  color: var(--premium-gold);
  filter: drop-shadow(0 0 5px rgba(197, 160, 89, 0.2));
}

.values-item span {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--royal-blue);
}

.values-separator {
  width: 1px;
  height: 18px;
  background: rgba(197, 160, 89, 0.25);
}

/* Patience Statement */
.patience-text {
  font-family: var(--font-body-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 3.5rem;
  text-align: center;
  font-weight: 500;
}

/* Bottom Card Row Grid */
.bottom-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 0.9fr;
  gap: 1.75rem;
  width: 100%;
  max-width: 1050px;
  margin-bottom: 3rem;
}

/* Card base */
.bottom-card {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 32, 67, 0.03);
  border: 1px solid var(--glass-border);
  min-height: 220px;
}

/* Card 1: School Badge Card (Abstract Unique design) */
.building-image-card {
  background: linear-gradient(135deg, var(--royal-blue) 0%, #172d54 100%);
  border: 1px solid var(--royal-blue);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  color: var(--white);
  text-align: center;
  position: relative;
}

.building-image-card::before {
  content: '✦';
  font-size: 2.2rem;
  color: var(--premium-gold);
  margin-bottom: 0.5rem;
  display: block;
  animation: pulseLogo 3s infinite ease-in-out;
}

.building-image-card .card-title-bottom {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--premium-gold);
  text-transform: uppercase;
}

/* Card 2: Contact Card */
.contact-card {
  background: var(--white);
  border: 1px solid var(--gold-border);
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: var(--transition-smooth);
}

.contact-card:hover {
  border-color: var(--premium-gold);
  box-shadow: 0 12px 30px rgba(15, 32, 67, 0.08);
}

.contact-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--royal-blue);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.contact-card h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 1.5px;
  background-color: var(--premium-gold);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.contact-icon-wrapper {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(197, 160, 89, 0.06);
  border: 1px solid var(--gold-border);
  color: var(--premium-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.contact-item:hover .contact-icon-wrapper {
  background: var(--royal-blue);
  border-color: var(--royal-blue);
  color: var(--white);
  transform: scale(1.08);
}

.contact-text-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-main);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.contact-text-link:hover {
  color: var(--royal-blue);
}

/* Card 3: Coming Soon Card */
.coming-soon-card {
  background: var(--royal-blue);
  border: 1px solid var(--royal-blue);
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(15, 32, 67, 0.12);
}

.coming-soon-card h3 {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--premium-gold);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.coming-soon-card p {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.5;
  opacity: 0.95;
}

/* Footer Section */
footer {
  width: 100%;
  border-top: 1px solid rgba(15, 32, 67, 0.04);
  padding: 1.5rem 3rem;
  background: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  z-index: 3;
  font-size: 0.8rem;
  color: var(--text-light);
}

footer .copyright {
  opacity: 0.9;
}

footer .agency-credit {
  font-weight: 500;
}

footer .agency-credit a {
  color: var(--royal-blue);
  text-decoration: none;
  font-weight: 700;
  position: relative;
  transition: var(--transition-smooth);
}

footer .agency-credit a:hover {
  color: var(--premium-gold);
}

footer .agency-credit a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--royal-blue);
  transition: var(--transition-smooth);
}

footer .agency-credit a:hover::after {
  width: 100%;
}

/* Scroll Animation Reveal Classes (triggered by JS) */
.reveal-hidden {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Keyframe Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes shine {
  0% { left: -150%; }
  50% { left: 150%; }
  100% { left: 150%; }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* SINGLE VIEWPORT COMPACT MODE FOR DESKTOP (locks viewport to prevent excessive scroll) */
@media (min-width: 1025px) and (min-height: 720px) {
  body {
    overflow: hidden;
    height: 100vh;
  }
  
  .layout-wrapper {
    height: 100vh;
    overflow: hidden;
    justify-content: space-between;
  }
  
  header {
    padding: 1rem 3rem;
  }
  
  main {
    padding: 0 2rem;
    height: calc(100vh - 120px);
    justify-content: center;
    gap: 0.75rem;
  }
  
  .hero-section {
    margin-bottom: 0.5rem;
  }
  
  .logo-wrapper {
    margin-bottom: 0.5rem;
  }
  
  .brand-logo-img, .brand-logo-svg, .logo-svg-wrapper {
    width: 110px;
    height: 120px;
  }
  
  .main-heading {
    font-size: 4rem;
    margin-bottom: 0.15rem;
  }
  
  .brand-subtitle {
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
  }
  
  .brand-subtitle-dots {
    margin-bottom: 0.75rem;
  }
  
  .under-dev-badge {
    margin-bottom: 0.75rem;
  }
  
  .exceptional-title {
    font-size: 2.4rem;
    margin-bottom: 0.5rem;
  }
  
  .description {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    max-width: 650px;
  }
  
  .countdown-container {
    margin: 1rem 0;
    max-width: 550px;
    gap: 0.75rem;
  }
  
  .countdown-card {
    padding: 1rem 0.5rem;
    border-radius: 14px;
    gap: 0.2rem;
  }
  
  .countdown-num {
    font-size: 2.2rem;
  }
  
  .countdown-label {
    font-size: 0.65rem;
  }
  
  .countdown-divider {
    font-size: 1.8rem;
    margin-bottom: 0.6rem;
  }
  
  .features-section {
    margin-top: 0.5rem;
    margin-bottom: 1.75rem;
  }
  
  .features-section-title {
    margin-bottom: 1.5rem;
  }
  
  .feature-icon-box {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }
  
  .feature-label {
    font-size: 0.62rem;
  }
  
  .values-bar {
    padding: 0.85rem 2.2rem;
    margin-bottom: 1.75rem;
    border-radius: 40px;
    max-width: 820px;
  }
  
  .values-item span {
    font-size: 0.85rem;
  }
  
  .patience-text {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
  }
  
  .bottom-cards-grid {
    margin-bottom: 1rem;
    gap: 1.5rem;
    max-width: 960px;
  }
  
  .bottom-card {
    min-height: 140px;
  }
  
  .contact-card, .coming-soon-card {
    padding: 1.5rem;
  }
  
  .contact-card h3 {
    margin-bottom: 1rem;
    font-size: 1.15rem;
  }
  
  .contact-details {
    gap: 0.65rem;
  }
  
  .contact-icon-wrapper {
    width: 30px;
    height: 30px;
    font-size: 0.85rem;
  }
  
  .contact-text-link {
    font-size: 0.95rem;
  }
  
  .coming-soon-card h3 {
    font-size: 1.4rem;
  }
  
  footer {
    padding: 1rem 3rem;
  }
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .features-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem 1.5rem;
  }
  
  .feature-item {
    flex: 0 1 22%; /* 4 columns */
  }
}

@media (max-width: 992px) {
  .bottom-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .bottom-card {
    min-height: 200px;
  }
  
  .values-bar {
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.25rem;
    border-radius: 24px;
  }
  
  .values-separator {
    display: none;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  
  header {
    flex-direction: row;
    justify-content: space-between;
    padding: 1rem;
    gap: 1rem;
  }
  
  .header-brand-text .title {
    font-size: 1rem;
  }
  
  .header-brand-text .subtitle {
    font-size: 0.5rem;
    letter-spacing: 0.15em;
  }
  
  .follow-us-label {
    display: none;
  }
  
  .social-container {
    gap: 0.5rem;
  }
  
  .social-icon {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }
  
  main {
    padding-top: 1rem;
  }
  
  .main-heading {
    font-size: 2.2rem;
    letter-spacing: 0.03em;
  }
  
  .brand-subtitle {
    letter-spacing: 0.25em;
    font-size: 0.65rem;
    margin-bottom: 0.5rem;
  }
  
  .exceptional-title {
    font-size: 1.4rem;
  }
  
  .features-section-title {
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
  }
  
  .feature-item {
    flex: 0 1 30%; /* 3 columns */
  }
  
  .countdown-container {
    gap: 0.5rem;
    margin: 1.5rem 0;
  }
  
  .countdown-card {
    padding: 1rem 0.5rem;
    border-radius: 12px;
  }
  
  .countdown-num {
    font-size: 1.8rem;
  }
  
  .countdown-divider {
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
  }
  
  footer {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .feature-item {
    flex: 0 1 45%; /* 2 columns */
  }
  
  .countdown-container {
    gap: 0.35rem;
  }
  
  .countdown-card {
    padding: 0.75rem 0.35rem;
    border-radius: 10px;
  }
  
  .countdown-num {
    font-size: 1.4rem;
  }
  
  .countdown-divider {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
  }
  
  .countdown-label {
    font-size: 0.55rem;
    letter-spacing: 0.05em;
  }
  
  .under-dev-badge {
    gap: 0.75rem;
    margin-bottom: 1.25rem;
  }
  
  .under-dev-text {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
  }
}
