/* =============================================
   GLORY ANSER — Main Stylesheet
   Brand colours: deep navy-purple #26215C,
   mid-violet #534AB7, lavender #AFA9EC
   Accent gold: #C9A96E
   ============================================= */

/* ---- CSS Variables ---- */
:root {
  --navy:       #26215C;
  --violet:     #534AB7;
  --lavender:   #AFA9EC;
  --light-lav:  #E8E6F8;
  --gold:       #C9A96E;
  --gold-light: #E8D5A3;
  --dark:       #0D0B1F;
  --dark2:      #151230;
  --mid:        #3A3570;
  --text:       #2C2A3E;
  --text-muted: #6B6880;
  --white:      #FFFFFF;
  --off-white:  #F8F7FF;
  --radius:     12px;
  --radius-lg:  24px;
  --shadow:     0 8px 40px rgba(38,33,92,0.12);
  --shadow-lg:  0 20px 60px rgba(38,33,92,0.18);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.15;
}

a { text-decoration: none; transition: all 0.3s ease; }
img { max-width: 100%; height: auto; }

/* ---- Utility ---- */
.text-violet  { color: var(--violet) !important; }
.text-gold    { color: var(--gold) !important; }
.text-navy    { color: var(--navy) !important; }
.bg-off-white { background: var(--off-white); }
.bg-dark-navy { background: var(--dark); }

.section-label {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.25rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.75;
}

.divider-gem {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
}
.divider-gem::before,
.divider-gem::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lavender));
}
.divider-gem::after {
  background: linear-gradient(90deg, var(--lavender), transparent);
}
.gem-icon {
  width: 10px; height: 10px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ---- Buttons ---- */
.btn-ga-primary {
  background: linear-gradient(135deg, var(--violet), var(--navy));
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 0.65rem 1.8rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: transform 0.25s, box-shadow 0.25s;
}
.btn-ga-primary:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(83,74,183,0.4);
}

.btn-ga-outline {
  background: transparent;
  color: var(--violet);
  border: 1.5px solid var(--violet);
  border-radius: 50px;
  padding: 0.65rem 1.8rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all 0.25s;
}
.btn-ga-outline:hover {
  background: var(--violet);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-ga-gold {
  background: linear-gradient(135deg, #C9A96E, #a8834a);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 0.75rem 2.2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: transform 0.25s, box-shadow 0.25s;
}
.btn-ga-gold:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,169,110,0.45);
}

/* ---- Navbar ---- */
.ga-navbar {
  background: rgba(13,11,31,0);
  backdrop-filter: blur(0px);
  padding: 1.25rem 0;
  transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}
.ga-navbar.scrolled {
  background: rgba(13,11,31,0.95);
  backdrop-filter: blur(16px);
  padding: 0.75rem 0;
  border-bottom-color: rgba(175,169,236,0.12);
}

.brand-text { display: flex; flex-direction: column; line-height: 1; gap: 0; }
.brand-glory {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.35em;
  color: rgba(255,255,255,0.7);
}
.brand-anser {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--lavender);
}

.ga-navbar .nav-link {
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  padding: 0.5rem 0.9rem !important;
  position: relative;
}
.ga-navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0.9rem; right: 0.9rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.ga-navbar .nav-link:hover,
.ga-navbar .nav-link.active { color: var(--white); }
.ga-navbar .nav-link:hover::after,
.ga-navbar .nav-link.active::after { transform: scaleX(1); }

.navbar-toggler { border: none; background: none; padding: 4px; }
.toggler-icon {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: all 0.3s;
  border-radius: 2px;
}

/* ---- HERO ---- */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 40%, var(--navy) 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-diamond {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-bg-diamond svg {
  position: absolute;
  opacity: 0.04;
}
.hero-bg-diamond .d1 { top: -10%; right: -5%; width: 55%; }
.hero-bg-diamond .d2 { bottom: -15%; left: -8%; width: 40%; }
.hero-bg-diamond .d3 { top: 30%; left: 38%; width: 20%; opacity: 0.06; }

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.glow-1 { width: 500px; height: 500px; background: rgba(83,74,183,0.25); top: -100px; right: 10%; }
.glow-2 { width: 300px; height: 300px; background: rgba(201,169,110,0.1); bottom: 5%; left: 15%; }

.hero-content { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 30px; height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: italic;
  color: var(--lavender);
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(175,169,236,0.15);
}
.stat-item {}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}
.stat-num span { color: var(--gold); }
.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
}

.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-diamond-logo { animation: floatDiamond 5s ease-in-out infinite; }
@keyframes floatDiamond {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-18px); }
}

/* ---- SECTIONS ---- */
section { padding: 6rem 0; }
section.tight { padding: 4rem 0; }

/* ---- Features / Why Us cards ---- */
.feature-card {
  background: var(--white);
  border: 1px solid var(--light-lav);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--violet), var(--lavender));
  transform: scaleX(0);
  transition: transform 0.4s;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--lavender); }
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 60px; height: 60px;
  background: var(--light-lav);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  color: var(--violet);
  transition: background 0.3s, color 0.3s;
}
.feature-card:hover .feature-icon {
  background: var(--violet);
  color: var(--white);
}
.feature-card h5 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.feature-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* ---- Service cards ---- */
.service-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.service-card-bg {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  transition: transform 0.5s;
}
.service-card:hover .service-card-bg { transform: scale(1.05); }
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,11,31,0.9) 0%, rgba(13,11,31,0.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: background 0.3s;
}
.service-card:hover .service-card-overlay {
  background: linear-gradient(to top, rgba(83,74,183,0.92) 0%, rgba(38,33,92,0.5) 60%, transparent 100%);
}
.service-card-overlay h5 {
  color: var(--white);
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
}
.service-card-overlay p {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  line-height: 1.5;
  transform: translateY(8px);
  opacity: 0;
  transition: all 0.3s;
}
.service-card:hover .service-card-overlay p { opacity: 1; transform: translateY(0); }

/* ---- Gallery grid ---- */
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img, .gallery-placeholder {
  width: 100%;
  display: block;
  transition: transform 0.5s;
}
.gallery-placeholder {
  background: linear-gradient(135deg, var(--light-lav), var(--lavender));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--violet);
  font-size: 2.5rem;
  padding: 3rem 1rem;
  min-height: 200px;
}
.gallery-placeholder span {
  font-size: 0.8rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--navy);
  text-align: center;
}
.gallery-item:hover .gallery-placeholder,
.gallery-item:hover img { transform: scale(1.06); }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(13,11,31,0.85), transparent);
  color: var(--white);
  font-size: 0.8rem;
  padding: 1.5rem 1rem 0.75rem;
  transform: translateY(100%);
  transition: transform 0.35s;
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }

/* ---- Clients section ---- */
.client-badge {
  background: var(--white);
  border: 1.5px solid var(--light-lav);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  height: 100%;
}
.client-badge:hover { border-color: var(--lavender); box-shadow: var(--shadow); }
.client-badge i { font-size: 1.5rem; color: var(--violet); }
.client-badge span { font-weight: 500; font-size: 0.9rem; color: var(--navy); }

/* ---- Testimonial / CTA strip ---- */
.cta-strip {
  background: linear-gradient(135deg, var(--navy), var(--dark2));
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(83,74,183,0.25), transparent 70%);
  pointer-events: none;
}
.cta-strip h2 { color: var(--white); }
.cta-strip p  { color: rgba(255,255,255,0.65); }

/* ---- Page hero (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 100%);
  padding: 9rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero.dark-after::after { background: var(--off-white); }

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  font-weight: 300;
}
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1.05rem; }
.breadcrumb { background: none; margin: 0; padding: 0; }
.breadcrumb-item a { color: var(--lavender); }
.breadcrumb-item.active { color: rgba(255,255,255,0.5); }
.breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,0.3); }

/* ---- About page ---- */
.timeline {
  position: relative;
  padding-left: 2rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--violet), var(--lavender));
}
.timeline-item { position: relative; margin-bottom: 2.5rem; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.4rem; top: 8px;
  width: 10px; height: 10px;
  background: var(--violet);
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 3px var(--lavender);
}
.timeline-item h6 { font-family: 'DM Sans', sans-serif; font-weight: 600; color: var(--violet); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.25rem; }
.timeline-item p { font-size: 0.95rem; color: var(--text-muted); margin: 0; }

.founder-card {
  background: linear-gradient(135deg, var(--light-lav), rgba(255,255,255,0.8));
  border: 1px solid var(--lavender);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  height: 100%;
}
.founder-avatar {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--navy));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.2rem;
  color: var(--white);
}

/* ---- FAQ ---- */
.accordion-item {
  border: 1px solid var(--light-lav) !important;
  border-radius: var(--radius) !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.accordion-button {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  color: var(--navy);
  background: var(--white);
  border: none;
  padding: 1.25rem 1.5rem;
}
.accordion-button:not(.collapsed) {
  background: var(--light-lav);
  color: var(--violet);
  box-shadow: none;
}
.accordion-button::after { filter: hue-rotate(230deg); }
.accordion-body { padding: 1.25rem 1.5rem; color: var(--text-muted); line-height: 1.75; font-size: 0.95rem; }

/* ---- Contact form ---- */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--light-lav);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow);
}
.form-label { font-size: 0.85rem; font-weight: 500; color: var(--navy); margin-bottom: 0.4rem; }
.form-control, .form-select {
  border: 1.5px solid #E2DFF5;
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-control:focus, .form-select:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(83,74,183,0.12);
  outline: none;
}
.form-control::placeholder { color: #B0AABF; }

.contact-info-card {
  background: linear-gradient(135deg, var(--navy), var(--dark2));
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  color: var(--white);
  height: 100%;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 0.5rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.contact-detail i { font-size: 1.2rem; color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.contact-detail-text { font-size: 0.9rem; line-height: 1.6; color: rgba(255,255,255,0.75); }
.contact-detail-text a { color: rgba(255,255,255,0.75); }
.contact-detail-text a:hover { color: var(--lavender); }

/* ---- Product category card ---- */
.product-cat-card {
  background: var(--white);
  border: 1px solid var(--light-lav);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  height: 100%;
  transition: all 0.3s;
  cursor: pointer;
}
.product-cat-card:hover {
  border-color: var(--violet);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.product-cat-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}
.product-cat-card h5 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.product-cat-card p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* ---- Stats band ---- */
.stats-band { background: var(--off-white); padding: 4rem 0; }
.stat-box { text-align: center; }
.stat-box .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--violet);
  line-height: 1;
}
.stat-box .num span { color: var(--gold); }
.stat-box .lbl { font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-top: 0.5rem; }

/* ---- Footer ---- */
.ga-footer { background: var(--dark); position: relative; }
.footer-wave { line-height: 0; }
.footer-wave svg { width: 100%; display: block; }
.footer-body { padding: 3rem 0 2rem; }
.footer-desc { font-size: 0.88rem; color: rgba(255,255,255,0.45); line-height: 1.75; max-width: 320px; }
.footer-heading {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.45); }
.footer-links a:hover { color: var(--lavender); padding-left: 4px; }
.footer-contact-list { list-style: none; padding: 0; }
.footer-contact-list li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.85rem; color: rgba(255,255,255,0.45);
  margin-bottom: 0.85rem; line-height: 1.5;
}
.footer-contact-list i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer-contact-list a { color: rgba(255,255,255,0.45); }
.footer-contact-list a:hover { color: var(--lavender); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.25rem 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}
.footer-credit { color: rgba(255,255,255,0.2); }

.social-btn {
  width: 38px; height: 38px;
  border: 1px solid rgba(175,169,236,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45);
  font-size: 1rem;
  transition: all 0.3s;
}
.social-btn:hover { background: var(--violet); border-color: var(--violet); color: var(--white); }

/* ---- WhatsApp float ---- */
.whatsapp-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: transform 0.3s, box-shadow 0.3s;
}
.whatsapp-float:hover { color: var(--white); transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,0.5); }
.whatsapp-tooltip {
  position: absolute;
  right: 66px;
  background: var(--dark);
  color: var(--white);
  font-size: 0.78rem;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ---- Animations ---- */
[data-aos] { opacity: 0; }
[data-aos].aos-animate { opacity: 1; }

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .ga-navbar {
    background: rgba(13,11,31,0.97);
    backdrop-filter: blur(16px);
    padding: 0.85rem 0;
  }
  .hero-visual { display: none; }
  .hero-stats { gap: 1.5rem; }
  section { padding: 4rem 0; }
}

@media (max-width: 767px) {
  .hero-title { font-size: 2.6rem; }
  .hero-stats { flex-wrap: wrap; gap: 1.25rem; }
  .contact-form-wrap { padding: 2rem 1.5rem; }
}
