/* Lakhan Tent House & Sound - Premium Style Sheets */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Yatra+One&family=Great+Vibes&display=swap');

/* Design Tokens & Variables */
:root {
  --maroon: #5b0612;
  --maroon-light: #7a0c1c;
  --maroon-dark: #3a030a;
  --gold: #d4af37;
  --gold-light: #ffd700;
  --gold-dark: #aa841c;
  --cream: #fdfbf7;
  --cream-dark: #f5f0e3;
  --charcoal: #1e1e1e;
  --charcoal-light: #2c2c2c;
  --text-dark: #222222;
  --text-muted: #666666;
  --white: #ffffff;
  --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  --box-shadow-premium: 0 15px 35px rgba(91, 6, 18, 0.08), 0 5px 15px rgba(0, 0, 0, 0.05);
  --box-shadow-gold: 0 10px 25px rgba(212, 175, 55, 0.2);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Headings Styling */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Marcellus', serif;
  color: var(--maroon-dark);
  font-weight: 500;
  letter-spacing: 1px;
}

/* Utility Components */
.section-title {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
  padding-bottom: 1.5rem;
}

.section-title h2 {
  font-size: 2.5rem;
  text-transform: uppercase;
  color: var(--maroon);
}

.section-title p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.section-title::after {
  content: '♦';
  font-size: 1.2rem;
  color: var(--gold);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  text-align: center;
}

.section-title::before {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background-color: var(--gold);
}

/* Buttons */
.btn-premium {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-light) 100%);
  color: var(--white);
  border: 1px solid var(--gold);
  border-radius: 4px;
  text-decoration: none;
  font-family: 'Marcellus', serif;
  font-size: 1.05rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.btn-premium:hover {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--maroon-dark);
  box-shadow: var(--box-shadow-gold);
  transform: translateY(-2px);
}

.btn-premium:focus, .btn-premium:active {
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-light) 100%);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transform: none;
}

.btn-gold {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--maroon-dark);
  border: 1px solid var(--maroon);
  border-radius: 4px;
  text-decoration: none;
  font-family: 'Marcellus', serif;
  font-size: 1.05rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-light) 100%);
  color: var(--white);
  box-shadow: 0 10px 25px rgba(91, 6, 18, 0.3);
  transform: translateY(-2px);
}

.btn-gold:focus, .btn-gold:active {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--maroon-dark);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transform: none;
}

/* Header & Navbar */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  background-color: rgba(91, 6, 18, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--gold);
}

header.scrolled {
  padding: 0.5rem 0;
  background-color: var(--maroon-dark);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
}

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

.logo-section h1 {
  font-family: 'Marcellus', serif;
  font-size: 1.8rem;
  color: var(--gold);
  font-weight: bold;
}

.logo-section h1 span {
  color: var(--white);
  font-size: 1.2rem;
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  letter-spacing: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
}

.nav-item a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Marcellus', serif;
  font-size: 1.05rem;
  padding: 0.5rem 1rem;
  margin: 0 0.2rem;
  transition: var(--transition-smooth);
  position: relative;
}

.nav-item a:hover {
  color: var(--gold);
}

.nav-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: var(--gold);
  transition: var(--transition-smooth);
  transform: translateX(-50%);
}

.nav-item a:hover::after {
  width: 80%;
}

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

/* Language Toggle Switch */
.lang-switcher {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--gold);
  border-radius: 20px;
  padding: 2px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.lang-btn {
  padding: 0.3rem 0.8rem;
  font-size: 0.85rem;
  border-radius: 18px;
  border: none;
  background: none;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition-smooth);
  font-weight: 500;
}

.lang-btn.active {
  background-color: var(--gold);
  color: var(--maroon-dark);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  font-size: 1.8rem;
  color: var(--gold);
  cursor: pointer;
  background: none;
  border: none;
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  background: linear-gradient(rgba(58, 3, 10, 0.6), rgba(91, 6, 18, 0.7)), url('assets/hero_bg.png') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 0 1rem;
}

.hero-content {
  max-width: 850px;
  z-index: 10;
  animation: fadeInUp 1.5s ease-out;
}

.hero-tagline {
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: 1rem;
  font-family: 'Marcellus', serif;
}

.hero h2 {
  font-size: 4rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  font-family: 'Marcellus', serif;
  line-height: 1.2;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero h2 span {
  color: var(--gold);
}

.hero-sub {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

/* About Section */
.about {
  padding: 8rem 2rem 5rem;
  background-color: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.about-img-container {
  position: relative;
  border: 1px solid var(--gold);
  padding: 15px;
  background: var(--white);
  box-shadow: var(--box-shadow-premium);
  border-radius: 8px;
}

.about-img-container img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
  border-radius: 4px;
  transition: var(--transition-smooth);
}

.about-img-container:hover img {
  transform: scale(1.02);
}

.about-text h3 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--maroon);
}

.about-text p {
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  font-size: 1.05rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.highlight-icon {
  font-size: 1.8rem;
  color: var(--gold-dark);
  line-height: 1;
}

.highlight-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--maroon);
}

.highlight-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Services Section */
.services {
  padding: 6rem 2rem;
  background-color: var(--cream-dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow-premium);
  transition: var(--transition-smooth);
  border-bottom: 3px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(91, 6, 18, 0.12);
  border-bottom: 3px solid var(--gold);
}

.service-img-wrapper {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.service-card:hover .service-img-wrapper img {
  transform: scale(1.1);
}

.service-content {
  padding: 2rem;
}

.service-icon {
  display: inline-block;
  padding: 0.6rem;
  background-color: rgba(212, 175, 55, 0.15);
  border-radius: 50%;
  color: var(--maroon);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-content h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: var(--maroon-dark);
}

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

.service-features {
  list-style: none;
  padding: 0;
  border-top: 1px solid var(--cream-dark);
  padding-top: 1rem;
}

.service-features li {
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-features li::before {
  content: '✔';
  color: var(--gold-dark);
  font-weight: bold;
}

/* Gallery Section */
.gallery {
  padding: 6rem 2rem;
  background-color: var(--white);
}

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: none;
  border: 1px solid rgba(91, 6, 18, 0.2);
  padding: 0.6rem 1.5rem;
  border-radius: 30px;
  font-family: 'Marcellus', serif;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  color: var(--maroon);
}

.filter-btn.active, .filter-btn:hover {
  background-color: var(--maroon);
  color: var(--white);
  border-color: var(--maroon);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  height: 280px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(58, 3, 10, 0.2), rgba(91, 6, 18, 0.85));
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 2rem;
  transition: var(--transition-smooth);
  text-align: center;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h4 {
  color: var(--gold);
  font-size: 1.25rem;
  margin-bottom: 0.3rem;
}

.gallery-overlay p {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 1px;
}

/* Booking Section */
.booking {
  padding: 6rem 2rem;
  background-color: var(--cream-dark);
}

.booking-container {
  max-width: 850px;
  margin: 0 auto;
  background-color: var(--white);
  border-radius: 12px;
  padding: 4rem 3rem;
  box-shadow: var(--box-shadow-premium);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

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

.form-full-width {
  grid-column: span 2;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--maroon-dark);
}

.form-control-premium {
  padding: 0.8rem 1rem;
  border: 1px solid rgba(91, 6, 18, 0.2);
  border-radius: 4px;
  background-color: var(--cream);
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-dark);
  transition: var(--transition-smooth);
}

.form-control-premium:focus {
  outline: none;
  border-color: var(--gold-dark);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.25);
}

.service-selectors {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.5rem;
}

.service-tag {
  background-color: var(--cream);
  border: 1px solid rgba(91, 6, 18, 0.15);
  padding: 0.5rem 1.2rem;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-size: 0.9rem;
  font-weight: 500;
  user-select: none;
  color: var(--text-dark);
}

.service-tag.selected {
  background-color: var(--maroon);
  color: var(--white);
  border-color: var(--maroon);
}

.booking-submit-container {
  margin-top: 1.5rem;
  text-align: center;
}

.booking-submit-container .btn-premium {
  width: 100%;
  max-width: 320px;
}

/* Contact & Info Section */
.contact {
  padding: 6rem 2rem;
  background-color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-card {
  background-color: var(--cream);
  border-radius: 8px;
  padding: 2rem;
  border-left: 4px solid var(--gold);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.contact-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--maroon);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.contact-card p {
  color: var(--text-dark);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.contact-card a {
  color: var(--maroon-light);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.contact-card a:hover {
  color: var(--gold-dark);
}

.map-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--box-shadow-premium);
  border: 2px solid var(--gold);
  height: 100%;
  min-height: 400px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Footer Section */
footer {
  background-color: var(--maroon-dark);
  color: var(--white);
  padding: 4rem 2rem 2rem;
  border-top: 4px solid var(--gold);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-about h3 {
  color: var(--gold);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  max-width: 450px;
  margin-bottom: 1.5rem;
}

.footer-links h4, .footer-contact h4 {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
  font-family: 'Marcellus', serif;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 0.8rem;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.footer-links ul li a:hover {
  color: var(--gold);
  padding-left: 5px;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
}

.footer-contact a {
  color: var(--gold);
  text-decoration: none;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  margin-left: 1.5rem;
  transition: var(--transition-smooth);
}

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

/* Floating Elements */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  background-color: #25d366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: var(--transition-smooth);
  animation: pulse-whatsapp 2s infinite;
  text-decoration: none;
}

.whatsapp-float svg {
  fill: var(--white);
  width: 32px;
  height: 32px;
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(10deg);
  background-color: #128c7e;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero h2 {
    font-size: 3rem;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-img-container img {
    height: 350px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 0.8rem 1.5rem;
  }
  
  .mobile-nav-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 66px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 66px);
    background-color: var(--maroon-dark);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 3rem;
    gap: 2rem;
    transition: 0.4s ease-in-out;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-item a {
    font-size: 1.3rem;
  }
  
  .hero h2 {
    font-size: 2.3rem;
  }
  
  .hero-tagline {
    font-size: 1.1rem;
    letter-spacing: 2px;
  }
  
  .hero-sub {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
    padding: 0 2rem;
  }
  
  .booking-container {
    padding: 2rem 1.5rem;
  }
  
  .booking-form {
    grid-template-columns: 1fr;
  }
  
  .form-full-width {
    grid-column: span 1;
  }
  
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  
  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

/* Verified Customers Section styling */
.verified-section {
  padding: 6rem 2rem;
  background-color: var(--cream-dark);
}

.verified-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto 5rem;
}

.verified-card {
  background-color: var(--white);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  box-shadow: var(--box-shadow-premium);
  border: 1px solid rgba(212, 175, 55, 0.2);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.verified-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-dark) 100%);
}

.verified-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(91, 6, 18, 0.1);
  border-color: var(--gold);
}

.verified-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.verified-user-info h3 {
  font-size: 1.4rem;
  color: var(--maroon-dark);
  margin-bottom: 0.2rem;
}

.verified-user-info span {
  display: inline-block;
  background-color: rgba(37, 211, 102, 0.12);
  color: #128c7e;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(37, 211, 102, 0.2);
}

.verified-badge-icon {
  font-size: 1.8rem;
  color: var(--gold);
  text-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.verified-rating {
  color: var(--gold-dark);
  font-size: 1rem;
  margin-bottom: 1.2rem;
}

.verified-feedback {
  color: var(--text-dark);
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.verified-signature-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px dashed rgba(91, 6, 18, 0.1);
  padding-top: 1.2rem;
}

.signature-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-right: 1.5rem;
}

.signature-text {
  font-family: 'Great Vibes', cursive;
  font-size: 2.2rem;
  color: #183059; /* Blue ink color */
  user-select: none;
  transform: rotate(-5deg);
  display: inline-block;
}

/* Become Verified Portal Layout */
.verification-portal {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--box-shadow-premium);
  border: 2px solid var(--gold);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
}

.portal-info {
  background: linear-gradient(135deg, var(--maroon-dark) 0%, var(--maroon) 100%);
  color: var(--white);
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.portal-info h3 {
  color: var(--gold);
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.portal-info p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.benefit-list {
  list-style: none;
}

.benefit-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
}

.benefit-list li i {
  color: var(--gold);
  font-size: 1.2rem;
}

.portal-tracker {
  padding: 4rem 3rem;
  background-color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tracker-title {
  font-size: 1.5rem;
  color: var(--maroon-dark);
  margin-bottom: 1.5rem;
  text-align: center;
}

.tracker-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tracker-status {
  text-align: center;
  background-color: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.tracker-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background-color: rgba(212, 175, 55, 0.1);
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.tracker-badge.verified {
  background-color: rgba(37, 211, 102, 0.1);
  border-color: #25d366;
  color: #25d366;
}

.tracker-progress {
  width: 100%;
  height: 8px;
  background-color: var(--cream-dark);
  border-radius: 10px;
  margin: 1.5rem 0 0.5rem;
  overflow: hidden;
}

.tracker-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-dark) 100%);
  width: 0%;
  border-radius: 10px;
  transition: width 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.progress-fill.verified {
  background: linear-gradient(90deg, #25d366 0%, #128c7e 100%);
}

.progress-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

.simulation-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .verification-portal {
    grid-template-columns: 1fr;
  }
  
  .portal-info, .portal-tracker {
    padding: 3rem 1.5rem;
  }
}
