@charset "UTF-8";

/* ==========================================================================
   Guru City Projects - Ultra Premium Design System
   ========================================================================== */

/* ===== CSS Variables ===== */
:root {
  --color-bg: #FFFFFF;
  --color-primary: #132847;
  --color-accent: #F2810A;
  --color-surface: #E5E5E5;
  --color-text: #111111;
  --color-muted: #555555;

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Exponential Spacing Scale for Apple-like whitespace */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2.5rem;
  --space-lg: 5rem;
  --space-xl: 10rem;
  --space-xxl: 15rem;

  --container: 1400px;
  --transition-fast: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.loading {
  overflow: hidden;
}

/* ===== Typography ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

p {
  font-size: 1.125rem;
  color: var(--color-muted);
  max-width: 680px;
  margin-bottom: var(--space-sm);
}

.accent {
  color: var(--color-accent);
}

.text-accent {
  color: var(--color-accent) !important;
}

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

.bg-surface {
  background-color: var(--color-surface);
}

.bg-dark {
  background-color: var(--color-primary);
}

.text-white h2,
.text-white p,
.text-white h3 {
  color: #FFFFFF;
}

.text-white p {
  opacity: 0.8;
}

/* ===== Layout ===== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-xl) 0;
  position: relative;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

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

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 2.5rem;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
  border-radius: 4px;
}

.btn--primary {
  background-color: var(--color-accent);
  color: #FFFFFF;
}

.btn--primary:hover {
  background-color: #d9710a;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(242, 129, 10, 0.3);
}

.btn--outline {
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  background: transparent;
}

.btn--outline:hover {
  background: var(--color-primary);
  color: #FFFFFF;
}

.btn--text {
  background: transparent;
  color: #FFFFFF;
  padding: 1.25rem 0;
  position: relative;
}

.btn--text::after {
  content: '';
  position: absolute;
  bottom: 1rem;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.4);
  transition: var(--transition-fast);
}

.btn--text:hover::after {
  background-color: #FFFFFF;
}

.btn--full {
  width: 100%;
}

/* ===== Loader ===== */
.loader {
  position: fixed;
  inset: 0;
  background: var(--color-bg);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.loader__text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 0.2em;
  margin-bottom: 2rem;
}

.loader__progress {
  width: 200px;
  height: 2px;
  background: var(--color-surface);
  position: relative;
  overflow: hidden;
}

.loader__progress::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--color-accent);
  transition: width 0.1s linear;
}

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2rem 0;
  z-index: 1000;
  transition: var(--transition-fast);
}

.nav.scrolled {
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

.nav.scrolled .nav__link {
  color: var(--color-primary);
}

.nav__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo img {
  height: 40px;
  transition: var(--transition-fast);
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.nav__links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav__link {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: #FFFFFF;
  transition: var(--transition-fast);
}

.nav__link:hover {
  color: var(--color-accent) !important;
}

/* ===== WIDGETS ===== */
.whatsapp-widget {
  background-color: #26D367;
  position: fixed;
  bottom: 20px;
  left: 20px;
  height: 50px;
  width: 50px;
  display: flex;
  border-radius: 7px;
  padding: 8px;
}

body::-webkit-scrollbar {
  display: none;
}


/* ===== Hero Section ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 800px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero__media img {
  width: 100%;
  height: 120%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(19, 40, 71, 0.6) 0%, rgba(19, 40, 71, 0.8) 100%);
}

.hero__container {
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  font-family: var(--font-heading);
  color: var(--color-accent);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero__title {
  color: #FFFFFF;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 2.5rem;
}

.line {
  overflow: hidden;
}

.hero__subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.1rem, 1.5vw, 1.5rem);
  font-weight: 300;
  max-width: 600px;
  margin-bottom: 3rem;
}

.hero__ctas {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.hero__scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: #FFFFFF;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  opacity: 0.6;
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  animation: scrollDown 2s infinite ease-in-out;
}

@keyframes scrollDown {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(100%);
  }
}

/* ===== Shared Section Headers ===== */
.section__eyebrow {
  display: block;
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.section__title {
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  margin-bottom: 2rem;
}

.section__subtitle {
  font-size: 1.25rem;
  margin: 0 auto 4rem;
}

/* ===== Image Masks (GSAP Target) ===== */
.image-mask {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.image-mask img {
  width: 100%;
  height: 120%;
  /* For parallax */
  object-fit: cover;
  transform-origin: top;
}

/* ===== About Section ===== */
.about__text-wrap {
  padding-right: var(--space-md);
}

.about__desc p {
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid var(--color-surface);
}

.stat__num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 300;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat__label {
  font-size: 0.85rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== Why Invest ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.benefit-card {
  background: #FFFFFF;
  padding: 4rem 3rem;
  border-top: 2px solid transparent;
  transition: var(--transition-slow);
}

.benefit-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

.benefit-card__icon {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-accent);
  margin-bottom: 2rem;
}

/* ===== Projects Section ===== */
.project-showcase {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--space-lg);
  align-items: center;
  margin-top: 4rem;
}

.project-showcase__img {
  aspect-ratio: 4/3;
}

.tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(242, 129, 10, 0.1);
  color: var(--color-accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.feature-list {
  list-style: none;
  margin: 2rem 0;
}

.feature-list li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.feature-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-accent);
}

/* ===== Infrastructure Timeline ===== */
.timeline {
  max-width: 800px;
  margin: 4rem auto 0;
}

.timeline__item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  padding: 3rem 0;
  border-top: 1px solid var(--color-surface);
}

.timeline__year {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-accent);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

/* ===== Founder ===== */

.founder_card_container {
  width: 100%;
  padding: 0 75px;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 30px;
}

.founder_container {
  width: calc(100vw - 150px);
  overflow: hidden;
  height: 60vh;
  display: flex;
  border-radius: 20px;
  box-shadow: 0px 4px 15px -3px;
}

.founder_container>.founder_image {
  background-color: hsl(0, 0%, 70%);
  width: 40%;
  overflow: hidden;
}

.founder_container>.founder_image>img {
  width: 100%;
}

.founder_container>.founder_information {
  background-color: hsl(0, 0%, 80%);
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 50px;
}

.founder_container>.founder_information>h3 {
  font-size: 2rem;
  margin-bottom: 0.25rem;
}

.founder_container>.founder_information>span {
  margin-bottom: 1rem;
}

/* ===== Book Visit / Form ===== */
.premium-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.contact-item>strong {
  color: #fff;
  font-size: 1.3rem;
}

.contact-item>p {
  color: #bbb;
}

.premium-form input,
.premium-form select,
.premium-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem;
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: var(--transition-fast);
}

.premium-form input:focus,
.premium-form select:focus,
.premium-form textarea:focus {
  border-color: var(--color-accent);
  background: rgba(255, 255, 255, 0.1);
}

.premium-form select option {
  background: var(--color-primary);
  color: #FFFFFF;
}

/* ===== Footer ===== */
.footer {
  background: var(--color-text);
  color: #FFFFFF;
  padding: 6rem 0 2rem;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer__brand img {
  height: 100px;
  margin-bottom: 1.5rem;
}

.footer__links h4 {
  color: var(--color-surface);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.footer__links a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  margin-bottom: 0.8rem;
  transition: var(--transition-fast);
}

.footer__links a:hover {
  color: var(--color-accent);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ===== Utilities & Helpers ===== */
.mt-4 {
  margin-top: 2rem;
}

.fade-up {
  opacity: 0;
}

/* Starting state for GSAP */

/* Responsive */
@media (max-width: 1024px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .section {
    padding: var(--space-lg) 0;
  }

  .project-showcase {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav__right {
    display: none;
  }

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

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

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

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

  .timeline__item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}