* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  color: #2c2c2c;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
     color: inherit;
     text-decoration: none;
     font-weight: initial;
}

.luxury-bg {
  background: linear-gradient(135deg, #f8f6f2 0%, #ede6db 100%);
  position: relative;
}

.luxury-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
      radial-gradient(circle at 25% 25%, rgba(212, 175, 110, 0.08) 0%, transparent 50%),
      radial-gradient(circle at 75% 75%, rgba(139, 105, 58, 0.06) 0%, transparent 50%);
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(212, 175, 110, 0.2);
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: #8b693a;
  text-decoration: none;
  position: relative;
}

.logo-text {
  position: relative;
  letter-spacing: 0.15em;
}

.logo-rsvp {
  position: relative;
  margin-left: 0.5rem;
}

.logo-v-envelope {
  position: relative;
  display: inline-block;
  color: #d4af6e;
  font-weight: 700;
}

.logo-v-envelope::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1.2em;
  height: 0.8em;
  background: linear-gradient(135deg, #d4af6e 0%, #8b693a 100%);
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
  opacity: 0.3;
  z-index: -1;
  border-radius: 2px;
}

.logo-v-envelope::after {
  content: '';
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1em;
  height: 0.1em;
  background: rgba(255, 255, 255, 0.6);
  z-index: 1;
  border-radius: 1px;
}

.logo-accent {
  position: absolute;
  top: -5px;
  right: -15px;
  width: 8px;
  height: 8px;
  background: linear-gradient(45deg, #d4af6e, #8b693a);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(139, 105, 58, 0.3);
}

.logo-underline {
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #8b693a, #d4af6e, transparent);
  opacity: 0.6;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #2c2c2c;
  font-weight: 400;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a:hover {
  color: #8b693a;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #d4af6e, #8b693a);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.cta-nav {
  background: linear-gradient(135deg, #8b693a, #d4af6e) !important;
  color: white !important;
  padding: 0.8rem 1.8rem !important;
  border-radius: 30px;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.cta-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(139, 105, 58, 0.3);
}

.cta-nav::after {
  display: none;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 100px;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 5rem;
  padding: 0 2rem;
}

.hero-content h1 {
  font-size: 3.8rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-content .highlight {
  color: #8b693a;
  font-weight: 400;
  position: relative;
}

.hero-content .highlight::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #d4af6e, #8b693a);
  opacity: 0.6;
}

.hero-content p {
  font-size: 1.3rem;
  color: #666;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  font-weight: 400;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  border-radius: 15px;
  border: 1px solid rgba(212, 175, 110, 0.2);
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #8b693a;
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
}

.hero-cta {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.btn-primary {
  background: linear-gradient(135deg, #8b693a, #d4af6e);
  color: white;
  padding: 1.3rem 2.8rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(139, 105, 58, 0.4);
}

.btn-secondary {
  color: #8b693a;
  font-size: 1.1rem;
  text-decoration: none;
  position: relative;
  font-weight: 500;
  padding: 1rem 0;
}

.btn-secondary::after {
  content: '→';
  margin-left: 0.5rem;
  transition: margin-left 0.3s ease;
}

.btn-secondary:hover::after {
  margin-left: 1rem;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  width: 100%;
  max-width: 500px;
  height: 600px;
  background: linear-gradient(135deg, rgba(139, 105, 58, 0.1), rgba(212, 175, 110, 0.1));
  border-radius: 25px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(139, 105, 58, 0.15);
  border: 1px solid rgba(212, 175, 110, 0.2);
}

.hero-image::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    /* Add the image */
    background: url('/custom/home/images/izan_rsvp.png') no-repeat center center;
    background-size: contain;

    /* Set dimensions for visibility */
    width: 90%;   /* adjust as needed */
    height: 90%;  /* adjust as needed */
}


.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 1.8rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(212, 175, 110, 0.2);
}

.card-1 {
  top: 8%;
  right: -12%;
  width: 220px;
}

.card-2 {
  bottom: 15%;
  left: -18%;
  width: 200px;
}

.card-title {
  font-size: 1rem;
  font-weight: 600;
  color: #8b693a;
  margin-bottom: 0.8rem;
}

.card-text {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.5;
}

/* Services Section */
.services {
  padding: 8rem 0;
  background: white;
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d4af6e, transparent);
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  text-align: center;
  margin-bottom: 5rem;
}

.section-title h2 {
  font-size: 3.2rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.section-title p {
  font-size: 1.3rem;
  color: #666;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 3rem;
  margin-top: 5rem;
}

.service-card {
  background: linear-gradient(135deg, #fafafa, #f5f5f5);
  padding: 3.5rem;
  border-radius: 25px;
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
  border: 1px solid rgba(212, 175, 110, 0.1);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #d4af6e, #8b693a);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(139, 105, 58, 0.2);
}

.service-icon {
  font-size: 3.5rem;
  margin-bottom: 2rem;
  display: block;
}

.service-card h3 {
  font-size: 1.6rem;
  color: #8b693a;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.service-card p {
  color: #666;
  line-height: 1.8;
  font-size: 1.05rem;
}

/* RSVP Chatbot Section */
.chatbot-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, #f8f6f2 0%, #ede6db 100%);
  position: relative;
}

.chatbot-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
      radial-gradient(circle at 25% 25%, rgba(212, 175, 110, 0.08) 0%, transparent 50%),
      radial-gradient(circle at 75% 75%, rgba(139, 105, 58, 0.06) 0%, transparent 50%);
}

.chatbot-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

.chatbot-features {
  margin: 5rem 0;
}

.chatbot-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-bottom: 5rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(212, 175, 110, 0.2);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(139, 105, 58, 0.15);
  background: rgba(255, 255, 255, 0.95);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.4rem;
  color: #8b693a;
  margin-bottom: 1rem;
  font-weight: 600;
}

.feature-card p {
  color: #666;
  line-height: 1.7;
}

.chat-examples {
  background: white;
  padding: 4rem;
  border-radius: 25px;
  margin: 4rem 0;
  border: 1px solid rgba(212, 175, 110, 0.2);
  box-shadow: 0 20px 40px rgba(139, 105, 58, 0.1);
}

.chat-examples h3 {
  text-align: center;
  font-size: 2.2rem;
  color: #8b693a;
  margin-bottom: 3rem;
  font-weight: 600;
}

.chat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

.chat-showcase {
  text-align: center;
}

.chat-category {
  font-size: 1.2rem;
  font-weight: 600;
  color: #8b693a;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(212, 175, 110, 0.3);
}

.chat-images {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.chat-img {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid rgba(212, 175, 110, 0.2);
}

.chat-img:hover {
  transform: scale(1.05);
  box-shadow: 0 25px 50px rgba(139, 105, 58, 0.2);
}

.process-flow {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 246, 242, 0.9));
  padding: 4rem;
  border-radius: 25px;
  margin-top: 4rem;
  border: 1px solid rgba(212, 175, 110, 0.2);
}

.process-flow h3 {
  text-align: center;
  font-size: 2.2rem;
  color: #8b693a;
  margin-bottom: 3rem;
  font-weight: 600;
}

.flow-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.flow-step {
  flex: 1;
  min-width: 200px;
  text-align: center;
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(139, 105, 58, 0.1);
  border: 1px solid rgba(212, 175, 110, 0.2);
  transition: all 0.3s ease;
}

.flow-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(139, 105, 58, 0.15);
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #8b693a, #d4af6e);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 20px rgba(139, 105, 58, 0.3);
}

.step-content h4 {
  font-size: 1.1rem;
  color: #8b693a;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.step-content p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

.flow-arrow {
  font-size: 2rem;
  color: #d4af6e;
  font-weight: bold;
  flex-shrink: 0;
}

/* Testimonials Section */
.testimonials {
  padding: 8rem 0;
  background: white;
  position: relative;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.testimonials-header {
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
}

.google-reviews {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: linear-gradient(135deg, #f8f6f2, #f0ece4);
  padding: 2rem 3rem;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 110, 0.2);
  box-shadow: 0 10px 25px rgba(139, 105, 58, 0.1);
}

.google-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.google-icon {
  font-size: 2rem;
  color: #4285f4;
}

.rating-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.stars {
  color: #ffa500;
  font-size: 1.2rem;
  font-weight: bold;
}

.rating-text {
  color: #8b693a;
  font-weight: 600;
  font-size: 1rem;
}

.view-all-reviews {
  background: linear-gradient(135deg, #8b693a, #d4af6e);
  color: white;
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.view-all-reviews:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 105, 58, 0.3);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin: 4rem 0;
}

.testimonial-card {
  background: linear-gradient(135deg, #f8f6f2, #f0ece4);
  padding: 3rem;
  border-radius: 25px;
  position: relative;
  border: 1px solid rgba(212, 175, 110, 0.2);
  transition: all 0.3s ease;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, transparent);
  transition: background 0.3s ease;
}

.google-review::before {
  background: linear-gradient(90deg, #4285f4, #34a853, #fbbc05, #ea4335);
}

.direct-review::before {
  background: linear-gradient(90deg, #8b693a, #d4af6e);
}

.featured-review::before {
  background: linear-gradient(90deg, #d4af6e, #8b693a);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(139, 105, 58, 0.15);
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-source {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.source-badge {
  padding: 0.4rem 1rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.source-badge.google {
  background: rgba(66, 133, 244, 0.1);
  color: #4285f4;
  border: 1px solid rgba(66, 133, 244, 0.2);
}

.source-badge.direct {
  background: rgba(139, 105, 58, 0.1);
  color: #8b693a;
  border: 1px solid rgba(139, 105, 58, 0.2);
}

.source-badge.featured {
  background: rgba(212, 175, 110, 0.1);
  color: #d4af6e;
  border: 1px solid rgba(212, 175, 110, 0.2);
}

.testimonial-quote {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 2rem;
  font-style: italic;
  position: relative;
  padding-left: 2rem;
}

.testimonial-quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 3rem;
  color: #d4af6e;
  font-family: serif;
}

.testimonial-author {
  color: #8b693a;
  font-weight: 600;
  font-size: 1rem;
}

.testimonial-event {
  color: #888;
  font-size: 0.9rem;
  margin-top: 0.3rem;
}

.testimonials-footer {
  margin-top: 5rem;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(139, 105, 58, 0.05), rgba(212, 175, 110, 0.05));
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 110, 0.2);
}

.trust-indicators {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.indicator {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  border: 1px solid rgba(212, 175, 110, 0.1);
  transition: all 0.3s ease;
}

.indicator:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(139, 105, 58, 0.1);
}

.indicator-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #8b693a;
  margin-bottom: 0.5rem;
}

.indicator-label {
  font-size: 0.9rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Responsive Testimonials */
@media (max-width: 968px) {
  .testimonials-header {
      margin-bottom: 3rem;
  }

  .google-reviews {
      flex-direction: column;
      gap: 1.5rem;
      text-align: center;
      padding: 2rem;
  }

  .google-badge {
      justify-content: center;
  }

  .trust-indicators {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
  }

  .testimonials-footer {
      padding: 2rem;
  }
}

@media (max-width: 480px) {
  .trust-indicators {
      grid-template-columns: 1fr;
  }
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #8b693a, #d4af6e);
  color: white;
  padding: 8rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
      radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.cta-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

.cta-section h2 {
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.cta-section p {
  font-size: 1.4rem;
  margin-bottom: 3.5rem;
  opacity: 0.95;
  line-height: 1.6;
}

.btn-white {
  background: white;
  color: #8b693a;
  padding: 1.3rem 3rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3);
}

/* Footer */
footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
  color: white;
  padding: 6rem 0 0;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
      radial-gradient(circle at 20% 30%, rgba(212, 175, 110, 0.05) 0%, transparent 50%),
      radial-gradient(circle at 80% 70%, rgba(139, 105, 58, 0.03) 0%, transparent 50%);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand {
  max-width: 350px;
}

.footer-logo {
  display: flex;
  align-items: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #d4af6e;
  margin-bottom: 2rem;
  text-decoration: none;
  position: relative;
}

.footer-logo-text {
  position: relative;
  letter-spacing: 0.15em;
}

.footer-logo-rsvp {
  position: relative;
  margin-left: 0.4rem;
}

.footer-logo-v-envelope {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-weight: 700;
}

.footer-logo-v-envelope::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1.1em;
  height: 0.7em;
  background: linear-gradient(135deg, #ffffff 0%, #d4af6e 100%);
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
  opacity: 0.4;
  z-index: -1;
  border-radius: 2px;
}

.footer-logo-v-envelope::after {
  content: '';
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.9em;
  height: 0.08em;
  background: rgba(212, 175, 110, 0.8);
  z-index: 1;
  border-radius: 1px;
}

.footer-logo-accent {
  position: absolute;
  top: -5px;
  right: -15px;
  width: 10px;
  height: 10px;
  background: linear-gradient(45deg, #d4af6e, #8b693a);
  border-radius: 50%;
  box-shadow: 0 3px 10px rgba(212, 175, 110, 0.4);
}

.footer-desc {
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}

.footer-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(212, 175, 110, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(212, 175, 110, 0.2);
}

.footer-google-ratings {
  margin-top: 2rem;
}

.google-rating-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(212, 175, 110, 0.2);
  backdrop-filter: blur(10px);
}

.google-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.google-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.google-g {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #4285f4, #34a853, #fbbc05, #ea4335);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.5rem;
}

.rating-label {
  color: #d4af6e;
  font-weight: 600;
  font-size: 1.1rem;
}

.overall-rating {
  text-align: right;
}

.rating-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #d4af6e;
  display: block;
  line-height: 1;
}

.rating-stars {
  color: #ffa500;
  font-size: 1.2rem;
  margin-top: 0.3rem;
}

.rating-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.rating-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.star-count {
  color: #ccc;
  font-size: 0.9rem;
  min-width: 25px;
}

.bar {
  flex: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.fill {
  height: 100%;
  background: linear-gradient(90deg, #4285f4, #34a853);
  border-radius: 4px;
  transition: width 0.3s ease;
}

.percentage {
  color: #aaa;
  font-size: 0.8rem;
  min-width: 35px;
  text-align: right;
}

.google-link {
  color: #d4af6e;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.google-link:hover {
  color: #ffffff;
}

.google-link::after {
  content: '→';
  transition: transform 0.3s ease;
}

.google-link:hover::after {
  transform: translateX(3px);
}

.footer-stat {
  text-align: center;
}

.footer-stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: #d4af6e;
  margin-bottom: 0.3rem;
}

.footer-stat-label {
  font-size: 0.8rem;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-section h4 {
  color: #d4af6e;
  margin-bottom: 2rem;
  font-size: 1.3rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #d4af6e, #8b693a);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
  position: relative;
  padding-left: 1.5rem;
}

.footer-links a::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #d4af6e;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  color: #d4af6e;
  padding-left: 2rem;
}

.footer-links a:hover::before {
  opacity: 1;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(212, 175, 110, 0.1);
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(212, 175, 110, 0.1);
  transform: translateX(5px);
}

.contact-icon {
  font-size: 1.5rem;
  width: 40px;
  text-align: center;
}

.contact-details {
  flex: 1;
}

.contact-label {
  font-size: 0.8rem;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

.contact-value {
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
}

.footer-cta {
  background: linear-gradient(135deg, rgba(139, 105, 58, 0.2), rgba(212, 175, 110, 0.1));
  padding: 3rem;
  border-radius: 20px;
  margin-bottom: 4rem;
  border: 1px solid rgba(212, 175, 110, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.cta-content h3 {
  font-size: 2rem;
  color: #d4af6e;
  margin-bottom: 1rem;
  font-weight: 600;
}

.cta-content p {
  color: #ccc;
  font-size: 1.1rem;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-shrink: 0;
}

.btn-footer-primary {
  background: linear-gradient(135deg, #8b693a, #d4af6e);
  color: white;
  padding: 1rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.btn-footer-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(139, 105, 58, 0.4);
}

.btn-footer-secondary {
  color: #d4af6e;
  text-decoration: none;
  font-weight: 500;
  padding: 1rem;
  border: 2px solid rgba(212, 175, 110, 0.3);
  border-radius: 30px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.btn-footer-secondary:hover {
  background: rgba(212, 175, 110, 0.1);
  border-color: #d4af6e;
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 110, 0.3), transparent);
  margin: 3rem 0;
}

.footer-bottom {
  padding-bottom: 3rem;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-copyright p {
  color: #888;
  font-size: 0.95rem;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: #aaa;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #d4af6e;
}

.footer-tagline {
  text-align: center;
}

.footer-tagline p {
  color: #aaa;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.footer-guarantee {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.guarantee-badge {
  background: rgba(212, 175, 110, 0.1);
  color: #d4af6e;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(212, 175, 110, 0.2);
}

/* Responsive Design */
@media (max-width: 968px) {
  .hero-container {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 4rem;
  }

  .hero-content h1 {
      font-size: 3rem;
  }

  .hero-stats {
      grid-template-columns: 1fr;
      gap: 1.5rem;
  }

  .services-grid {
      grid-template-columns: 1fr;
  }

  .floating-card {
      display: none;
  }

  .nav-links {
      display: none;
  }

  .footer-content {
      grid-template-columns: 1fr;
      gap: 3rem;
      text-align: center;
  }

  .footer-stats {
      grid-template-columns: 1fr;
      gap: 1rem;
  }

  .footer-cta {
      flex-direction: column;
      text-align: center;
      gap: 2rem;
  }

  .cta-actions {
      flex-direction: column;
      width: 100%;
  }

  .btn-footer-primary,
  .btn-footer-secondary {
      width: 100%;
      text-align: center;
  }

  .footer-bottom-content {
      flex-direction: column;
      text-align: center;
  }

  .footer-guarantee {
      flex-direction: column;
      align-items: center;
  }

  .guarantee-badge {
      width: 100%;
      max-width: 250px;
      text-align: center;
  }

  .section-title h2 {
      font-size: 2.5rem;
  }

  .cta-section h2 {
      font-size: 2.8rem;
  }

  .flow-steps {
      flex-direction: column;
  }

  .flow-arrow {
      transform: rotate(90deg);
      margin: 1rem 0;
  }

  .chat-grid {
      grid-template-columns: 1fr;
  }

  .chatbot-content {
      grid-template-columns: 1fr;
  }

  .chat-examples {
      padding: 2.5rem;
  }

  .process-flow {
      padding: 2.5rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(40px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.hero-content > * {
  animation: fadeInUp 0.8s ease forwards;
}

.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.3s; }
.hero-content > *:nth-child(3) { animation-delay: 0.5s; }
.hero-content > *:nth-child(4) { animation-delay: 0.7s; }
.hero-content > *:nth-child(5) { animation-delay: 0.9s; }