/*
	Theme Name: Arif
	Theme URI: https://codenestify.com/
	Author: Arif 
	Author URI: https://codenestify.com/
	Version: 3.4.5
	Stable tag: 3.4.5
	Requires at least: 6.0
	Tested up to: 6.8
	Requires PHP: 7.4
	Text Domain: https://codenestify.com
*/

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

:root {
  --navy: #0B1D3A;
  --navy-light: #132B52;
  --gold: #C8983C;
  --gold-light: #E0B85C;
  --gold-pale: #F5ECD7;
  --cream: #FAFAF5;
  --white: #FFFFFF;
  --slate: #4A5568;
  --slate-light: #718096;
  --border: #E2E8F0;
  --red-maple: #C1272D;
  --font-display: 'Libre Baskerville', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ───── NAVIGATION ───── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(11, 29, 58, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 152, 60, 0.2);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 90px;
}
.rcic-badge-row a:hover {
    color: white;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem; color: var(--white);
  text-decoration: none; letter-spacing: 0.02em;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.8); text-decoration: none;
  font-size: 0.9rem; font-weight: 500; letter-spacing: 0.03em;
  text-transform: uppercase; transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: var(--navy) !important;
  padding: 0.55rem 1.25rem; border-radius: 4px;
  font-weight: 600 !important; text-transform: uppercase !important;
  font-size: 1rem !important; letter-spacing: 0.05em;
  transition: background 0.3s;
}
.nav-cta:hover { background: var(--gold-light); color: var(--navy) !important; }
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  width: 38px; height: 60px; position: relative;
}
.hamburger span {
  display: block; width: 100%; height: 2px; background: var(--white);
  position: absolute; left: 0; transition: all 0.3s;
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { top: 18px; }

/* ───── HERO ───── */
.hero {
  min-height: 60vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, #1a3a6a 100%);
  display: flex; align-items: center;
  padding: 100px 2rem 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -50%; right: -20%; width: 80%; height: 200%;
  background: radial-gradient(ellipse, rgba(200,152,60,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(to top, var(--cream), transparent);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 400px; gap: 4rem; align-items: center;
  position: relative; z-index: 1;
}
.hero-text h1 {
  font-family: var(--font-display); font-size: 3.2rem;
  color: var(--white); line-height: 1.25; margin-bottom: 0.75rem;
}
.hero-text h1 span { color: var(--gold); }
.hero-text .subtitle {
  font-size: 1.2rem; color: rgba(255,255,255,0.7);
  margin-bottom: 2rem; line-height: 1.6; max-width: 560px;
}
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2rem;
}
.badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(200,152,60,0.3);
  padding: 0.4rem 0.9rem; border-radius: 100px;
  font-size: 0.8rem; color: var(--gold-pale); font-weight: 500;
  letter-spacing: 0.02em;
}
.badge svg { width: 14px; height: 14px; fill: var(--gold); flex-shrink: 0; }
.hero-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--gold); color: var(--navy);
  padding: 1rem 2rem; border-radius: 4px;
  font-weight: 700; font-size: 1rem;
  text-decoration: none; text-transform: uppercase;
  letter-spacing: 0.06em; transition: all 0.3s;
  border: 2px solid var(--gold);
}
.hero-cta:hover { background: transparent; color: var(--gold); }
.hero-cta svg { width: 18px; height: 18px; fill: currentColor; }
.hero-photo {
  position: relative;
}
.hero-photo img {
  width: 100%; max-width: 380px; border-radius: 8px;
  border: 3px solid rgba(200,152,60,0.4);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.hero-photo .credential-card {
  position: absolute; bottom: -20px; left: -30px;
  background: var(--white); padding: 1rem 1.25rem;
  border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  border-left: 4px solid var(--red-maple);
}
.credential-card .label {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--slate-light); margin-bottom: 0.2rem; font-weight: 600;
}
.credential-card .value {
  font-family: var(--font-display); font-size: 0.95rem; color: var(--navy);
  font-weight: 700;
}

/* ───── SECTION LAYOUT ───── */
section { padding: 5rem 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-tag {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--gold); margin-bottom: 0.75rem;
  border-bottom: 2px solid var(--gold); padding-bottom: 0.25rem;
}
.section-heading {
  font-family: var(--font-display); font-size: 2.4rem;
  line-height: 1.3; margin-bottom: 1.25rem; color: var(--navy);
}
.section-sub {
  font-size: 1.05rem; color: var(--slate); max-width: 680px;
  line-height: 1.7; margin-bottom: 3rem;
}

/* ───── ABOUT ───── */
#about { background: var(--cream); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  margin-top: 2rem;
}
.about-card {
  background: var(--white); border-radius: 8px;
  padding: 2rem; border: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.about-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.about-card h3 {
  font-family: var(--font-display); font-size: 1.15rem;
  margin-bottom: 0.75rem; color: var(--navy);
  display: flex; align-items: center; gap: 0.5rem;
}
.about-card h3 .icon {
  width: 32px; height: 32px; background: var(--gold-pale);
  border-radius: 6px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.about-card h3 .icon svg { width: 18px; height: 18px; fill: var(--gold); }
.about-card p { font-size: 0.95rem; color: var(--slate); line-height: 1.7; }
.about-highlight {
  background: var(--navy); color: var(--white);
  border-radius: 8px; padding: 2.5rem;
  grid-column: 1 / -1;
  display: flex; gap: 3rem; align-items: center;
}
.about-highlight .stats { display: flex; gap: 3rem; flex-shrink: 0; }
.stat { text-align: center; }
.stat .num {
  font-family: var(--font-display); font-size: 2.5rem;
  color: var(--gold); font-weight: 700; line-height: 1;
}
.stat .lbl {
  font-size: 0.75rem; color: rgba(255,255,255,0.6);
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-top: 0.4rem;
}
.about-highlight p {
  font-size: 0.95rem; color: rgba(255,255,255,0.8); line-height: 1.7;
}
.verify-link {
  display: inline-flex; align-items: center; gap: 0.3rem;
  color: var(--gold); text-decoration: none;
  font-weight: 600; font-size: 0.9rem;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
.verify-link:hover { border-bottom-color: var(--gold); }
.verify-link svg { width: 14px; height: 14px; fill: var(--gold); }

/* ───── SERVICES ───── */
#services { background: var(--white); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.service-card {
  border: 1px solid var(--border); border-radius: 8px;
  padding: 2rem; transition: all 0.3s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gold); transform: scaleX(0);
  transition: transform 0.3s; transform-origin: left;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.service-card .service-icon {
  width: 44px; height: 44px; background: var(--gold-pale);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.service-icon svg { width: 22px; height: 22px; fill: var(--gold); }
.service-card h3 {
  font-family: var(--font-display); font-size: 1.1rem;
  margin-bottom: 0.6rem; color: var(--navy);
}
.service-card p {
  font-size: 0.9rem; color: var(--slate); line-height: 1.65;
  margin-bottom: 1rem;
}
.service-card .ircc-link {
  font-size: 0.8rem; color: var(--gold); text-decoration: none;
  font-weight: 600; display: inline-flex; align-items: center; gap: 0.25rem;
  transition: opacity 0.3s;
}
.service-card .ircc-link:hover { opacity: 0.7; }
.service-card .ircc-link svg { width: 12px; height: 12px; fill: var(--gold); }
.employer-banner {
  margin-top: 2rem; background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 8px; padding: 2.5rem; color: var(--white);
  display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center;
}
.employer-banner h3 {
  font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 0.5rem;
}
.employer-banner p {
  font-size: 0.95rem; color: rgba(255,255,255,0.75); line-height: 1.6;
}
.employer-banner a {
  background: var(--gold); color: var(--navy);
  padding: 0.9rem 1.75rem; border-radius: 4px;
  font-weight: 700; text-decoration: none; font-size: 0.9rem;
  text-transform: uppercase; letter-spacing: 0.05em;
  white-space: nowrap; transition: background 0.3s;
}
.employer-banner a:hover { background: var(--gold-light); }

/* ───── FEES / BOOKING ───── */
#fees { background: var(--cream); }
.fees-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
}
.fee-info h3 {
  font-family: var(--font-display); font-size: 1.25rem;
  margin-bottom: 1rem; color: var(--navy);
}
.fee-info p { font-size: 0.95rem; color: var(--slate); line-height: 1.7; margin-bottom: 1rem; }
.fee-list { list-style: none; margin: 1.5rem 0; }
.fee-list li {
  padding: 1rem 0; border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
.fee-list li:last-child { border-bottom: none; }
.fee-list .fee-name {
  font-weight: 600; color: var(--navy); font-size: 0.95rem;
}
.fee-list .fee-desc {
  font-size: 0.8rem; color: var(--slate-light); margin-top: 0.15rem;
}
.fee-list .fee-price {
  font-family: var(--font-display); font-weight: 700;
  color: var(--gold); font-size: 1.1rem; white-space: nowrap;
}
.fee-note {
  background: var(--gold-pale); border-radius: 6px;
  padding: 1rem 1.25rem; font-size: 0.85rem;
  color: var(--navy); line-height: 1.6;
  border-left: 3px solid var(--gold); margin-top: 1rem;
}
.fee-note strong { color: var(--navy); }
.booking-embed {
  background: var(--white); border-radius: 8px; padding: 2rem;
  border: 1px solid var(--border); text-align: center;
}
.booking-embed h3 {
  font-family: var(--font-display); font-size: 1.25rem;
  margin-bottom: 0.5rem; color: var(--navy);
}
.booking-embed p {
  font-size: 0.9rem; color: var(--slate); margin-bottom: 1.5rem;
}
.booking-embed .book-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--gold); color: var(--navy);
  padding: 1rem 2.5rem; border-radius: 4px; text-decoration: none;
  font-weight: 700; font-size: 1rem; text-transform: uppercase;
  letter-spacing: 0.05em; transition: all 0.3s;
  border: 2px solid var(--gold);
}
.book-btn:hover { background: transparent; color: var(--gold); }
.book-btn svg { width: 18px; height: 18px; fill: currentColor; }
.booking-embed .trust-row {
  display: flex; justify-content: center; gap: 1.5rem;
  margin-top: 1.25rem; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 0.3rem;
  font-size: 0.78rem; color: var(--slate-light);
}
.trust-item svg { width: 14px; height: 14px; fill: var(--gold); flex-shrink: 0; }

/* ───── HOW IT WORKS ───── */
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  margin-top: 3rem;
}
.step {
  text-align: center; position: relative;
}
.step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gold); color: var(--navy);
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.step h4 {
  font-size: 0.95rem; font-weight: 700; margin-bottom: 0.4rem;
  color: var(--navy);
}
.step p { font-size: 0.85rem; color: var(--slate); line-height: 1.5; }

/* ───── CONTACT ───── */
#contact {
  background: var(--navy); color: var(--white);
  position: relative; overflow: hidden;
}
#contact::before {
  content: '';
  position: absolute; top: 0; right: 0; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(200,152,60,0.08), transparent 70%);
  pointer-events: none;
}
#contact .section-tag { color: var(--gold); border-color: var(--gold); }
#contact .section-heading { color: var(--white); }
#contact .section-sub { color: rgba(255,255,255,0.65); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2rem;
}
.contact-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px; padding: 2rem;
}
.contact-item h4 {
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--gold); margin-bottom: 0.75rem; font-weight: 700;
}
.contact-item a, .contact-item p {
  color: rgba(255,255,255,0.85); text-decoration: none;
  font-size: 1rem; line-height: 1.8; transition: color 0.3s;
}
.contact-item a:hover { color: var(--gold); }
.contact-item .small {
  font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-top: 0.5rem;
}

/* ───── FOOTER ───── */
footer {
  background: #071425; color: rgba(255,255,255,0.4);
  padding: 2.5rem 2rem; text-align: left;
  font-size: 0.8rem; line-height: 1.8;
}
footer a { color: var(--gold); text-decoration: none; }
footer a:hover { text-decoration: underline; }
.footer-inner { max-width: 800px; margin: 0 auto; }
.footer-links { margin-top: 0.75rem; }
.footer-links a { margin: 0 0.75rem; font-size: 0.78rem; color: rgba(255,255,255,0.5); }
.footer-links a:hover { color: var(--gold); }

/* ───── RESPONSIVE ───── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-photo { display: flex; justify-content: center; order: -1; }
  .hero-photo img { max-width: 280px; }
  .hero-photo .credential-card { left: auto; right: -15px; bottom: -15px; }
  .hero-text .subtitle { margin: 0 auto 2rem; }
  .hero-badges { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; }
  .about-highlight { flex-direction: column; text-align: center; }
  .about-highlight .stats { justify-content: center; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .fees-layout { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .employer-banner { grid-template-columns: 1fr; text-align: center; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--navy); padding: 1.5rem 2rem; gap: 1rem;
    border-bottom: 1px solid rgba(200,152,60,0.2);
  }
  .hero-text h1 { font-size: 2.2rem; }
  .section-heading { font-size: 1.8rem; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  section { padding: 3.5rem 1.25rem; }
}