/* =============================
   ARYA FINANCIAL SERVICES
   Luxury Gold & Navy Theme
   ============================= */

:root {
  --navy: #1a2744;
  --navy-dark: #0f1a2e;
  --navy-light: #243358;
  --gold: #c9a84c;
  --gold-light: #e2c47a;
  --gold-pale: #f5ecd4;
  --white: #ffffff;
  --off-white: #faf8f3;
  --text: #2c2c2c;
  --text-light: #666;
  --border: #e0d5bc;
  --shadow: 0 4px 30px rgba(26,39,68,0.10);
  --shadow-gold: 0 4px 24px rgba(201,168,76,0.18);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  background: var(--off-white);
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
}

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

a { text-decoration: none; color: inherit; }

/* ========== HEADER ========== */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: rgba(26, 39, 68, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  transition: box-shadow 0.3s;
}
#header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.2); }

.header-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}

.logo-wrap { display: flex; align-items: center; gap: 12px; }

.logo-img {
  height: 44px; width: 44px;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(201,168,76,0.4));
}

.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 700;
  color: var(--gold); letter-spacing: 0.1em;
}
.logo-sub {
  font-size: 0.65rem; color: rgba(255,255,255,0.6);
  letter-spacing: 0.15em; text-transform: uppercase;
}

.nav-links {
  list-style: none; display: flex; gap: 2.5rem;
}
.nav-links a {
  color: rgba(255,255,255,0.8); font-size: 0.85rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: color 0.2s;
  font-weight: 500;
}
.nav-links a:hover { color: var(--gold); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--gold); border-radius: 2px; transition: 0.3s;
}

.mobile-nav {
  display: none; background: var(--navy-dark);
  border-top: 1px solid rgba(201,168,76,0.15);
}
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; padding: 1rem 2rem 1.5rem; }
.mobile-nav ul li { padding: 0.7rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.mobile-nav ul li a { color: rgba(255,255,255,0.85); font-size: 0.95rem; letter-spacing: 0.05em; }

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #2a3f6e 100%);
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px 2rem 80px;
  position: relative; overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(201,168,76,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.watermark-logo {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.05; pointer-events: none;
  z-index: 0;
}
.watermark-logo img { width: 500px; height: 500px; object-fit: contain; }

.wm-services { top: 50%; left: 50%; opacity: 0.04; }
.wm-contact { top: 50%; left: 50%; opacity: 0.05; }

.hero-content { max-width: 750px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.hero-stats { position: relative; z-index: 2; }

.hero-badge {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light);
  font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 6px 20px; border-radius: 40px;
  margin-bottom: 1.8rem;
  font-weight: 500;
}

.hero-title {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  color: var(--white); line-height: 1.12;
  font-weight: 600; margin-bottom: 1.4rem;
  letter-spacing: -0.01em;
}

.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.65);
  margin-bottom: 2.4rem; font-weight: 300; line-height: 1.7;
  max-width: 520px; margin-left: auto; margin-right: auto;
}

.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3.5rem; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy-dark); font-weight: 600;
  padding: 14px 32px; border-radius: 4px;
  font-size: 0.9rem; letter-spacing: 0.05em;
  border: none; cursor: pointer; display: inline-block;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(201,168,76,0.35);
  font-family: 'Outfit', sans-serif;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.45); }
.btn-primary.full-width { width: 100%; text-align: center; }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
  padding: 14px 32px; border-radius: 4px;
  font-size: 0.9rem; letter-spacing: 0.05em;
  font-weight: 500; display: inline-block;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.hero-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 2.5rem; flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  display: block; font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 700; color: var(--gold);
}
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); letter-spacing: 0.1em; text-transform: uppercase; }
.stat-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.15); }

/* ========== SHARED ========== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }

.section-label {
  font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 0.8rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600; line-height: 1.2;
  margin-bottom: 1.5rem; color: var(--navy-dark);
}

/* ========== ABOUT ========== */
.about {
  padding: 6rem 0;
  background: var(--off-white);
}

.about-text {
  font-size: 1.05rem; color: var(--text-light);
  line-height: 1.85; margin-bottom: 1.2rem;
  max-width: 780px;
}
.about-text strong { color: var(--navy); font-weight: 600; }

.trust-badges {
  display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem;
}
.badge-item {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--navy); font-size: 0.85rem;
  padding: 10px 20px; border-radius: 40px;
  font-weight: 500; letter-spacing: 0.03em;
  box-shadow: 0 2px 8px rgba(26,39,68,0.06);
}

/* ========== SERVICES ========== */
.services {
  padding: 6rem 0;
  background: var(--navy-dark);
  position: relative; overflow: hidden;
}

.services .section-label { color: var(--gold); }
.services .section-title { color: var(--white); }

.services-intro {
  color: rgba(255,255,255,0.55); font-size: 1rem;
  line-height: 1.7; max-width: 620px; margin-bottom: 3.5rem;
}

.services-grid { display: flex; flex-direction: column; gap: 3.5rem; }

.service-category {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 8px; padding: 2.5rem;
}

.service-cat-header {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.cat-icon { font-size: 2rem; }
.service-cat-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; color: var(--gold); font-weight: 600;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px; padding: 1.5rem;
  transition: border-color 0.3s, transform 0.3s;
}
.service-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-3px);
}
.service-icon { font-size: 1.8rem; margin-bottom: 0.8rem; }
.service-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; color: var(--white);
  margin-bottom: 0.6rem; font-weight: 600;
}
.service-card p { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* ========== FOUNDER ========== */
.founder {
  padding: 6rem 0;
  background: var(--off-white);
}

.founder-wrap {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4rem; align-items: start;
  margin-top: 2rem;
}

.founder-image-block { display: flex; flex-direction: column; align-items: center; gap: 1.2rem; }

.founder-img-frame {
  width: 240px; height: 320px;
  border: 3px solid var(--gold);
  border-radius: 6px; overflow: hidden;
  background: var(--border);
  box-shadow: 8px 8px 0 var(--gold-pale), var(--shadow-gold);
  position: relative;
}
.founder-img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
}

/* Placeholder style if image not loaded */
.founder-img-frame::before {
  content: 'Founder Photo';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; color: var(--text-light);
  background: var(--gold-pale);
}
.founder-img-frame img { position: relative; z-index: 1; }

.founder-name-card {
  text-align: center;
  background: var(--navy);
  color: var(--white);
  padding: 14px 28px; border-radius: 4px;
  width: 100%;
}
.founder-name { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 600; }
.founder-title { display: block; font-size: 0.75rem; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 2px; }

.founder-content { padding-top: 0.5rem; }
.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem; color: var(--gold); line-height: 0.6;
  margin-bottom: 0.8rem; display: block; opacity: 0.5;
}
.founder-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; color: var(--navy);
  line-height: 1.8; font-style: italic;
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem; margin-bottom: 1.5rem;
}
.founder-bio {
  font-size: 0.95rem; color: var(--text-light);
  line-height: 1.85; margin-bottom: 1.5rem;
}
.founder-bio strong { color: var(--navy); font-weight: 600; }

.founder-highlight { display: flex; flex-direction: column; gap: 0.6rem; }
.fh-item {
  display: flex; align-items: center; gap: 0.8rem;
  font-size: 0.9rem; color: var(--navy);
  font-weight: 500;
}
.fh-item span { color: var(--gold); font-size: 0.7rem; }

/* ========== CONTACT ========== */
.contact {
  padding: 6rem 0;
  background: var(--navy-dark);
  position: relative; overflow: hidden;
}
.contact .section-label { color: var(--gold); }
.contact .section-title { color: var(--white); }

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem; margin-top: 2rem;
}

.contact-info h3, .contact-form-block h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; color: var(--gold);
  margin-bottom: 1.8rem; font-weight: 600;
}

.info-item {
  display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start;
}
.info-icon { font-size: 1.3rem; margin-top: 2px; flex-shrink: 0; }
.info-item > div { color: rgba(255,255,255,0.7); font-size: 0.92rem; line-height: 1.7; }
.info-item > div strong { display: block; color: var(--white); margin-bottom: 3px; font-weight: 500; }

.whatsapp-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: var(--white);
  padding: 12px 24px; border-radius: 4px;
  font-size: 0.9rem; font-weight: 600;
  margin-top: 1rem; transition: opacity 0.2s, transform 0.2s;
  letter-spacing: 0.03em;
}
.whatsapp-btn:hover { opacity: 0.9; transform: translateY(-2px); }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.78rem; color: rgba(255,255,255,0.55);
  letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px; padding: 12px 16px;
  color: var(--white); font-size: 0.95rem;
  font-family: 'Outfit', sans-serif;
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group select option { background: var(--navy-dark); color: var(--white); }
.form-group textarea { resize: vertical; }

.form-success {
  text-align: center; color: #4caf7d;
  background: rgba(76,175,125,0.1); border: 1px solid rgba(76,175,125,0.3);
  border-radius: 4px; padding: 12px; font-size: 0.9rem;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--navy-dark);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 2.5rem 2rem;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
  gap: 1.2rem; text-align: center;
}
.footer-logo {
  display: flex; align-items: center; gap: 14px;
}
.footer-logo img { height: 40px; object-fit: contain; }
.footer-name {
  display: block; font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; color: var(--gold); font-weight: 600;
}
.footer-tagline { font-size: 0.75rem; color: rgba(255,255,255,0.4); letter-spacing: 0.05em; }
.footer-links { display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { color: rgba(255,255,255,0.25); font-size: 0.78rem; }

/* ========== FLOATING WHATSAPP ========== */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  background: #25D366; color: var(--white);
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,0.55); }

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .founder-wrap { grid-template-columns: 1fr; }
  .founder-image-block { flex-direction: row; align-items: center; justify-content: flex-start; }
  .founder-img-frame { width: 140px; height: 170px; flex-shrink: 0; }
  .founder-name-card { width: auto; padding: 10px 20px; }
  .contact-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 640px) {
  .hero { padding: 100px 1.2rem 60px; }
  .hero-stats { gap: 1.5rem; }
  .stat-divider { height: 32px; }
  .about, .services, .founder, .contact { padding: 4rem 0; }
  .service-category { padding: 1.5rem; }
  .service-cards { grid-template-columns: 1fr; }
  .founder-image-block { flex-direction: column; align-items: center; }
  .watermark-logo img { width: 280px; height: 280px; }
}
