/* ========================================
   VASTU SHASTRA CONSULTANCY - GLOBAL STYLES
   ======================================== */

:root {
  --color-gold: #d4af37;
  --color-saffron: #f4a460;
  --color-navy: #1a3a52;
  --color-dark: #0f1f2f;
  --color-light: #f8f6f3;
  --color-white: #ffffff;
  --color-accent: #c9a961;
  
  --font-serif: 'Georgia', 'Garamond', serif;
  --font-sans: 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
  
  --transition: all 0.3s ease;
  --spacing-unit: 1rem;
}

/* ========================================
   RESET & TYPOGRAPHY
   ======================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--color-dark);
  background-color: var(--color-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--color-navy);
  margin-bottom: var(--spacing-unit);
}

h1 { font-size: 3.5rem; font-weight: 700; }
h2 { font-size: 2.5rem; font-weight: 700; }
h3 { font-size: 1.8rem; font-weight: 600; }
h4 { font-size: 1.4rem; font-weight: 600; }
h5 { font-size: 1.1rem; font-weight: 600; }
h6 { font-size: 1rem; font-weight: 600; }

p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.8;
}

a {
  color: var(--color-gold);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--color-saffron);
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

header {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-dark) 100%);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  flex-wrap: wrap;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: var(--color-white);
  font-weight: 500;
  position: relative;
  transition: var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--color-gold);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--color-gold);
  border-radius: 2px;
  transition: var(--transition);
}

/* ========================================
   FOOTER
   ======================================== */

footer {
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-navy) 100%);
  color: var(--color-light);
  padding: 3rem 2rem 1rem;
  margin-top: 5rem;
  text-align: center;
}

footer p {
  color: var(--color-light);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  text-align: left;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.footer-section a {
  color: var(--color-light);
  display: block;
  margin-bottom: 0.5rem;
}

.footer-section a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  padding-top: 1rem;
  margin-top: 2rem;
  color: var(--color-accent);
  font-size: 0.9rem;
}

/* ========================================
   WHATSAPP FLOATING BUTTON
   ======================================== */

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  line-height: 60px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  background-color: #1ead4f;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* ========================================
   CONTAINER & SECTIONS
   ======================================== */

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 2rem;
}

.section-title h2 {
  display: inline-block;
  position: relative;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-saffron));
}

/* ========================================
   BUTTONS & BADGES
   ======================================== */

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border: 2px solid var(--color-gold);
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
  text-align: center;
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-navy);
}

.btn-primary:hover {
  background: var(--color-saffron);
  border-color: var(--color-saffron);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(244, 164, 96, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--color-gold);
}

.btn-secondary:hover {
  background: var(--color-gold);
  color: var(--color-navy);
  transform: translateY(-2px);
}

.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, var(--color-gold), var(--color-saffron));
  color: var(--color-navy);
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  box-shadow: 0 3px 10px rgba(212, 175, 55, 0.2);
}

/* ========================================
   CARDS
   ======================================== */

.card {
  background: var(--color-white);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  border-left: 4px solid var(--color-gold);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  border-left-color: var(--color-saffron);
}

.card h3 {
  color: var(--color-navy);
  margin-bottom: 1rem;
}

.card h4 {
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}

/* Benefit Cards - Single Row */
.benefit-card {
  background: white;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-left: 5px solid var(--color-gold);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 280px;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  border-left-color: var(--color-saffron);
}

.benefit-card h4 {
  color: var(--color-navy);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.benefit-card p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
  flex-grow: 1;
}

/* Value Cards - Single Row */
.value-card {
  background: white;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-left: 5px solid var(--color-gold);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 280px;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  border-left-color: var(--color-saffron);
}

.value-card h4 {
  color: var(--color-navy);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.value-card p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
  flex-grow: 1;
}

/* Responsive value cards */
@media (max-width: 1400px) {
  .value-card {
    min-height: 260px;
  }
}

@media (max-width: 1024px) {
  .value-card {
    padding: 1.5rem 1.25rem;
    min-height: 240px;
  }

  .value-card h4 {
    font-size: 1rem;
  }

  .value-card p {
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .grid[style*="grid-template-columns: repeat(6"] {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem;
  }

  .value-card {
    padding: 1.5rem 1rem;
    min-height: 220px;
  }
}

@media (max-width: 480px) {
  .grid[style*="grid-template-columns: repeat(6"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem;
  }

  .value-card {
    padding: 1.25rem 1rem;
    min-height: 200px;
  }

  .value-card h4 {
    font-size: 0.95rem;
  }

  .value-card p {
    font-size: 0.8rem;
  }
}

/* Contact Cards - Single Row */
.contact-card {
  background: white;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-top: 5px solid var(--color-gold);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 300px;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  border-top-color: var(--color-saffron);
}

.contact-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.contact-card h4 {
  color: var(--color-navy);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.contact-card p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.contact-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* Responsive contact cards */
@media (max-width: 1400px) {
  .contact-card {
    min-height: 280px;
  }
}

@media (max-width: 1024px) {
  .contact-card {
    padding: 1.5rem 1.25rem;
    min-height: 260px;
  }

  .contact-card h4 {
    font-size: 1rem;
  }

  .contact-card p {
    font-size: 0.85rem;
  }

  .contact-icon {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .grid[style*="grid-template-columns: repeat(6"] {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem;
  }

  .contact-card {
    padding: 1.5rem 1rem;
    min-height: 240px;
  }
}

@media (max-width: 480px) {
  .grid[style*="grid-template-columns: repeat(6"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem;
  }

  .contact-card {
    padding: 1.25rem 1rem;
    min-height: 220px;
  }

  .contact-card h4 {
    font-size: 0.95rem;
  }

  .contact-card p {
    font-size: 0.8rem;
  }

  .contact-icon {
    font-size: 2rem;
  }
}

/* Responsive benefit cards */
@media (max-width: 1400px) {
  .benefit-card {
    min-height: 260px;
  }
}

@media (max-width: 1024px) {
  .benefit-card {
    padding: 1.5rem 1.25rem;
    min-height: 240px;
  }

  .benefit-card h4 {
    font-size: 1rem;
  }

  .benefit-card p {
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .grid[style*="grid-template-columns: repeat(6"] {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem;
  }

  .benefit-card {
    padding: 1.5rem 1rem;
    min-height: 220px;
  }
}

@media (max-width: 480px) {
  .grid[style*="grid-template-columns: repeat(6"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem;
  }

  .benefit-card {
    padding: 1.25rem 1rem;
    min-height: 200px;
  }

  .benefit-card h4 {
    font-size: 0.95rem;
  }

  .benefit-card p {
    font-size: 0.8rem;
  }
}

.card p {
  color: #666;
  font-size: 0.95rem;
}

/* ========================================
   GRID LAYOUTS
   ======================================== */

.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4-desktop {
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

@media (max-width: 1200px) {
  .grid-4-desktop {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .grid-4-desktop {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .grid-4-desktop {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ========================================
   FORMS
   ======================================== */

form {
  max-width: 600px;
  margin: 0 auto;
}

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

label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--color-navy);
  font-weight: 600;
  font-size: 0.95rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
input[type="file"] {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: var(--transition);
  background: var(--color-white);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus,
input[type="file"]:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

textarea {
  resize: vertical;
  min-height: 150px;
  font-family: var(--font-sans);
}

.error-message {
  color: #e74c3c;
  font-size: 0.85rem;
  margin-top: 0.3rem;
  display: none;
}

.error-message.show {
  display: block;
}

input.invalid,
textarea.invalid {
  border-color: #e74c3c;
  background: #ffe6e6;
}

/* ========================================
   TOP CONTACT BAR
   ======================================== */

.contact-bar {
  background: var(--color-white);
  border-bottom: 1px solid #e0e0e0;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.contact-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 2rem;
}

.contact-left {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  color: var(--color-navy);
  font-size: 0.95rem;
  font-weight: 500;
}

.contact-icon {
  margin-right: 0.5rem;
  font-size: 1.1rem;
}

.contact-link {
  color: var(--color-gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--color-saffron);
}

@media (max-width: 768px) {
  .contact-bar {
    padding: 0.75rem 1rem;
  }

  .contact-bar-content {
    flex-direction: column;
    gap: 1rem;
  }

  .contact-left {
    width: 100%;
    gap: 1.5rem;
    justify-content: center;
  }

  .contact-item {
    font-size: 0.85rem;
  }

  .contact-link {
    font-size: 0.85rem;
  }
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-dark) 100%);
  color: var(--color-white);
  padding: 3rem 2rem;
  text-align: left;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.hero-content {
  text-align: left;
}

.hero-icon {
  font-size: 5rem;
  margin-bottom: 2rem;
  display: inline-block;
}

.hero-content h1 {
  color: var(--color-gold);
  margin-bottom: 1.5rem;
  line-height: 1.3;
  animation: slideInDown 0.8s ease;
  font-size: 2.5rem;
}

.hero-content p {
  color: var(--color-light);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  animation: slideInUp 0.8s ease 0.2s both;
  line-height: 1.8;
}

.hero-image {
  animation: slideInRight 0.8s ease 0.3s both;
}

.hero-image img {
  width: 100%;
  height: auto;
  max-width: 500px;
  margin: 0 auto;
  display: block;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Hero */
@media (max-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }

  .hero {
    padding: 2rem 1rem;
  }

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

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .hero-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
  }

  .hero-image {
    order: -1;
  }

  .hero-image img {
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero {
    padding: 1.5rem 1rem;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-content p {
    font-size: 0.9rem;
  }

  .hero-icon {
    font-size: 2.5rem;
  }

  .hero-image img {
    max-width: 250px;
  }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  h3 { font-size: 1.4rem; }
  
  nav {
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav-links {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    text-align: center;
  }
  
  .hamburger {
    display: flex;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  section {
    padding: 2.5rem 0;
  }
  
  .container {
    padding: 0 1.5rem;
  }
  
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
    line-height: 50px;
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.2rem; }
  
  .logo {
    font-size: 1.4rem;
  }
  
  .nav-links {
    gap: 0.8rem;
  }
  
  .card {
    padding: 1.5rem;
  }
  
  .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
  
  form {
    padding: 0 1rem;
  }
}

/* ========================================
   CONTACT INFO GRID - SINGLE ROW
   ======================================== */

.info-grid-single-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
}

@media (max-width: 1024px) {
  .info-grid-single-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .info-grid-single-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .info-grid-single-row {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   CONSULTANT PROFILE SECTION
   ======================================== */

@media (max-width: 768px) {
  .consultant-profile {
    grid-template-columns: 1fr !important;
  }
  
  .consultant-profile img {
    max-width: 100% !important;
  }
}

/* ========================================
   FULL-WIDTH SERVICE GRIDS
   ======================================== */

/* Single row grid - 6 columns */
.grid[style*="grid-template-columns: repeat(6"] {
  display: grid;
  gap: 2rem;
}

@media (max-width: 1024px) {
  .grid[style*="grid-template-columns: repeat(6"] {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .grid[style*="grid-template-columns: repeat(6"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .grid[style*="grid-template-columns: repeat(6"] {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }
}

/* Adjust padding wrapper for mobile */
@media (max-width: 768px) {
  div[style*="padding: 0 1.5rem"] {
    padding: 0 1rem !important;
  }
}

@media (max-width: 480px) {
  div[style*="padding: 0 1.5rem"] {
    padding: 0 0.75rem !important;
  }
}

/* ========================================
   HERO REDESIGNED - NEW LAYOUT
   ======================================== */

.hero-redesigned {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-dark) 100%);
  background-attachment: fixed;
  color: var(--color-white);
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.hero-redesigned::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    /* Multiple star layers for depth */
    radial-gradient(1px 1px at 20px 30px, rgba(255,255,255,0.8), transparent),
    radial-gradient(1px 1px at 60px 70px, rgba(255,255,255,0.9), transparent),
    radial-gradient(0.5px 0.5px at 50px 50px, rgba(255,255,255,0.7), transparent),
    radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.8), transparent),
    radial-gradient(0.5px 0.5px at 90px 10px, rgba(255,255,255,0.6), transparent),
    radial-gradient(1px 1px at 10px 90px, rgba(255,255,255,0.8), transparent),
    radial-gradient(0.5px 0.5px at 130px 130px, rgba(255,255,255,0.7), transparent),
    radial-gradient(1px 1px at 70px 40px, rgba(255,255,255,0.9), transparent),
    radial-gradient(0.5px 0.5px at 100px 100px, rgba(255,255,255,0.6), transparent),
    radial-gradient(1px 1px at 30px 110px, rgba(255,255,255,0.8), transparent);
  background-repeat: repeat;
  background-size: 150px 150px;
  opacity: 0.6;
  pointer-events: none;
  animation: twinkle 3s ease-in-out infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 0.8; }
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-left {
  padding: 2rem;
}

.hero-left h1 {
  font-size: 2.8rem;
  color: var(--color-white);
  margin-bottom: 1rem;
  line-height: 1.2;
  animation: slideInDown 0.8s ease;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--color-saffron);
  font-weight: 600;
  margin-bottom: 1rem;
  animation: slideInUp 0.8s ease 0.1s both;
}

.hero-services {
  font-size: 1.1rem;
  color: var(--color-light);
  margin-bottom: 3rem;
  animation: slideInUp 0.8s ease 0.2s both;
}

.hero-services strong {
  color: var(--color-gold);
  font-weight: 600;
}

.consultant-showcase {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
  animation: slideInLeft 0.8s ease 0.3s both;
}

.consultant-circular {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid var(--color-gold);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.5), 
              0 0 0 2px rgba(212, 175, 55, 0.2);
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.consultant-circular:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 50px rgba(212, 175, 55, 0.7), 
              0 0 0 2px rgba(212, 175, 55, 0.3);
}

.consultant-info h3 {
  font-size: 1.4rem;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.consultant-info p {
  font-size: 0.95rem;
  color: var(--color-light);
  line-height: 1.6;
}

.hero-right {
  padding: 2rem;
}

.appointment-box {
  background: var(--color-white);
  color: var(--color-navy);
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: slideInRight 0.8s ease 0.3s both;
}

.appointment-box h2 {
  color: var(--color-navy);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.appointment-box > p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.appointment-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.appointment-form input,
.appointment-form textarea {
  padding: 0.9rem 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.appointment-form input:focus,
.appointment-form textarea:focus {
  outline: none;
  border-color: var(--color-saffron);
  box-shadow: 0 0 0 3px rgba(244, 164, 96, 0.1);
}

.appointment-form input::placeholder,
.appointment-form textarea::placeholder {
  color: #999;
}

.btn-appointment {
  background: linear-gradient(135deg, #ff9900 0%, #ff7700 100%);
  color: white;
  padding: 1.1rem 2rem;
  border: none;
  border-radius: 5px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  width: 100%;
  letter-spacing: 0.5px;
}

.btn-appointment:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 153, 0, 0.5);
  background: linear-gradient(135deg, #ffaa11 0%, #ff8811 100%);
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Hero */
@media (max-width: 1024px) {
  .hero-left h1 {
    font-size: 2.2rem;
  }

  .consultant-circular {
    width: 150px;
    height: 150px;
  }

  .appointment-box {
    padding: 2.5rem;
  }
}

@media (max-width: 768px) {
  .hero-redesigned {
    padding: 2rem 1rem;
  }

  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-left h1 {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-services {
    font-size: 0.95rem;
  }

  .consultant-showcase {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .consultant-circular {
    width: 140px;
    height: 140px;
  }

  .consultant-info h3 {
    font-size: 1.2rem;
  }

  .appointment-box {
    padding: 2rem;
  }

  .appointment-box h2 {
    font-size: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-redesigned {
    padding: 1.5rem 1rem;
  }

  .hero-left h1 {
    font-size: 1.4rem;
  }

  .hero-left {
    padding: 1rem;
  }

  .hero-right {
    padding: 1rem;
  }

  .appointment-box {
    padding: 1.5rem;
  }

  .appointment-box h2 {
    font-size: 1.3rem;
  }

  .consultant-circular {
    width: 120px;
    height: 120px;
  }
}
