/* ==========================================================================
   Raxa Graphics - Luxury Gold Dark Theme & Design Tokens
   Domain: raxagraphics.in
   Tagline: You think It We print it
   ========================================================================== */

:root {
  /* Colors */
  --bg-dark: #07080a;
  --bg-card: #0e1119;
  --bg-card-hover: #141926;
  --bg-alt: #0a0c12;
  
  --gold-primary: #d4af37;
  --gold-light: #f3d068;
  --gold-dark: #aa841e;
  --gold-glow: rgba(212, 175, 55, 0.25);
  --gold-glow-intense: rgba(212, 175, 55, 0.45);
  
  --accent-purple: #8b5cf6;
  --accent-green: #10b981;
  --accent-whatsapp: #25d366;
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  
  --border-color: rgba(212, 175, 55, 0.12);
  --border-hover: rgba(212, 175, 55, 0.45);
  
  --glass-bg: rgba(14, 17, 25, 0.85);
  --glass-border: rgba(212, 175, 55, 0.18);
  
  /* Fonts */
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Outfit', system-ui, -apple-system, sans-serif;
  --font-serif: 'Cinzel', serif;
  
  /* Layout */
  --container-max: 1200px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: var(--radius-full);
  border: 2px solid var(--bg-dark);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  letter-spacing: -0.01em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding {
  padding: 7rem 0;
}

.alt-bg {
  background-color: var(--bg-alt);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

/* Typography & Subheadings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}

.subheading {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 1rem;
  background: rgba(212, 175, 55, 0.07);
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.gold-gradient-text {
  background: linear-gradient(135deg, #f5e0a3 0%, #d4af37 50%, #876510 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.1);
}

.text-center {
  text-align: center;
}

/* Buttons System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition-fast);
}

.btn-gold {
  background: linear-gradient(135deg, #f3d068 0%, #d4af37 100%);
  color: #000000;
  font-weight: 700;
  box-shadow: 0 4px 20px var(--gold-glow);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #ffffff 0%, #e5c158 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(243, 208, 104, 0.45);
}

.btn-outline {
  background: transparent;
  border-color: var(--border-color);
  color: var(--text-main);
}

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: var(--gold-primary);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(212, 175, 55, 0.1);
}

.btn-whatsapp {
  background-color: var(--accent-whatsapp);
  color: #ffffff;
  font-weight: 600;
}

.btn-whatsapp:hover {
  background-color: #20bd5a;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.btn-lg {
  padding: 1rem 2.2rem;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

.btn-block {
  width: 100%;
}

/* Announcement Top Bar */
.top-bar {
  background: #030406;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.85rem;
  padding: 0.6rem 0;
  color: var(--text-muted);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.top-info a:hover {
  color: var(--gold-primary);
}

.divider {
  color: var(--text-dim);
}

.whatsapp-btn-top {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent-whatsapp);
  font-weight: 600;
}

.whatsapp-btn-top:hover {
  color: #ffffff;
  transform: scale(1.02);
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 8, 10, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  padding: 0.75rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo-wrapper {
  display: flex;
  align-items: center;
  transition: transform var(--transition-fast);
}

.brand-logo-wrapper:hover {
  transform: scale(1.02);
}

.brand-logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
  position: relative;
  padding: 0.4rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-light);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold-primary);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--gold-primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--text-main);
  transition: all var(--transition-fast);
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 6.5rem 0 7.5rem;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.14) 0%, rgba(139, 92, 246, 0.04) 50%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.25rem;
  border-radius: var(--radius-full);
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-color);
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--gold-primary);
  box-shadow: 0 0 10px var(--gold-primary);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(212, 175, 55, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.hero-title {
  font-size: 3.6rem;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2.2rem;
  line-height: 1.75;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.tag-chip {
  background: var(--glass-bg);
  border: 1px solid var(--border-color);
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.check-icon {
  color: var(--gold-primary);
  font-style: normal;
  font-weight: bold;
}

.hero-buttons {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--border-color);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-light);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.stat-lbl {
  font-size: 0.85rem;
  color: var(--text-dim);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background-color: var(--border-color);
}

/* Hero Visual Showcase */
.hero-visual {
  position: relative;
}

.image-card-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-hover);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.85);
  background: var(--bg-card);
}

.hero-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0.9);
}

.image-card-wrapper:hover .hero-img {
  transform: scale(1.04);
  filter: brightness(1.0);
}

.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: rgba(10, 12, 18, 0.94);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.8);
  transition: all var(--transition-fast);
}

.floating-badge:hover {
  border-color: var(--gold-primary);
  transform: translateY(-3px);
}

.badge-top-right {
  top: 25px;
  right: 25px;
}

.badge-bottom-left {
  bottom: 30px;
  left: 25px;
}

.floating-icon {
  font-size: 1.6rem;
}

.floating-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gold-light);
}

.floating-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Tagline Banner Section */
.tagline-banner-section {
  background: linear-gradient(180deg, #0e1119 0%, #07080a 100%);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.tagline-banner-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.tagline-box {
  max-width: 850px;
  margin: 0 auto;
}

.tagline-small {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.25rem;
  color: var(--gold-primary);
  text-transform: uppercase;
}

.tagline-headline {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--gold-light);
  margin: 0.75rem 0;
  letter-spacing: -0.01em;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.tagline-line {
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  margin: 1.25rem auto;
}

.tagline-sub {
  color: var(--text-muted);
  font-size: 1.15rem;
  line-height: 1.6;
}

/* Services Grid Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.2rem;
  margin-top: 4rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--gold-primary), transparent) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.08);
}

.service-card:hover::after {
  opacity: 0.6;
}

.highlight-card {
  border-color: rgba(212, 175, 55, 0.25);
  background: linear-gradient(180deg, #121724 0%, #0e1119 100%);
}

.card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gold-primary);
  color: #000000;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  box-shadow: 0 0 10px var(--gold-glow);
}

.card-icon-box {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  transition: all var(--transition-fast);
}

.service-card:hover .card-icon-box {
  background: var(--gold-primary);
  color: #000000;
  box-shadow: 0 0 15px var(--gold-glow);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.9rem;
  letter-spacing: -0.01em;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.service-list {
  list-style: none;
  border-top: 1px solid var(--border-color);
  padding-top: 1.25rem;
  margin-bottom: 1.75rem;
}

.service-list li {
  font-size: 0.875rem;
  color: var(--text-main);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.service-list li::before {
  content: '•';
  color: var(--gold-primary);
  font-size: 1.4rem;
}

.card-link-btn {
  margin-top: auto;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-light);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform var(--transition-fast);
}

.card-link-btn:hover {
  color: #ffffff;
  transform: translateX(5px);
}

/* Process Section */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.2rem;
  margin-top: 4rem;
}

.process-step {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.8rem;
  position: relative;
  transition: all var(--transition-smooth);
}

.process-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--gold-primary);
  border-radius: 4px;
  transition: height var(--transition-smooth);
}

.process-step:hover {
  border-color: var(--gold-primary);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.process-step:hover::before {
  height: 100%;
}

.step-num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold-primary);
  opacity: 0.8;
  margin-bottom: 1rem;
}

.process-step h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.process-step p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Portfolio Section */
.portfolio-filter {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 2.2rem;
  margin-bottom: 3.5rem;
}

.filter-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: #000000;
  box-shadow: 0 4px 15px var(--gold-glow);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.2rem;
}

.portfolio-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  transition: all var(--transition-smooth);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.portfolio-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: 0 20px 45px rgba(212, 175, 55, 0.08);
}

.portfolio-img-box {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0.85);
}

.portfolio-card:hover .portfolio-img {
  transform: scale(1.06);
  filter: brightness(1.0);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(7, 8, 10, 0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
}

.category-tag {
  font-size: 0.75rem;
  color: var(--gold-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}

.portfolio-overlay h4 {
  font-size: 1.35rem;
  margin-bottom: 0.3rem;
  letter-spacing: -0.01em;
}

.portfolio-overlay p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.view-btn {
  align-self: flex-start;
  background: rgba(212, 175, 55, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-color);
  color: var(--gold-light);
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.view-btn:hover {
  background: var(--gold-primary);
  color: #000000;
  border-color: var(--gold-primary);
}

/* Why Us Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.2rem;
  margin-top: 4rem;
}

.feature-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  transition: all var(--transition-smooth);
}

.feature-box:hover {
  border-color: var(--gold-primary);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  font-size: 2.4rem;
  margin-bottom: 1.4rem;
  filter: drop-shadow(0 0 10px var(--gold-glow));
}

.feature-box h3 {
  font-size: 1.25rem;
  margin-bottom: 0.85rem;
  letter-spacing: -0.01em;
}

.feature-box p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-intro {
  color: var(--text-muted);
  margin-bottom: 2.2rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}

.info-item {
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  border: 1px solid var(--border-color);
}

.info-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.info-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.direct-wa-box {
  background: rgba(37, 211, 102, 0.07);
  border: 1px solid rgba(37, 211, 102, 0.25);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.direct-wa-box h4 {
  color: var(--accent-whatsapp);
  margin-bottom: 0.4rem;
}

.direct-wa-box p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

/* Contact Form */
.contact-form-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.8rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.contact-form h3 {
  font-size: 1.75rem;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}

.form-sub {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  background: var(--bg-dark);
  border: 1px solid var(--border-color);
  color: #ffffff;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-md);
  outline: none;
  transition: all var(--transition-fast);
}

.form-control:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.form-status-msg {
  margin-top: 1.25rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  text-align: center;
}

.form-status-msg.success {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid var(--accent-green);
  color: var(--accent-green);
}

/* Modal Styling */
.modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-backdrop.show {
  display: flex;
}

.modal-content {
  background: var(--bg-card);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-lg);
  max-width: 720px;
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.95);
  animation: modalFadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalFadeIn {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 2.2rem;
  cursor: pointer;
  z-index: 10;
  transition: color var(--transition-fast);
}

.modal-close:hover {
  color: var(--gold-primary);
}

.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.modal-img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
}

.modal-info {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-info h3 {
  font-size: 1.6rem;
  margin-bottom: 0.9rem;
  letter-spacing: -0.01em;
}

.modal-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.8rem;
  line-height: 1.65;
}

/* Footer */
.footer {
  background: #030406;
  border-top: 1px solid var(--border-color);
  padding: 5rem 0 2.5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

.footer-logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1.25rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.footer-motto {
  color: var(--gold-light) !important;
  font-family: var(--font-serif);
  margin-top: 0.75rem;
  font-size: 0.95rem;
}

.footer h4 {
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 0.75rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer ul li a:hover {
  color: var(--gold-primary);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2.2rem;
  color: var(--text-dim);
  font-size: 0.85rem;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .modal-body {
    grid-template-columns: 1fr;
  }
  
  .modal-img {
    height: 260px;
    min-height: auto;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
  
  .top-info span:not(:first-child) {
    display: none;
  }
  
  .nav-menu {
    position: fixed;
    top: 72px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 72px);
    background: var(--bg-dark);
    flex-direction: column;
    padding: 3.5rem 2rem;
    transition: left var(--transition-fast);
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.5);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
}
