/*
Theme Name: Prime Moments
Theme URI: https://primemoments.in
Author: Prime Moments
Author URI: https://primemoments.in
Description: A premium one-page WordPress theme for creative agencies. Professional, modern design with corporate events, gifting, graphic design, digital marketing and web development services.
Version: 1.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: prime-moments
Domain Path: /languages
*/

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #050e1f;
  color: #e8e4d9;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== VARIABLES ===== */
:root {
  --navy: #050e1f;
  --navy-mid: #0a1931;
  --navy-card: #0d2040;
  --gold: #c9a84c;
  --gold-light: #e2c06e;
  --gold-pale: #f5e6b8;
  --white: #ffffff;
  --text-muted: #8a9bb5;
  --border: rgba(201,168,76,0.18);
}

/* ===== UTILITY ===== */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title span { color: var(--gold); }
.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.8;
  margin-bottom: 48px;
}
.gold-divider {
  width: 64px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin-bottom: 24px;
}
section { padding: 100px 0; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto 48px; }
.text-center .gold-divider { margin: 0 auto 24px; }

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  padding: 18px 0;
  background: rgba(5,14,31,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}
nav .container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

.custom-logo-link,

.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 13px; font-weight: 500; letter-spacing: 0.5px;
  color: var(--text-muted); text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 10px 24px;
  border-radius: 6px;
  transition: opacity 0.2s !important;
}
.nav-cta:hover { opacity: 0.85; }
.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--gold); border-radius: 2px; }

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: 80px;
  background:
    linear-gradient(135deg, rgba(5,14,31,0.97) 0%, rgba(10,25,49,0.92) 60%, rgba(5,14,31,0.97) 100%),
    url('https://images.unsplash.com/photo-1540575467063-178a50c2df87?w=1600&q=80') center/cover no-repeat;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  min-height: calc(100vh - 80px);
  padding: 80px 0;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.12);
  border: 1px solid var(--border);
  padding: 8px 18px; border-radius: 50px;
  font-size: 12px; font-weight: 600; letter-spacing: 2px;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }
.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(40px, 5.5vw, 70px);
  font-weight: 800; line-height: 1.12;
  color: var(--white); margin-bottom: 24px;
}
.hero-title .accent { color: var(--gold); display: block; }
.hero-tagline {
  font-size: 18px; color: var(--text-muted);
  line-height: 1.8; margin-bottom: 16px;
}
.hero-location {
  font-size: 13px; color: var(--gold); font-weight: 600;
  letter-spacing: 1px; margin-bottom: 40px;
}
.hero-location::before { content: '📍 '; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-weight: 700; font-size: 15px;
  padding: 16px 36px; border-radius: 8px;
  text-decoration: none; border: none; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-block;
  box-shadow: 0 8px 32px rgba(201,168,76,0.28);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(201,168,76,0.4); }
.btn-outline {
  background: transparent;
  color: var(--gold-light);
  font-weight: 600; font-size: 15px;
  padding: 14px 34px; border-radius: 8px;
  text-decoration: none; cursor: pointer;
  border: 1px solid var(--border);
  transition: border-color 0.2s, background 0.2s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); background: rgba(201,168,76,0.06); }

.hero-stats {
	display:none!important;
  display: flex; gap: 32px; margin-top: 48px;
  padding-top: 40px; border-top: 1px solid var(--border);
}
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px; font-weight: 700; color: var(--gold);
  display: block; line-height: 1;
}
.stat-label { font-size: 12px; color: var(--text-muted); margin-top: 4px; }

.hero-visual {
  position: relative; display: flex; justify-content: center; align-items: center;
}
.hero-img-wrap {
  position: relative; width: 100%; max-width: 520px;
  border-radius: 24px; overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 0 1px var(--border);
}
.hero-img-wrap img { width: 100%; display: block; }
.hero-float-card {
  position: absolute; bottom: -20px; left: -20px;
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 18px 22px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  min-width: 180px;
}
.hero-float-card{
	display:none!important;
}
.hero-float-card .fc-label { font-size: 11px; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase;display:none!important; }
.hero-float-card .fc-value { font-family: 'Playfair Display', Georgia, serif; font-size: 22px; color: var(--gold); font-weight: 700; display:none!important;}
.hero-float-card-2 {
	display:none!important;
  position: absolute; top: -20px; right: -20px;
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 14px 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.stars { color: var(--gold); font-size: 16px; }

/* ===== ABOUT ===== */
#about { background: var(--navy-mid); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-img-col { position: relative; }
.about-img-main {
  width: 100%; border-radius: 20px; overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
  border: 1px solid var(--border);
}
.about-img-main img { width: 100%; display: block; object-fit: cover; height: 500px; }
.about-badge {
	display:none!important;
  position: absolute; bottom: -24px; right: -24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 16px; padding: 24px 28px;
  text-align: center;
  box-shadow: 0 16px 48px rgba(201,168,76,0.35);
}
.about-badge-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 36px; font-weight: 800; color: var(--navy);
  display: block; line-height: 1;
}
.about-badge-txt { font-size: 12px; font-weight: 700; color: var(--navy); opacity: 0.75; }
.about-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px; font-style: italic;
  color: var(--gold-pale);
  border-left: 3px solid var(--gold);
  padding-left: 20px; margin: 28px 0;
  line-height: 1.6;
}
.about-list { list-style: none; margin: 24px 0; }
.about-list li {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid rgba(201,168,76,0.08);
  font-size: 15px; color: #c8d8ec;
}
.about-list li::before {
  content: '✦'; color: var(--gold); font-size: 10px; flex-shrink: 0;
}

/* ===== SERVICES ===== */
#services { background: var(--navy); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  margin-top: 56px;
}
.service-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 20px; padding: 36px 28px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 24px 72px rgba(0,0,0,0.4); border-color: rgba(201,168,76,0.35); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  font-size: 40px; margin-bottom: 20px; display: block;
  filter: drop-shadow(0 4px 12px rgba(201,168,76,0.3));
}
.service-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px; color: var(--white); margin-bottom: 12px;
}
.service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-size: 11px; font-weight: 600; color: var(--gold);
  background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.2);
  padding: 4px 12px; border-radius: 20px;
}

/* ===== WHY CHOOSE ===== */
#why { background: var(--navy-mid); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.why-img { position: relative; }
.why-img img { width: 100%; border-radius: 20px; display: block; border: 1px solid var(--border); box-shadow: 0 32px 80px rgba(0,0,0,0.5); }
.why-points { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.why-point {
  background: rgba(201,168,76,0.06); border: 1px solid var(--border);
  border-radius: 14px; padding: 22px 20px;
  transition: border-color 0.2s;
}
.why-point:hover { border-color: var(--gold); }
.why-point-icon { font-size: 28px; margin-bottom: 10px; }
.why-point h4 { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.why-point p { font-size: 12px; color: var(--text-muted); }

/* ===== INDUSTRIES ===== */
#industries { background: var(--navy); }
.industries-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
  margin-top: 48px;
}
.industry-pill {
  background: var(--navy-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 18px 12px;
  text-align: center; font-size: 13px; font-weight: 600; color: #c8d8ec;
  transition: all 0.2s; cursor: default;
}
.industry-pill:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.06); }
.industry-pill .ind-icon { font-size: 26px; display: block; margin-bottom: 8px; }

/* ===== PROCESS ===== */
#process { background: var(--navy-mid); }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 56px; position: relative;
}
.process-steps::before {
  content: '';
  position: absolute; top: 36px; left: 12.5%; right: 12.5%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold), var(--gold), transparent);
  opacity: 0.35;
}
.process-step { text-align: center; padding: 0 20px; position: relative; }
.step-num {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', Georgia, serif; font-size: 26px; font-weight: 800;
  color: var(--navy); margin: 0 auto 24px;
  box-shadow: 0 8px 32px rgba(201,168,76,0.3);
  position: relative; z-index: 1;
}
.process-step h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px; color: var(--white); margin-bottom: 10px;
}
.process-step p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* ===== TESTIMONIALS ===== */
#testimonials { background: var(--navy); overflow: hidden; }
.testimonials-wrap { position: relative; }
.testimonials-track {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  margin-top: 56px;
}
.testi-card {
  background: var(--navy-card); border: 1px solid var(--border);
  border-radius: 20px; padding: 36px 30px;
  position: relative; transition: transform 0.3s, border-color 0.3s;
}
.testi-card:hover { transform: translateY(-4px); border-color: rgba(201,168,76,0.35); }
.testi-quote {
  font-size: 64px; line-height: 0.7; color: var(--gold); opacity: 0.3;
  font-family: Georgia, serif; margin-bottom: 20px;
}
.testi-text {
  font-size: 16px; color: #c8d8ec; line-height: 1.8;
  font-style: italic; margin-bottom: 28px;
}
.testi-stars { color: var(--gold); font-size: 18px; margin-bottom: 20px; letter-spacing: 2px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 52px; height: 52px; border-radius: 50%; overflow: hidden;
  border: 2px solid var(--border); flex-shrink: 0;
}
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-name { font-weight: 700; font-size: 15px; color: var(--white); }
.testi-role { font-size: 12px; color: var(--text-muted); }

/* ===== CONTACT ===== */
#contact { background: var(--navy-mid); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 72px; align-items: start; }
.contact-info h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 40px; color: var(--white); margin-bottom: 16px; line-height: 1.2;
}
.contact-info h2 span { color: var(--gold); }
.contact-info p { color: var(--text-muted); font-size: 16px; line-height: 1.8; margin-bottom: 40px; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 0; border-bottom: 1px solid var(--border);
}
.contact-detail:last-of-type { border-bottom: none; }
.contact-detail-icon {
  width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
  background: rgba(201,168,76,0.1); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.contact-detail-text .label { font-size: 11px; letter-spacing: 1px; color: var(--gold); text-transform: uppercase; font-weight: 700; }
.contact-detail-text .value { font-size: 15px; color: var(--white); margin-top: 2px; }

/* Form */
.contact-form {
  background: var(--navy-card); border: 1px solid var(--border);
  border-radius: 24px; padding: 44px 40px;
}
.form-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 26px; color: var(--white); margin-bottom: 6px;
}
.form-subtitle { font-size: 14px; color: var(--text-muted); margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 12px; font-weight: 700;
  color: var(--gold); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 14px 18px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(201,168,76,0.2);
  border-radius: 10px; color: var(--white); font-family: 'Inter', sans-serif;
  font-size: 14px; outline: none; transition: border-color 0.2s, background 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold); background: rgba(201,168,76,0.04);
}
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: var(--navy-card); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-submit {
  width: 100%; padding: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border: none; border-radius: 10px;
  font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 700;
  color: var(--navy); cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  margin-top: 6px;
  box-shadow: 0 8px 32px rgba(201,168,76,0.28);
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(201,168,76,0.4); }
.form-note { font-size: 12px; color: var(--text-muted); text-align: center; margin-top: 12px; }

/* ===== FOOTER ===== */
footer {
  background: #030b16; border-top: 1px solid var(--border);
  padding: 60px 0 36px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  margin-bottom: 48px;
}
.footer-brand-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px; color: var(--white); font-weight: 700;
  margin-bottom: 6px;
}
.footer-brand-name span { color: var(--gold); }
.footer-tagline { font-size: 12px; color: var(--text-muted); margin-bottom: 20px; }
.footer-desc { font-size: 14px; color: var(--text-muted); line-height: 1.8; margin-bottom: 24px; }
.social-links { display:none!important; display: flex; gap: 12px; }
.social-link {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(201,168,76,0.08); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; text-decoration: none;
  transition: all 0.2s;
}
.social-link:hover { background: rgba(201,168,76,0.18); border-color: var(--gold); }
.footer-col-title {
  font-size: 13px; font-weight: 700; color: var(--gold);
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 14px; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-copy { font-size: 13px; color: var(--text-muted); }
.footer-copy span { color: var(--gold); }
.footer-love { font-size: 13px; color: var(--text-muted); }

#testimonials { display: none; }
nav {
    background: #ffffff !important;
    border-bottom: 1px solid #e8e8e8;
}

.nav-links a {
    color: #1a1a1a !important;
}

.nav-links a:hover {
    color: #c9a84c !important;
}

.nav-logo {
    color: #1a1a1a !important;
}
.custom-logo-link img,
.nav-logo img {
    height: 48px !important;
    width: auto !important;
    max-width: 160px !important;
    object-fit: contain;
}

.custom-logo-link {
    padding: 0 !important;
    margin: 0 !important;
}
/* ===== STRIP ===== */
.gold-strip {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  padding: 20px 0; overflow: hidden;
}
.strip-inner { display: flex; gap: 64px; white-space: nowrap; animation: marquee 20s linear infinite; }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.strip-item {
  font-size: 13px; font-weight: 700; color: var(--navy);
  letter-spacing: 2px; text-transform: uppercase; flex-shrink: 0;
}
.strip-sep { color: rgba(5,14,31,0.4); margin: 0 8px; }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media(max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width: 768px) {
  .hero-grid, .about-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .testimonials-track { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
   .nav-links li a{color:#fff!important}
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-badge { position: static; margin-top: 20px; display: inline-block; }
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');
