/* ===== VALMO PARTNERS - MAIN STYLESHEET ===== */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Nunito:wght@300;400;600;700;800&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --primary: #F97316;
  --primary-dark: #c45c0a;
  --secondary: #1E3A5F;
  --accent: #FB923C;
  --light: #F8F9FA;
  --white: #ffffff;
  --dark: #0f1923;
  --gray: #6c757d;
  --gray-light: #e9ecef;
  --success: #2dc653;
  --shadow: 0 8px 32px rgba(30, 53, 87, 0.13);
  --shadow-lg: 0 20px 60px rgba(30, 53, 87, 0.18);
  --radius: 14px;
  --radius-sm: 8px;
  --transition: all 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Nunito', sans-serif;
  color: var(--secondary);
  background: var(--white);
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Rajdhani', sans-serif; font-weight: 700; line-height: 1.15; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
p { line-height: 1.75; color: #444e5c; }

/* ===== UTILITY ===== */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-title {
  text-align: center;
  margin-bottom: 56px;
}
.section-title h2 { color: var(--secondary); margin-bottom: 12px; }
.section-title p { color: var(--gray); max-width: 560px; margin: 0 auto; }
.section-title .title-line {
  width: 64px; height: 4px;
  background: var(--primary);
  border-radius: 2px;
  margin: 16px auto 0;
}
.btn {
  display: inline-block;
  padding: 13px 34px;
  border-radius: 50px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230,57,70,0.28);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 20px rgba(30,53,87,0.09);
  backdrop-filter: blur(12px);
  transition: var(--transition);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.navbar-logo {
  display: flex; align-items: center; gap: 12px;
}
.navbar-logo img { height: 40px; object-fit: contain; }
.navbar-logo span {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.3rem; font-weight: 700;
  color: var(--secondary);
}
.navbar-logo span b { color: var(--primary); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-weight: 600; font-size: 0.97rem;
  color: var(--secondary);
  position: relative; padding-bottom: 3px;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--primary);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { width: 100%; }
.nav-links .btn { margin-left: 8px; }
.hamburger {
  display: none; flex-direction: column;
  cursor: pointer; gap: 5px;
}
.hamburger span {
  width: 26px; height: 2.5px;
  background: var(--secondary); border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO SLIDER ===== */
.hero {
  position: relative;
  margin-top: 70px;
  height: 92vh;
  min-height: 540px;
  overflow: hidden;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex; align-items: center;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(29,53,87,0.82) 0%, rgba(230,57,70,0.35) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  color: var(--white); max-width: 680px;
}
.hero-badge {
  display: inline-block;
  background: var(--primary);
  color: white; font-size: 0.8rem;
  font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 18px; border-radius: 50px;
  margin-bottom: 18px;
}
.hero-content h1 { color: white; margin-bottom: 18px; text-shadow: 0 2px 12px rgba(0,0,0,0.18); }
.hero-content p { font-size: 1.1rem; color: rgba(255,255,255,0.88); margin-bottom: 32px; max-width: 520px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-dots {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 5;
}
.hero-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.45); cursor: pointer;
  transition: all 0.3s; border: none;
}
.hero-dot.active { background: var(--primary); transform: scale(1.3); }
.hero-arrows {
  position: absolute; top: 50%; z-index: 5;
  width: 100%; display: flex;
  justify-content: space-between; padding: 0 20px;
  transform: translateY(-50%);
  pointer-events: none;
}
.hero-arrow {
  pointer-events: all;
  background: rgba(255,255,255,0.18);
  border: 2px solid rgba(255,255,255,0.5);
  color: white; width: 48px; height: 48px;
  border-radius: 50%; cursor: pointer;
  font-size: 1.2rem; transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
}
.hero-arrow:hover { background: var(--primary); border-color: var(--primary); }

/* ===== APPLY FORM ===== */
.apply-section {
  background: linear-gradient(135deg, var(--secondary) 0%, #0f1923 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.apply-section::before {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(230,57,70,0.08);
  pointer-events: none;
}
.apply-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.apply-info h2 { color: white; margin-bottom: 16px; }
.apply-info p { color: rgba(255,255,255,0.7); margin-bottom: 28px; }
.apply-perks { display: flex; flex-direction: column; gap: 14px; }
.perk-item {
  display: flex; align-items: center; gap: 14px;
  color: rgba(255,255,255,0.85);
}
.perk-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(230,57,70,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.apply-form-box {
  background: white;
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
}
.apply-form-box h3 {
  color: var(--secondary); margin-bottom: 6px;
}
.apply-form-box > p { margin-bottom: 28px; font-size: 0.93rem; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 0.87rem;
  font-weight: 700; color: var(--secondary);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  color: var(--secondary);
  transition: border-color 0.25s;
  background: #fafbfc;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: white;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem; font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.5px;
  margin-top: 8px;
}
.form-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230,57,70,0.3);
}

/* ===== APPLY GALLERY ===== */
.apply-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 10px;
}
.apply-gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.apply-gallery-item.tall {
  grid-row: span 2;
  aspect-ratio: unset;
}
.apply-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.apply-gallery-item:hover img { transform: scale(1.07); }
.apply-gallery-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(30,58,95,0.85) 0%, transparent 100%);
  color: white; font-size: 0.82rem; font-weight: 700;
  padding: 18px 12px 10px;
}

/* ===== ABOUT SECTION ===== */
.about-section { background: var(--light); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.about-image-wrap { position: relative; }
.about-image-wrap img {
  width: 100%; border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute; bottom: -18px; right: -18px;
  background: var(--primary);
  color: white; padding: 18px 24px;
  border-radius: var(--radius-sm);
  text-align: center;
  box-shadow: 0 8px 24px rgba(230,57,70,0.28);
}
.about-badge strong { display: block; font-size: 2rem; font-family: 'Rajdhani', sans-serif; }
.about-badge span { font-size: 0.78rem; opacity: 0.9; }
.about-text h2 { color: var(--secondary); margin-bottom: 16px; }
.about-text p { margin-bottom: 18px; }
.about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin: 28px 0;
}
.stat-box {
  text-align: center; padding: 18px 12px;
  background: white; border-radius: var(--radius-sm);
  box-shadow: 0 4px 14px rgba(30,53,87,0.08);
}
.stat-box strong {
  display: block; font-size: 1.8rem;
  font-family: 'Rajdhani', sans-serif;
  color: var(--primary);
}
.stat-box span { font-size: 0.82rem; color: var(--gray); font-weight: 600; }

/* ===== GALLERY ===== */
.gallery-section { background: white; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; 
  /*height: 100%;*/
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(29,53,87,0.7) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.35s;
  display: flex; align-items: flex-end;
  padding: 18px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: white; font-weight: 700; font-size: 0.95rem; }
.gallery-item.large { grid-column: span 2; }

/* ===== FRANCHISE RULES ===== */
.franchise-section { background: var(--light); }
.rules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.rule-card {
  background: white; padding: 32px 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 4px solid var(--primary);
  transition: var(--transition);
}
.rule-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.rule-icon {
  width: 54px; height: 54px;
  background: rgba(230,57,70,0.09);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 18px;
}
.rule-card h3 { color: var(--secondary); margin-bottom: 10px; }
.rule-card p { font-size: 0.92rem; }

/* ===== WHY CHOOSE US ===== */
.why-section { background: white; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.why-card {
  text-align: center; padding: 36px 20px;
  border-radius: var(--radius);
  border: 2px solid var(--gray-light);
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  opacity: 0; transition: opacity 0.3s;
}
.why-card:hover::before { opacity: 1; }
.why-card:hover h3, .why-card:hover p { color: white; }
.why-card:hover .why-icon { background: rgba(255,255,255,0.18); color: white; }
.why-icon {
  width: 64px; height: 64px;
  background: rgba(230,57,70,0.09);
  border-radius: 50%; margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  position: relative; z-index: 1;
  transition: var(--transition);
}
.why-card h3, .why-card p { position: relative; z-index: 1; transition: color 0.3s; }
.why-card h3 { color: var(--secondary); margin-bottom: 8px; }
.why-card p { font-size: 0.88rem; }

/* ===== PROCESS STEPS ===== */
.process-section { background: var(--secondary); padding: 90px 0; }
.process-section .section-title h2 { color: white; }
.process-section .section-title p { color: rgba(255,255,255,0.65); }
.process-steps {
  display: flex; gap: 0;
  align-items: center;
  justify-content: center;
}
.step-item { text-align: center; flex: 1; position: relative; }
.step-item:not(:last-child)::after {
  content: '';
  position: absolute; top: 32px; right: 0;
  width: 100%; height: 2px;
  background: rgba(255,255,255,0.15);
  transform: translateX(50%);
  z-index: 0;
}
.step-circle {
  width: 64px; height: 64px;
  border-radius: 50%; margin: 0 auto 16px;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.4rem; font-weight: 700;
  color: white;
  position: relative; z-index: 1;
  transition: var(--transition);
}
.step-item:hover .step-circle {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.1);
}
.step-item h4 { color: white; font-size: 1rem; margin-bottom: 6px; }
.step-item p { color: rgba(255,255,255,0.6); font-size: 0.85rem; }

/* ===== CTA BANNER ===== */
.cta-section {
  background: linear-gradient(120deg, var(--primary) 0%, #c0392b 100%);
  padding: 70px 0; text-align: center;
}
.cta-section h2 { color: white; margin-bottom: 14px; }
.cta-section p { color: rgba(255,255,255,0.85); margin-bottom: 32px; font-size: 1.1rem; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); padding: 64px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px; padding-bottom: 48px;
}
.footer-brand img { height: 38px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.9rem; line-height: 1.7; margin-bottom: 22px; }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 38px; height: 38px; border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1rem; transition: var(--transition);
}
.social-link:hover { background: var(--primary); }
.footer-col h4 {
  color: white; margin-bottom: 20px;
  font-size: 1rem; letter-spacing: 0.5px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(230,57,70,0.4);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.55); font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--primary); }
.footer-contact-item {
  display: flex; gap: 12px; margin-bottom: 14px;
  color: rgba(255,255,255,0.55); font-size: 0.9rem;
}
.footer-contact-item span:first-child { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0; display: flex;
  justify-content: space-between; align-items: center;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.85rem; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.35); font-size: 0.85rem; transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--primary); }

/* ===== INNER PAGES (T&C, Disclaimer) ===== */
.page-hero {
  margin-top: 70px;
  background: linear-gradient(135deg, var(--secondary) 0%, #0f1923 100%);
  padding: 80px 0;
  text-align: center;
}
.page-hero h1 { color: white; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1.05rem; }
.page-hero .breadcrumb {
  margin-top: 16px;
  display: flex; justify-content: center; gap: 8px;
  font-size: 0.88rem; color: rgba(255,255,255,0.45);
}
.page-hero .breadcrumb a { color: var(--accent); }
.page-content { padding: 70px 0; }
.page-content .content-box {
  max-width: 860px; margin: 0 auto;
  background: white; padding: 50px 56px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.content-section { margin-bottom: 38px; }
.content-section h3 {
  color: var(--secondary); margin-bottom: 12px;
  padding-left: 14px;
  border-left: 4px solid var(--primary);
}
.content-section p { margin-bottom: 12px; font-size: 0.96rem; }
.content-section ul { padding-left: 20px; }
.content-section ul li {
  margin-bottom: 8px; font-size: 0.95rem;
  color: #444e5c; line-height: 1.65;
  list-style: disc;
}
.last-updated {
  background: var(--light); border-radius: var(--radius-sm);
  padding: 14px 20px; margin-bottom: 36px;
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; color: var(--gray);
}

/* ===== TOAST ===== */
.toast {
  position: fixed; bottom: 32px; right: 32px;
  background: var(--success); color: white;
  padding: 16px 28px; border-radius: var(--radius-sm);
  font-weight: 700; box-shadow: var(--shadow-lg);
  transform: translateY(80px); opacity: 0;
  transition: all 0.4s; z-index: 9999;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 70px; left: 0; right: 0;
    background: white; padding: 24px;
    gap: 18px; box-shadow: var(--shadow);
  }
  .hamburger { display: flex; }
  .apply-inner, .about-inner { grid-template-columns: 1fr; gap: 36px; }
  .about-badge { right: 0; bottom: -10px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.large { grid-column: span 2; }
  .rules-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { flex-direction: column; gap: 20px; }
  .step-item:not(:last-child)::after { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .hero { height: 80vh; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .page-content .content-box { padding: 28px 20px; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.large { grid-column: span 1; }
  .why-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
}