/* KRISH P EXPORTS PVT LTD - Website Styles */


  :root {
    --gold: #C9A84C;
    --gold-light: #E8C96A;
    --gold-pale: #F5E6B8;
    --gold-dim: #7A6130;
    --black: #080808;
    --black-rich: #0D0D0D;
    --black-mid: #141414;
    --black-soft: #1C1C1C;
    --white: #F8F4EC;
    --text-dim: #8A8A8A;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--white);
    font-family: 'Rajdhani', 'Trebuchet MS', 'Arial', sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }
  * { -webkit-box-sizing: border-box; box-sizing: border-box; }

  /* CUSTOM CURSOR */
  .cursor {
    width: 10px; height: 10px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    top: -20px; left: -20px;
    pointer-events: none; z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, width 0.2s, height 0.2s;
    opacity: 1;
    mix-blend-mode: normal;
  }
  .cursor-ring {
    width: 34px; height: 34px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    position: fixed;
    top: -20px; left: -20px;
    pointer-events: none; z-index: 9998;
    transform: translate(-50%, -50%);
    transition: left 0.1s ease, top 0.1s ease, width 0.2s, height 0.2s;
    opacity: 0.7;
  }

  /* SCROLLBAR */
  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: var(--black); }
  ::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 2px; }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    display: flex; align-items: center; justify-content: space-between;
    padding: 24px 60px;
    background: linear-gradient(to bottom, rgba(8,8,8,0.95), transparent);
    transition: all 0.4s;
  }
  nav.scrolled {
    padding: 16px 60px;
    background: rgba(8,8,8,0.97);
    border-bottom: 1px solid rgba(201,168,76,0.15);
    backdrop-filter: blur(20px);
  }
  .nav-logo {
    font-family: 'Cinzel', 'Palatino Linotype', 'Book Antiqua', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 4px;
    text-decoration: none;
  }
  .nav-logo span { color: var(--white); }
  .nav-links { display: flex; gap: 40px; align-items: center; }
  .nav-links a {
    font-family: 'Rajdhani', 'Trebuchet MS', 'Arial', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
  }
  .nav-links a::after {
    content: '';
    position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.3s;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-links a:hover::after { width: 100%; }
  .nav-cta {
    padding: 10px 28px;
    border: 1px solid var(--gold);
    color: var(--gold) !important;
    font-size: 12px !important;
    letter-spacing: 3px !important;
    transition: all 0.3s !important;
  }
  .nav-cta:hover { background: var(--gold); color: var(--black) !important; }
  .nav-cta::after { display: none !important; }

  /* PAGE SECTIONS */
  .page { display: none; }
  .page.active { display: block; }

  /* ===== HERO ===== */
  #home {
    display: block;
  }

  .hero {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
    background: var(--black);
  }

  .hero-bg {
    position: absolute; inset: 0;
    background-image: url("images/hero_bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .hero-bg::after {
    content: '';
    position: absolute; inset: 0;
    background:
      linear-gradient(to bottom, rgba(8,8,8,0.72) 0%, rgba(8,8,8,0.55) 50%, rgba(8,8,8,0.85) 100%),
      radial-gradient(ellipse 80% 60% at 50% 50%, rgba(201,168,76,0.08) 0%, transparent 70%);
  }

  .hero-grid {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
  }

  .hero-lines {
    position: absolute; inset: 0; overflow: hidden;
  }
  .hero-lines::before, .hero-lines::after {
    content: '';
    position: absolute;
    width: 1px; height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.3), transparent);
    animation: linePulse 4s ease-in-out infinite;
  }
  .hero-lines::before { left: 25%; animation-delay: 0s; }
  .hero-lines::after { right: 25%; animation-delay: 2s; }

  @keyframes linePulse {
    0%, 100% { opacity: 0; transform: translateY(-100%); }
    50% { opacity: 1; transform: translateY(100%); }
  }

  .hero-content {
    text-align: center; z-index: 2; padding: 0 20px;
    animation: heroFadeIn 1.4s ease-out forwards;
  }

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

  .hero-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 30px;
    display: flex; align-items: center; justify-content: center; gap: 20px;
  }
  .hero-eyebrow::before, .hero-eyebrow::after {
    content: '';
    width: 50px; height: 1px;
    background: linear-gradient(to right, transparent, var(--gold));
  }
  .hero-eyebrow::after { background: linear-gradient(to left, transparent, var(--gold)); }

  .hero-title {
    font-family: 'Cinzel', 'Palatino Linotype', 'Book Antiqua', serif;
    font-size: clamp(52px, 8vw, 110px);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -2px;
    margin-bottom: 10px;
  }
  .hero-title .line1 { display: block; color: var(--white); }
  .hero-title .line2 {
    display: block;
    background: linear-gradient(135deg, var(--gold-dim), var(--gold), var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hero-subtitle {
    font-family: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 300;
    font-style: italic;
    color: var(--text-dim);
    margin: 28px auto;
    max-width: 520px;
    line-height: 1.7;
  }

  .hero-cta-group {
    display: flex; gap: 20px; justify-content: center; margin-top: 50px;
  }
  .btn-primary {
    padding: 16px 48px;
    background: linear-gradient(135deg, var(--gold-dim), var(--gold));
    color: var(--black);
    font-family: 'Rajdhani', 'Trebuchet MS', 'Arial', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    border: none; cursor: none;
    position: relative; overflow: hidden;
    transition: all 0.3s;
    text-decoration: none; display: inline-block;
  }
  .btn-primary::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    opacity: 0; transition: opacity 0.3s;
  }
  .btn-primary:hover::before { opacity: 1; }
  .btn-primary span { position: relative; z-index: 1; }

  .btn-ghost {
    padding: 15px 48px;
    background: transparent;
    color: var(--gold);
    font-family: 'Rajdhani', 'Trebuchet MS', 'Arial', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    border: 1px solid rgba(201,168,76,0.4);
    transition: all 0.3s;
    text-decoration: none; display: inline-block;
  }
  .btn-ghost:hover { border-color: var(--gold); background: rgba(201,168,76,0.07); }

  .hero-scroll {
    position: absolute; bottom: 40px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    color: var(--text-dim); font-size: 10px; letter-spacing: 4px;
    text-transform: uppercase;
  }
  .hero-scroll-line {
    width: 1px; height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollDown 2s ease-in-out infinite;
  }
  @keyframes scrollDown {
    0%, 100% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
  }



  /* ===== SECTION BASE ===== */
  section {
    padding: 120px 60px;
  }
  .section-eyebrow {
    font-size: 10px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    display: flex; align-items: center; gap: 16px;
  }
  .section-eyebrow::before {
    content: '';
    width: 30px; height: 1px;
    background: var(--gold);
  }
  .section-title {
    font-family: 'Cinzel', 'Palatino Linotype', 'Book Antiqua', serif;
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 24px;
  }
  .gold-text {
    background: linear-gradient(135deg, #7A6130, #E8C96A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline;
  }

  /* ===== VISION & MISSION ===== */
  .vision-mission {
    background: var(--black-rich);
    position: relative; overflow: hidden;
  }
  .vision-mission::before {
    content: '';
    position: absolute; top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 70%);
    pointer-events: none;
  }
  .vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin-top: 70px;
  }
  .vm-card {
    background: var(--black-mid);
    padding: 60px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s;
  }
  .vm-card:hover { transform: translateY(-4px); }
  .vm-card::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(to right, var(--gold-dim), var(--gold-light));
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.5s;
  }
  .vm-card:hover::before { transform: scaleX(1); }
  .vm-icon {
    font-size: 48px;
    margin-bottom: 28px;
    display: block;
  }
  .vm-card h3 {
    font-family: 'Cinzel', 'Palatino Linotype', 'Book Antiqua', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 20px;
    letter-spacing: 2px;
  }
  .vm-card p {
    font-family: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.9;
    color: #A0A0A0;
    font-weight: 300;
  }
  .vm-card .vm-bg-text {
    position: absolute;
    bottom: -20px; right: -10px;
    font-family: 'Cinzel', 'Palatino Linotype', 'Book Antiqua', serif;
    font-size: 100px;
    font-weight: 700;
    color: rgba(201,168,76,0.03);
    pointer-events: none;
    user-select: none;
  }

  /* ===== LEADERSHIP ===== */
  .leadership {
    background: var(--black);
    text-align: center;
  }
  .leadership-intro {
    max-width: 600px;
    margin: 0 auto 80px;
  }
  .leadership-intro p {
    font-family: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
    font-size: 19px;
    color: var(--text-dim);
    line-height: 1.8;
    font-style: italic;
  }
  .leaders-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
  }
  .leader-card {
    background: var(--black-mid);
    border: 1px solid rgba(201,168,76,0.1);
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
  }
  .leader-card:hover {
    border-color: rgba(201,168,76,0.35);
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 40px rgba(201,168,76,0.06);
  }
  .leader-avatar {
    width: 110px; height: 110px;
    margin: 0 auto 28px;
    border-radius: 50%;
    border: 2px solid rgba(201,168,76,0.3);
    background: var(--black-soft);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Cinzel', 'Palatino Linotype', 'Book Antiqua', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--gold);
    position: relative;
  }
  .leader-avatar::after {
    content: '';
    position: absolute; inset: -6px;
    border-radius: 50%;
    border: 1px solid rgba(201,168,76,0.1);
  }
  .leader-badge {
    display: inline-block;
    padding: 5px 18px;
    border: 1px solid var(--gold-dim);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
  }
  .leader-name {
    font-family: 'Cinzel', 'Palatino Linotype', 'Book Antiqua', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 14px;
    letter-spacing: 1px;
  }
  .leader-bio {
    font-family: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
    font-size: 16px;
    color: var(--text-dim);
    line-height: 1.8;
  }
  .leader-decor {
    position: absolute; bottom: 0; right: 0;
    width: 80px; height: 80px;
    border-top: 1px solid rgba(201,168,76,0.08);
    border-left: 1px solid rgba(201,168,76,0.08);
    pointer-events: none;
  }

  /* ===== BUSINESSES ===== */
  .businesses {
    background: var(--black-rich);
    position: relative;
  }
  .businesses::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
  }
  .biz-intro {
    max-width: 600px;
    margin-bottom: 80px;
  }
  .biz-intro p {
    font-family: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    color: var(--text-dim);
    line-height: 1.8;
    margin-top: 20px;
  }
  .biz-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
  }
  .biz-card {
    background: var(--black-mid);
    padding: 50px 36px;
    position: relative; overflow: hidden;
    transition: all 0.4s;
  
  }
  .biz-card:hover {
    background: var(--black-soft);
    transform: translateY(-6px);
  }
  .biz-card::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--gold-dim), var(--gold-light));
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.4s;
  }
  .biz-card:hover::after { transform: scaleX(1); }
  .biz-number {
    font-family: 'Cinzel', 'Palatino Linotype', 'Book Antiqua', serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--gold-dim);
    margin-bottom: 28px;
    display: block;
  }
  .biz-icon {
    font-size: 40px;
    margin-bottom: 22px;
    display: block;
  }
  .biz-card h3 {
    font-family: 'Cinzel', 'Palatino Linotype', 'Book Antiqua', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 16px;
    letter-spacing: 2px;
  }
  .biz-card p {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.8;
    font-family: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
    font-size: 16px;
  }
  .biz-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-dim);
    transition: all 0.3s;
  }
  .biz-card:hover .biz-arrow { color: var(--gold); gap: 14px; }

  /* ===== ABOUT STRIP ===== */
  .about-strip {
    padding: 80px 60px;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    border-top: 1px solid rgba(201,168,76,0.08);
  }
  .about-strip-left {
    flex: 1;
  }
  .about-strip-left h2 {
    font-family: 'Cinzel', 'Palatino Linotype', 'Book Antiqua', serif;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.3;
    margin-bottom: 24px;
  }
  .about-strip-left p {
    font-family: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    color: var(--text-dim);
    line-height: 1.9;
    max-width: 520px;
  }
  .about-strip-right { flex-shrink: 0; }

  /* ===== FOOTER ===== */
  footer {
    background: var(--black-mid);
    border-top: 1px solid rgba(201,168,76,0.12);
    padding: 80px 60px 40px;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
  }
  .footer-brand .nav-logo { font-size: 24px; display: block; margin-bottom: 20px; }
  .footer-brand p {
    font-family: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
    font-size: 16px;
    color: var(--text-dim);
    line-height: 1.8;
    max-width: 280px;
  }
  .footer-col h4 {
    font-family: 'Cinzel', 'Palatino Linotype', 'Book Antiqua', serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 24px;
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li {
    margin-bottom: 12px;
  }
  .footer-col ul li a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    transition: color 0.3s;
  
  }
  .footer-col ul li a:hover { color: var(--gold); }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-dim);
    letter-spacing: 2px;
  }

  /* ===== CAREERS PAGE ===== */
  .careers-hero {
    min-height: 50vh;
    display: flex; align-items: center; justify-content: center;
    background: var(--black);
    position: relative; overflow: hidden;
    text-align: center;
    padding: 160px 60px 80px;
  }
  .careers-hero-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(201,168,76,0.05) 0%, transparent 70%);
  }
  .careers-hero h1 {
    font-family: 'Cinzel', 'Palatino Linotype', 'Book Antiqua', serif;
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 700;
    position: relative;
  }
  .careers-hero p {
    font-family: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
    font-size: 20px;
    color: var(--text-dim);
    font-style: italic;
    margin-top: 20px;
    position: relative;
  }

  .jobs-section {
    padding: 80px 60px 120px;
    background: var(--black-rich);
  }
  .jobs-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 60px;
  }
  .jobs-header h2 {
    font-family: 'Cinzel', 'Palatino Linotype', 'Book Antiqua', serif;
    font-size: 32px;
    font-weight: 600;
  }
  .jobs-filter {
    display: flex; gap: 12px;
  }
  .filter-btn {
    padding: 8px 22px;
    background: transparent;
    border: 1px solid rgba(201,168,76,0.2);
    color: var(--text-dim);
    font-family: 'Rajdhani', 'Trebuchet MS', 'Arial', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s;
  }
  .filter-btn.active, .filter-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201,168,76,0.05);
  }

  .job-listing {
    border: 1px solid rgba(201,168,76,0.1);
    padding: 36px 40px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    transition: all 0.3s;
    background: var(--black-mid);
  
  }
  .job-listing:hover {
    border-color: rgba(201,168,76,0.35);
    background: var(--black-soft);
    transform: translateX(6px);
  }
  .job-info { flex: 1; }
  .job-dept {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
  }
  .job-title {
    font-family: 'Cinzel', 'Palatino Linotype', 'Book Antiqua', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
  }
  .job-tags { display: flex; gap: 10px; flex-wrap: wrap; }
  .job-tag {
    padding: 4px 14px;
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 11px;
    letter-spacing: 1px;
    color: var(--text-dim);
  }
  .job-apply {
    padding: 12px 32px;
    background: transparent;
    border: 1px solid var(--gold-dim);
    color: var(--gold);
    font-family: 'Rajdhani', 'Trebuchet MS', 'Arial', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.3s;
    white-space: nowrap;
  }
  .job-apply:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }

  /* APPLICATION FORM */
  .apply-section {
    padding: 100px 60px;
    background: var(--black);
    max-width: 800px;
    margin: 0 auto;
  }
  .apply-section h2 {
    font-family: 'Cinzel', 'Palatino Linotype', 'Book Antiqua', serif;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 12px;
  }
  .apply-section .subtitle {
    font-family: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    color: var(--text-dim);
    font-style: italic;
    margin-bottom: 60px;
  }
  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .form-full { grid-column: 1 / -1; }
  .form-group { display: flex; flex-direction: column; gap: 10px; }
  .form-group label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-dim);
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    background: var(--black-soft);
    border: 1px solid rgba(201,168,76,0.15);
    color: var(--white);
    font-family: 'Rajdhani', 'Trebuchet MS', 'Arial', sans-serif;
    font-size: 15px;
    padding: 16px 20px;
    outline: none;
    transition: border-color 0.3s;
  
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus { border-color: var(--gold); }
  .form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23C9A84C' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 20px center; }
  .form-group textarea { resize: vertical; min-height: 140px; }
  .form-submit {
    margin-top: 40px;
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, var(--gold-dim), var(--gold));
    color: var(--black);
    font-family: 'Rajdhani', 'Trebuchet MS', 'Arial', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    border: none; transition: all 0.3s;
    position: relative; overflow: hidden;
  }
  .form-submit:hover { background: linear-gradient(135deg, var(--gold), var(--gold-light)); }

  /* SUCCESS MESSAGE */
  .success-msg {
    display: none;
    text-align: center;
    padding: 60px;
    border: 1px solid rgba(201,168,76,0.3);
    background: var(--black-soft);
    margin-top: 30px;
  }
  .success-msg.show { display: block; }
  .success-msg .check {
    font-size: 48px; margin-bottom: 20px; display: block;
  }
  .success-msg h3 {
    font-family: 'Cinzel', 'Palatino Linotype', 'Book Antiqua', serif; font-size: 24px; color: var(--gold);
    margin-bottom: 12px;
  }
  .success-msg p { color: var(--text-dim); font-size: 16px; }

  /* DIVIDER */
  .gold-divider {
    width: 60px; height: 1px;
    background: linear-gradient(to right, var(--gold-dim), var(--gold));
    margin: 30px 0;
  }

  /* REVEAL ANIMATIONS */
  .reveal {
    opacity: 1;
    transform: translateY(0);
  }


  /* Particles */
  #particles {
    position: absolute; inset: 0; pointer-events: none; z-index: 1;
    overflow: hidden;
  }
  .particle {
    position: absolute;
    width: 2px; height: 2px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: float linear infinite;
  }
  @keyframes float {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { opacity: 0; transform: translateY(-100px) scale(1); }
  }

  @media (max-width: 900px) {
    nav { padding: 20px 24px; }
    nav.scrolled { padding: 14px 24px; }
    .nav-links { display: none; }
    section { padding: 80px 24px; }
    .vm-grid, .leaders-grid { grid-template-columns: 1fr; }
    .biz-grid { grid-template-columns: repeat(2,1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
    .about-strip { flex-direction: column; text-align: center; padding: 60px 24px; }
    .jobs-section { padding: 60px 24px; }
    .jobs-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    .apply-section { padding: 60px 24px; }
    .form-grid { grid-template-columns: 1fr; }
    .job-listing { flex-direction: column; align-items: flex-start; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  }

  /* ===== BUSINESS PAGES ===== */
  .biz-page-hero {
    min-height: 90vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    padding: 140px 40px 80px;
    position: relative;
  }
  .biz-hero-content { position: relative; z-index: 2; max-width: 700px; }
  .biz-page-logo {
    width: 180px; height: 180px;
    object-fit: contain;
    margin: 24px auto 30px;
    display: block;
    filter: drop-shadow(0 0 30px rgba(201,168,76,0.2));
    animation: logoPulse 3s ease-in-out infinite;
  }
  @keyframes logoPulse {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(201,168,76,0.15)); }
    50%       { filter: drop-shadow(0 0 40px rgba(201,168,76,0.35)); }
  }
  .biz-page-title {
    font-family: 'Cinzel', 'Palatino Linotype', 'Book Antiqua', serif;
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 700;
    letter-spacing: 4px;
    line-height: 1.05;
    margin-bottom: 20px;
  }
  .biz-page-sub {
    font-family: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
    font-size: clamp(16px, 2vw, 20px);
    font-style: italic;
    color: var(--text-dim);
    line-height: 1.7;
  }

  .biz-content-section { padding: 100px 60px; }
  .biz-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
  }
  .biz-body-text {
    font-family: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    color: #A0A0A0;
    line-height: 1.9;
  }
  .biz-col-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .biz-feature-card {
    background: var(--black-mid);
    border: 1px solid rgba(201,168,76,0.1);
    padding: 28px 22px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }
  .biz-feature-card::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--gold-dim), var(--gold-light));
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.4s;
  }
  .biz-feature-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-4px); }
  .biz-feature-card:hover::after { transform: scaleX(1); }
  .bfc-icon { font-size: 28px; display: block; margin-bottom: 12px; }
  .biz-feature-card h4 {
    font-family: 'Cinzel', 'Palatino Linotype', 'Book Antiqua', serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 1px;
    margin-bottom: 8px;
  }
  .biz-feature-card p {
    font-family: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
    font-size: 15px;
    color: var(--text-dim);
    line-height: 1.6;
  }

  .biz-stats-section {
    padding: 80px 60px;
    background: var(--black);
    border-top: 1px solid rgba(201,168,76,0.08);
    border-bottom: 1px solid rgba(201,168,76,0.08);
  }
  .biz-stat-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
  }
  .biz-stat {
    text-align: center;
    padding: 20px;
    border-right: 1px solid rgba(201,168,76,0.1);
  }
  .biz-stat:last-child { border-right: none; }
  .biz-stat-num {
    display: block;
    font-family: 'Cinzel', 'Palatino Linotype', 'Book Antiqua', serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 8px;
  }
  .biz-stat-label {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-dim);
  }

  .biz-contact-cta {
    padding: 100px 60px;
    text-align: center;
  }
  .cta-inner { max-width: 600px; margin: 0 auto; }
  .cta-inner .biz-body-text { margin-top: 16px; }

  .biz-footer {
    background: var(--black-mid);
    border-top: 1px solid rgba(201,168,76,0.12);
    padding: 48px 60px;
  }
  .biz-footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
  }
  .biz-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
  }
  .biz-footer-links button {
    background: transparent;
    border: 1px solid rgba(201,168,76,0.15);
    color: var(--text-dim);
    font-family: 'Rajdhani', 'Trebuchet MS', 'Arial', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 20px;
    transition: all 0.3s;
    cursor: pointer;
  }
  .biz-footer-links button:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201,168,76,0.05);
  }
  .biz-footer-copy {
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--text-dim);
  }

  @media (max-width: 900px) {
    .biz-two-col { grid-template-columns: 1fr; gap: 40px; }
    .biz-col-cards { grid-template-columns: 1fr 1fr; }
    .biz-stat-row { grid-template-columns: repeat(2, 1fr); }
    .biz-stat { border-right: none; border-bottom: 1px solid rgba(201,168,76,0.1); }
    .biz-content-section { padding: 60px 24px; }
    .biz-stats-section { padding: 60px 24px; }
    .biz-contact-cta { padding: 60px 24px; }
    .biz-footer { padding: 40px 24px; }
    .biz-page-hero { padding: 120px 24px 60px; min-height: auto; }
    .biz-page-logo { width: 140px; height: 140px; }
  }


  /* ===== BUSINESS PAGES ===== */
  .biz-page-hero {
    min-height: 90vh; display: flex; align-items: center;
    justify-content: center; text-align: center;
    padding: 140px 40px 80px; position: relative;
  }
  .biz-hero-content { position: relative; z-index: 2; max-width: 700px; }
  .biz-page-logo {
    width: 180px; height: 180px; object-fit: contain;
    margin: 24px auto 30px; display: block;
    animation: logoPulse 3s ease-in-out infinite;
  }
  @keyframes logoPulse {
    0%,100% { filter: drop-shadow(0 0 20px rgba(201,168,76,0.15)); }
    50% { filter: drop-shadow(0 0 40px rgba(201,168,76,0.35)); }
  }
  .biz-page-title {
    font-family: 'Cinzel', 'Palatino Linotype', 'Book Antiqua', serif; font-size: clamp(36px, 6vw, 72px);
    font-weight: 700; letter-spacing: 4px; line-height: 1.05; margin-bottom: 20px;
  }
  .biz-page-sub {
    font-family: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif; font-size: clamp(16px,2vw,20px);
    font-style: italic; color: var(--text-dim); line-height: 1.7;
  }
  .biz-content-section { padding: 100px 60px; }
  .biz-two-col {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 70px; align-items: start; max-width: 1200px; margin: 0 auto;
  }
  .biz-body-text {
    font-family: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif; font-size: 18px;
    color: #A0A0A0; line-height: 1.9;
  }
  .biz-col-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .biz-feature-card {
    background: var(--black-mid); border: 1px solid rgba(201,168,76,0.1);
    padding: 28px 22px; transition: all 0.3s; position: relative; overflow: hidden;
  }
  .biz-feature-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(to right, var(--gold-dim), var(--gold-light));
    transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
  }
  .biz-feature-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-4px); }
  .biz-feature-card:hover::after { transform: scaleX(1); }
  .bfc-icon { font-size: 28px; display: block; margin-bottom: 12px; }
  .biz-feature-card h4 {
    font-family: 'Cinzel', 'Palatino Linotype', 'Book Antiqua', serif; font-size: 13px; font-weight: 600;
    color: var(--gold); letter-spacing: 1px; margin-bottom: 8px;
  }
  .biz-feature-card p {
    font-family: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif; font-size: 15px;
    color: var(--text-dim); line-height: 1.6;
  }
  .biz-stats-section {
    padding: 80px 60px; background: var(--black);
    border-top: 1px solid rgba(201,168,76,0.08);
    border-bottom: 1px solid rgba(201,168,76,0.08);
  }
  .biz-stat-row {
    display: grid; grid-template-columns: repeat(4,1fr);
    gap: 0; max-width: 1000px; margin: 0 auto;
  }
  .biz-stat { text-align: center; padding: 20px; border-right: 1px solid rgba(201,168,76,0.1); }
  .biz-stat:last-child { border-right: none; }
  .biz-stat-num {
    display: block; font-family: 'Cinzel', 'Palatino Linotype', 'Book Antiqua', serif; font-size: 38px;
    font-weight: 700; color: var(--gold); margin-bottom: 8px;
  }
  .biz-stat-label { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-dim); }
  .biz-contact-cta { padding: 100px 60px; text-align: center; }
  .cta-inner { max-width: 600px; margin: 0 auto; }
  .biz-footer {
    background: var(--black-mid);
    border-top: 1px solid rgba(201,168,76,0.12);
    padding: 48px 60px;
  }
  .biz-footer-inner { display: flex; flex-direction: column; align-items: center; gap: 24px; text-align: center; }
  .biz-footer-links { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
  .biz-footer-links button {
    background: transparent; border: 1px solid rgba(201,168,76,0.15);
    color: var(--text-dim); font-family: 'Rajdhani', 'Trebuchet MS', 'Arial', sans-serif;
    font-size: 12px; font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase; padding: 8px 20px;
    transition: all 0.3s; cursor: pointer;
  }
  .biz-footer-links button:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.05); }
  .biz-footer-copy { font-size: 11px; letter-spacing: 2px; color: var(--text-dim); }
  @media (max-width: 900px) {
    .biz-two-col { grid-template-columns: 1fr; gap: 40px; }
    .biz-stat-row { grid-template-columns: repeat(2,1fr); }
    .biz-content-section, .biz-stats-section, .biz-contact-cta { padding: 60px 24px; }
    .biz-footer { padding: 40px 24px; }
    .biz-page-hero { padding: 120px 24px 60px; min-height: auto; }
    .biz-page-logo { width: 140px; height: 140px; }
  }


  /* ===== BUSINESS PAGES ===== */
  .biz-page-hero {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    padding: 140px 40px 80px;
    position: relative; overflow: hidden;
    background: var(--black);
  }
  .biz-hero-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(201,168,76,0.06) 0%, transparent 70%);
    pointer-events: none;
  }
  .biz-hero-grid {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
    pointer-events: none;
  }
  .biz-hero-content {
    position: relative; z-index: 2;
    max-width: 700px;
    animation: heroFadeIn 1.2s ease-out forwards;
  }
  .biz-page-logo {
    width: 220px; height: 220px;
    object-fit: contain;
    margin: 0 auto 28px;
    display: block;
    animation: logoPulse 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(201,168,76,0.2));
  }
  @keyframes logoPulse {
    0%,100% { filter: drop-shadow(0 0 20px rgba(201,168,76,0.15)); }
    50%      { filter: drop-shadow(0 0 40px rgba(201,168,76,0.4)); }
  }
  .biz-page-title {
    font-family: 'Cinzel', 'Palatino Linotype', 'Book Antiqua', serif;
    font-size: clamp(48px, 8vw, 100px);
    font-weight: 700;
    letter-spacing: 4px;
    line-height: 1;
    margin-bottom: 16px;
  }
  .biz-service-badge {
    display: inline-block;
    padding: 8px 28px;
    border: 1px solid rgba(201,168,76,0.4);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
  }
  .biz-page-sub {
    font-family: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
    font-size: clamp(15px, 2vw, 19px);
    font-style: italic;
    color: var(--text-dim);
    line-height: 1.8;
    max-width: 560px;
    margin: 0 auto;
  }

  /* VIDEO SECTION */
  .biz-video-section {
    padding: 100px 60px;
    background: var(--black-rich);
    border-top: 1px solid rgba(201,168,76,0.08);
    border-bottom: 1px solid rgba(201,168,76,0.08);
  }
  .video-container { max-width: 900px; margin: 0 auto; }
  .video-eyebrow { margin-bottom: 50px; }
  .video-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--black-mid);
    border: 1px solid rgba(201,168,76,0.15);
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s;
  }
  .video-placeholder:hover { border-color: rgba(201,168,76,0.4); }
  .video-frame {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 12px;
    background:
      linear-gradient(135deg, rgba(201,168,76,0.02) 0%, transparent 60%),
      var(--black-mid);
  }
  .video-play-icon {
    width: 72px; height: 72px;
    border: 2px solid rgba(201,168,76,0.5);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 16px;
    transition: all 0.3s;
    padding-left: 4px;
  }
  .video-placeholder:hover .video-play-icon {
    border-color: var(--gold);
    background: rgba(201,168,76,0.08);
    transform: scale(1.08);
  }
  .video-coming {
    font-family: 'Cinzel', 'Palatino Linotype', 'Book Antiqua', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 2px;
  }
  .video-sub {
    font-family: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
    font-size: 15px;
    color: var(--text-dim);
    font-style: italic;
  }

  /* BIZ FOOTER */
  .biz-footer {
    background: var(--black-mid);
    border-top: 1px solid rgba(201,168,76,0.12);
    padding: 56px 60px 36px;
  }
  .biz-footer-inner {
    display: flex; flex-direction: column;
    align-items: center; gap: 28px; text-align: center;
  }
  .biz-footer-links {
    display: flex; flex-wrap: wrap;
    gap: 10px; justify-content: center;
  }
  .biz-footer-links button {
    background: transparent;
    border: 1px solid rgba(201,168,76,0.15);
    color: var(--text-dim);
    font-family: 'Rajdhani', 'Trebuchet MS', 'Arial', sans-serif;
    font-size: 12px; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase;
    padding: 9px 22px;
    transition: all 0.3s; cursor: pointer;
  }
  .biz-footer-links button:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201,168,76,0.05);
  }
  .biz-footer-copy {
    font-size: 11px; letter-spacing: 2px; color: var(--text-dim);
  }

  @media (max-width: 900px) {
    .biz-page-hero { padding: 120px 24px 60px; min-height: auto; }
    .biz-page-logo { width: 130px; height: 130px; }
    .biz-video-section { padding: 60px 24px; }
    .biz-footer { padding: 40px 24px 28px; }
  }


  /* LOGO SPIN */
  .logo-spin {
    animation: logoRotate 4s linear infinite;
    -webkit-animation: logoRotate 4s linear infinite;
    transform-origin: center;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
  }
  @keyframes logoRotate {
    0%   { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
  }
  @-webkit-keyframes logoRotate {
    0%   { -webkit-transform: rotateY(0deg); }
    100% { -webkit-transform: rotateY(360deg); }
  }
  .logo-spin:hover {
    animation-play-state: paused;
  }
  /* Prevent browser default link blue color */
  a {
    color: inherit;
    text-decoration: none;
  }
  a:visited {
    color: inherit;
  }
  h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
    color: inherit;
    text-decoration: none;
  }

/* ── SPAN-BASED NAVIGATION (replaces <a href="#"> to fix redirect bug) ── */
.nav-links span, .nav-logo, .footer-link, .btn-primary, .btn-ghost,
.nav-cta, .biz-card, .biz-footer-links button {
  cursor: pointer;
}
.nav-links span {
  font-family: 'Rajdhani', 'Trebuchet MS', 'Arial', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
  display: inline-block;
}
.nav-links span::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links span:hover { color: var(--gold); }
.nav-links span:hover::after { width: 100%; }
.nav-links span.nav-cta {
  padding: 10px 28px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 3px;
  transition: all 0.3s;
}
.nav-links span.nav-cta:hover { background: var(--gold); color: var(--black); }
.nav-links span.nav-cta::after { display: none; }
.footer-link {
  color: var(--text-dim);
  font-size: 14px;
  letter-spacing: 1px;
  transition: color 0.3s;
  display: inline-block;
}
.footer-link:hover { color: var(--gold); }
.btn-primary, .btn-ghost { display: inline-block; }

/* ── LANGUAGE SWITCHER ───────────────────────────────────── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 20px;
}
.lang-btn {
  background: transparent;
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--text-dim);
  font-family: 'Rajdhani', 'Trebuchet MS', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 10px;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 2px;
}
.lang-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}
.lang-btn.active {
  border-color: var(--gold);
  color: var(--black);
  background: var(--gold);
}

/* Hide Google Translate toolbar/banner */
.goog-te-banner-frame { display: none !important; }
.skiptranslate { display: none !important; }
body { top: 0 !important; }
.goog-te-gadget { display: none !important; }

/* ================================================================
   FULLY RESPONSIVE — Mobile, Tablet, Laptop, Desktop
   Breakpoints:
     xs mobile  : max 480px
     sm mobile  : max 600px
     tablet     : max 768px
     laptop     : max 1024px
     desktop+   : 1025px+
================================================================ */

/* ── BASE FIXES ── */
* { box-sizing: border-box; }
img, video { max-width: 100%; height: auto; }

/* ── NAVBAR ── */
@media (max-width: 1024px) {
  nav { padding: 16px 30px; }
  nav.scrolled { padding: 12px 30px; }
  .nav-links span { font-size: 11px; letter-spacing: 2px; }
  .nav-logo img { height: 90px !important; }
}

@media (max-width: 768px) {
  nav {
    padding: 12px 20px;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
  }
  nav.scrolled { padding: 10px 20px; }
  .nav-logo img { height: 72px !important; }
  .nav-links { display: none !important; }
  .lang-switcher { margin-left: 0; }
  .lang-btn { padding: 5px 8px; font-size: 10px; }
}

@media (max-width: 480px) {
  .nav-logo img { height: 60px !important; }
  .lang-btn { padding: 4px 7px; font-size: 9px; }
}

/* ── HERO ── */
@media (max-width: 1024px) {
  .hero-title { font-size: clamp(40px, 6vw, 80px); }
  .hero-subtitle { font-size: 16px; padding: 0 20px; }
}

@media (max-width: 768px) {
  .hero { min-height: 100svh; padding: 100px 20px 60px; }
  .hero-content { padding: 0 10px; }
  .hero-title { font-size: clamp(36px, 10vw, 60px); letter-spacing: -1px; }
  .hero-subtitle { font-size: 15px; margin: 20px auto; }
  .hero-cta-group { flex-direction: column; align-items: center; gap: 14px; }
  .btn-primary, .btn-ghost { width: 100%; max-width: 300px; text-align: center; padding: 14px 24px; }
  .hero-eyebrow { font-size: 9px; letter-spacing: 4px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(28px, 11vw, 46px); }
  .hero-eyebrow { display: none; }
}

/* ── VISION & MISSION ── */
@media (max-width: 1024px) {
  .vision-mission { padding: 80px 40px; }
  .vm-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
}

@media (max-width: 768px) {
  .vision-mission { padding: 60px 20px; }
  .vm-grid { grid-template-columns: 1fr; gap: 2px; }
  .vm-card { padding: 40px 30px; }
  .vm-card p { font-size: 16px; }
  .section-title { font-size: clamp(26px, 6vw, 42px); }
}

@media (max-width: 480px) {
  .vm-card { padding: 30px 20px; }
  .vm-icon { font-size: 36px; }
}

/* ── LEADERSHIP ── */
@media (max-width: 1024px) {
  .leadership { padding: 80px 40px; }
  .leaders-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}

@media (max-width: 768px) {
  .leadership { padding: 60px 20px; }
  .leaders-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .leader-card { padding: 40px 30px; }
  .leader-avatar { width: 90px; height: 90px; font-size: 28px; }
}

@media (max-width: 480px) {
  .leader-card { padding: 30px 20px; }
  .leader-name { font-size: 18px; }
  .leader-bio { font-size: 14px; }
}

/* ── BUSINESSES ── */
@media (max-width: 1024px) {
  .businesses { padding: 80px 40px; }
  .biz-grid { grid-template-columns: repeat(2, 1fr); gap: 2px; }
}

@media (max-width: 768px) {
  .businesses { padding: 60px 20px; }
  .biz-grid { grid-template-columns: repeat(2, 1fr); }
  .biz-card { padding: 30px 20px; }
  .biz-card h3 { font-size: 15px; }
  .biz-card p { font-size: 13px; }
  .biz-card img { width: 90px !important; height: 90px !important; }
}

@media (max-width: 480px) {
  .biz-grid { grid-template-columns: 1fr; }
  .biz-card { padding: 30px 24px; }
  .biz-card img { width: 100px !important; height: 100px !important; }
}

/* ── ABOUT STRIP ── */
@media (max-width: 1024px) {
  .about-strip { padding: 60px 40px; gap: 40px; }
}

@media (max-width: 768px) {
  .about-strip {
    flex-direction: column;
    text-align: center;
    padding: 50px 20px;
    gap: 30px;
  }
  .about-strip-left h2 { font-size: clamp(22px, 5vw, 34px); }
  .about-strip-left p { font-size: 16px; }
  .gold-divider { margin: 20px auto; }
}

/* ── FOOTER ── */
@media (max-width: 1024px) {
  footer { padding: 60px 40px 30px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  footer { padding: 50px 20px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .footer-brand p { max-width: 100%; }
  .footer-col ul { padding: 0; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; font-size: 10px; }
  .nav-logo img[style*="130px"] { height: 90px !important; }
}

@media (max-width: 480px) {
  footer { padding: 40px 16px 20px; }
}

/* ── CAREERS PAGE ── */
@media (max-width: 1024px) {
  .careers-hero { padding: 140px 40px 70px; }
  .jobs-section { padding: 60px 40px; }
  .apply-section { padding: 60px 40px; }
}

@media (max-width: 768px) {
  .careers-hero { padding: 120px 20px 50px; min-height: auto; }
  .careers-hero h1 { font-size: clamp(32px, 8vw, 60px); }
  .jobs-section { padding: 50px 20px; }
  .jobs-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .jobs-header h2 { font-size: clamp(24px, 5vw, 36px); }
  .job-listing { flex-direction: column; align-items: flex-start; gap: 16px; padding: 24px 20px; }
  .job-apply { width: 100%; text-align: center; padding: 12px; }
  .job-title { font-size: 17px; }
  .job-tags { flex-wrap: wrap; gap: 6px; }
  .apply-section { padding: 50px 20px; }
  .form-grid { grid-template-columns: 1fr; gap: 16px; }
  .form-group label { font-size: 9px; }
  .form-group input, .form-group select, .form-group textarea { font-size: 14px; padding: 14px 16px; }
}

@media (max-width: 480px) {
  .careers-hero h1 { font-size: clamp(26px, 9vw, 44px); }
  .jobs-filter { flex-wrap: wrap; gap: 8px; }
  .filter-btn { padding: 7px 16px; font-size: 11px; }
}

/* ── BUSINESS PAGES (Bungalow, Cosmetics, Nursery, Gold Loan) ── */
@media (max-width: 1024px) {
  .biz-page-hero { padding: 120px 40px 60px; min-height: 80vh; }
  .biz-page-logo { width: 150px !important; height: 150px !important; }
  .biz-page-title { font-size: clamp(36px, 5vw, 64px); }
  .biz-video-section { padding: 70px 40px; }
}

@media (max-width: 768px) {
  .biz-page-hero { padding: 100px 20px 50px; min-height: auto; }
  .biz-page-logo { width: 120px !important; height: 120px !important; }
  .biz-page-title { font-size: clamp(30px, 8vw, 54px); letter-spacing: 2px; }
  .biz-service-badge { font-size: 10px; letter-spacing: 4px; padding: 6px 20px; }
  .biz-page-sub { font-size: 15px; }
  .biz-video-section { padding: 50px 20px; }
  .video-container { max-width: 100%; }
  .video-placeholder { aspect-ratio: 16/9; }
  .biz-footer { padding: 40px 20px 24px; }
  .biz-footer-links { gap: 8px; }
  .biz-footer-links button { padding: 7px 14px; font-size: 11px; letter-spacing: 1px; }
}

@media (max-width: 480px) {
  .biz-page-hero { padding: 90px 16px 40px; }
  .biz-page-logo { width: 100px !important; height: 100px !important; }
  .biz-page-title { font-size: clamp(26px, 9vw, 44px); }
  .biz-video-section { padding: 40px 16px; }
  .biz-footer-links { flex-wrap: wrap; justify-content: center; }
  .biz-footer-links button { font-size: 10px; padding: 6px 12px; }
}

/* ── SECTION EYEBROW + GENERAL SECTIONS ── */
@media (max-width: 768px) {
  section { padding: 60px 20px; }
  .section-eyebrow { font-size: 9px; letter-spacing: 4px; }
  .gold-divider { margin: 20px 0; }
  .hero-scroll { display: none; }
}

@media (max-width: 480px) {
  section { padding: 48px 16px; }
}

/* ── TOUCH DEVICES: remove custom cursor ── */
@media (hover: none) and (pointer: coarse) {
  .cursor, .cursor-ring { display: none !important; }
  * { cursor: auto !important; }
}

/* ── PREVENT HORIZONTAL SCROLL ── */
html, body { overflow-x: hidden; max-width: 100%; }


/* ── HAMBURGER MENU ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid rgba(201,168,76,0.3);
  cursor: pointer;
  padding: 8px;
  transition: border-color 0.3s;
}
.hamburger:hover { border-color: var(--gold); }
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--gold);
  transition: all 0.3s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 80px 40px 40px;
}
.mobile-menu.open { display: flex; }
.mobile-menu span {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--white);
  cursor: pointer;
  transition: color 0.3s;
  text-align: center;
}
.mobile-menu span:hover { color: var(--gold); }
.mobile-lang {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(201,168,76,0.15);
  width: 100%;
  justify-content: center;
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
}
