/* ========================================
   WEB DESIGN PAGE STYLES
   ======================================== */

/* Reset & Base */
.web-design-page {
  overflow-x: hidden;
}

.web-design-page * {
  box-sizing: border-box;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 85vh;
  z-index: 1;
  background: #fff !important;
  margin: 0 !important;
  padding: 0 !important;
}

.hero-background {
  position: relative;
  width: 100%;
  min-height: 85vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent !important;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 60px;
}

/* Hero Content */
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: fadeInLeft 0.8s ease-out;
}

.hero-title {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
  margin: 0;
}

.hero-description {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  margin: 0;
}

.hero-button {
  background: white;
  color: black;
  border: none;
  border-radius: 30px;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.hero-button:hover {
  background: black;
  color: white;
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.hero-button:active {
  transform: translateY(0);
}

/* Hero Image */
.hero-image {
  padding-top: 50px;
  animation: fadeInRight 0.8s ease-out;
  overflow: hidden;
}

.hero-image img {
  width: 500px;
  height: 500px;
  display: block;
  object-fit: cover;
  min-height: 400px;
  transition: transform 0.3s ease;
}

.hero-image:hover img {
  transform: scale(1.05);
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features-section {
  padding: 80px 20px;
  background: #fff;
  position: relative;
  z-index: 2;
}

.features-header {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease-out;
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  color: black;
  margin: 0 0 16px 0;
}

.section-description {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 40px;
  align-items: start;
}

.features-column {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Feature Items */
.feature-item {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-out forwards;
}

.feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-item:nth-child(2) { animation-delay: 0.2s; }
.feature-item:nth-child(3) { animation-delay: 0.3s; }
.feature-item:nth-child(4) { animation-delay: 0.4s; }

.feature-title {
  font-size: 20px;
  font-weight: 600;
  color: black;
  margin: 0 0 12px 0;
}

.feature-text {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

/* Center Image */
.features-center {
  width: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}

.center-image {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
  animation: zoomIn 0.8s ease-out;
  display: block;
  object-fit: cover;
  min-height: 500px;
}

.center-image:hover {
  transform: scale(1.02);
}

/* ========================================
   TRANSFORMATION SECTION
   ======================================== */
.transformation-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.transformation-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(0,0,0,0.02)"/></svg>');
  background-size: 50px 50px;
  opacity: 0.3;
}

.transformation-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.transformation-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 24px;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.badge-icon {
  font-size: 16px;
  animation: rotate 3s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

.transformation-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  color: #1a1a1a;
  margin: 0 0 20px 0;
  text-align: center;
}

.highlight-red {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
}

.highlight-green {
  color: #10b981;
  position: relative;
  display: inline-block;
  font-weight: 900;
}

.highlight-green::after {
  content: '✓';
  position: absolute;
  top: -10px;
  right: -20px;
  font-size: 20px;
  color: #10b981;
}

.highlight-yellow {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
}

.transformation-subtitle {
  font-size: 20px;
  color: #6b7280;
  text-align: center;
  margin: 0 0 40px 0;
  line-height: 1.6;
}

/* Stats Row */
.stats-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin: 50px 0;
  padding: 30px;
  background: #fff;
  border-radius: 16px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

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

.stat-number {
  font-size: 42px;
  font-weight: 800;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: #6b7280;
  font-weight: 600;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: #e5e7eb;
}

/* Two Column Grid */
.transformation-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin: 60px 0;
  position: relative;
  z-index: 1;
}

/* Left Column: Image */
.transformation-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-circle {
  position: relative;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px dashed #f59e0b;
  padding: 15px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.transformation-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* Decorative Elements */
.deco-circle {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #f59e0b;
  background: #fff;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.25);
}

.deco-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.deco-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  left: 0px;
  animation: bounce 3s ease-in-out infinite;
}

.deco-2 {
  width: 240px;
  height: 240px;
  bottom: -60px;
  right: -20px;
  animation: bounce 3s ease-in-out infinite 1s;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.deco-triangle {
  position: absolute;
  bottom: -20px;
  right: 200px;
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-bottom: 70px solid rgba(245, 158, 11, 0.3);
  animation: rotate 10s linear infinite;
}

/* Right Column: Reasons List */
.reasons-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.reason-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: #fff;
  border-radius: 16px;
  border-left: 5px solid #f59e0b;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  position: relative;
}

.reason-item:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.reason-item.reason-orange {
  border-left-color: #f59e0b;
}

.reason-item.reason-orange .reason-icon {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

.reason-item.reason-pink {
  border-left-color: #ec4899;
}

.reason-item.reason-pink .reason-icon {
  background: linear-gradient(135deg, #f472b6 0%, #ec4899 100%);
}

.reason-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.reason-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.reason-content {
  flex: 1;
}

.reason-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 8px 0;
}

.reason-text {
  font-size: 15px;
  line-height: 1.7;
  color: #6b7280;
  margin: 0;
}

/* CTA Box */
.cta-box {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(217, 119, 6, 0.1) 100%);
  border: 3px solid #f59e0b;
  border-radius: 20px;
  padding: 50px;
  margin: 60px 0 40px 0;
  text-align: center;
  position: relative;
  box-shadow: 0 8px 32px rgba(245, 158, 11, 0.2);
}

.cta-box::before {
  content: '🔥';
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 50px;
  animation: bounce 2s ease-in-out infinite;
}

.cta-teaser {
  font-size: 20px;
  color: #1a1a1a;
  line-height: 1.7;
  margin: 0 0 30px 0;
  font-weight: 500;
}

.underline {
  text-decoration: underline;
  text-decoration-color: #f59e0b;
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
  font-weight: 700;
}

.btn-unlock {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #fff;
  border: none;
  padding: 20px 40px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.btn-unlock::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease-out, height 0.6s ease-out;
}

.btn-unlock:hover::before {
  width: 400px;
  height: 400px;
}

.btn-unlock:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 32px rgba(245, 158, 11, 0.5);
}

.btn-unlock:active {
  transform: translateY(0) scale(1);
}

.btn-icon {
  font-size: 24px;
  animation: unlock 2s ease-in-out infinite;
}

@keyframes unlock {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(10deg); }
}

.btn-text {
  position: relative;
  z-index: 1;
}

.btn-arrow {
  font-size: 24px;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.btn-unlock:hover .btn-arrow {
  transform: translateX(5px);
}

/* Social Proof */
.social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.avatar-group {
  display: flex;
  align-items: center;
}

.avatar-group img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid #fff;
  margin-left: -12px;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.avatar-group img:first-child {
  margin-left: 0;
}

.avatar-group img:hover {
  transform: scale(1.2);
  z-index: 10;
}

.avatar-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f59e0b;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border: 3px solid #fff;
  margin-left: -12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.social-proof-text {
  font-size: 15px;
  color: #374151;
  margin: 0;
}

.social-proof-text strong {
  color: #1a1a1a;
}

/* Guarantee Badge */
.guarantee-badge {
  background: rgba(16, 185, 129, 0.1);
  border: 2px solid #10b981;
  border-radius: 16px;
  padding: 24px 32px;
  text-align: center;
  color: #047857;
  font-size: 17px;
  line-height: 1.6;
  font-weight: 500;
  max-width: 800px;
  margin: 0 auto;
}

.text-green {
  color: #10b981;
  font-weight: 800;
}

/* ========================================
   PRICING SECTION
   ======================================== */
.pricing-section {
  padding: 80px 20px;
  background: #f8f9fa;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}

.pricing-card {
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  overflow: visible;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.pricing-card::before {
  display: none;
  content: none;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  border-color: #d1d5db;
}

.pricing-card.featured {
  border: 3px solid #10b981;
  border-radius: 16px;
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.2);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
  box-shadow: 0 16px 40px rgba(16, 185, 129, 0.3);
}

/* Popular Badge */
.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #10b981;
  color: #fff;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  z-index: 10;
  white-space: nowrap;
}

.pricing-header {
  padding: 32px 28px 24px;
  text-align: left;
  border-bottom: 1px solid #f3f4f6;
}

.plan-name {
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 8px 0;
}

.plan-subtitle {
  font-size: 14px;
  color: #6b7280;
  margin: 0 0 24px 0;
  line-height: 1.5;
}

.price-wrapper {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price {
  font-size: 48px;
  font-weight: 800;
  color: #1f5c8b;
  line-height: 1;
}

.price-period {
  font-size: 16px;
  color: #6b7280;
  font-weight: 500;
}

.pricing-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  flex-grow: 1;
}

.feature-item-pricing {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  font-size: 14px;
  line-height: 1.6;
  color: #374151;
}

.feature-item-pricing:not(:last-child) {
  border-bottom: 1px solid #f3f4f6;
}

.check-icon {
  width: 20px;
  height: 20px;
  color: #10b981;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-button {
  width: 100%;
  padding: 14px 24px;
  background: #fff;
  color: #10b981;
  border: 2px solid #10b981;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: auto;
}

.pricing-button:hover {
  background: #10b981;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.template-button {
  width: 100%;
  padding: 14px 24px;
  background: #fff;
  color: #10b981;
  border: 2px solid #10b981;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.template-button:hover {
  background: #10b981;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.featured-button {
  background: #10b981;
  color: #fff;
  border-color: #10b981;
}

.featured-button:hover {
  background: #059669;
  border-color: #059669;
}

.bonus-offer {
  margin-top: 16px;
  padding: 12px;
  background: #ecfdf5;
  border: 1px solid #10b981;
  border-radius: 8px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: #059669;
}


/*=========================================*/
/* Nút xem chi tiết gói */
.package-detail-link {
  display: block;
  text-align: center;
  color: #00B77C;   /* xanh giống nút */
  text-decoration: underline;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  margin: 6px 0 18px;
  transition: 0.25s ease;
}

.package-detail-link:hover {
  color: #009965;   /* xanh đậm hơn 1 tone */
  transform: translateY(-1px);
}


/* POPUP OVERLAY — giữ soft, không đổi */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(6px);
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 999;
}


/* POPUP BOX — thêm border + shadow xanh */
.popup-box {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 90%;
    max-width: 480px;
    padding: 30px;
    background: #ffffff;

    /* Xanh đồng bộ y chang nút */
    border: 2px solid #00B77C;
    border-radius: 24px;

    /* Shadow hơi ngả xanh */
    box-shadow: 0 15px 40px rgba(0, 183, 124, 0.25);

    transform: translate(-50%, -40%);
    opacity: 0;
    transition: opacity 0.35s ease, transform 0.35s ease;
    z-index: 1000;
    display: none;
  
    max-height: 80vh;       /* hạn chế chiều cao tối đa */
    overflow-y: scroll; /* vẫn cho scroll */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge cũ */
}

/* Thanh scroll đẹp */
.popup-box::-webkit-scrollbar {
    width: 0;
    height: 0;
}


.popup-box.show {
    display: block;
    opacity: 1;
    transform: translate(-50%, -50%);
}


/* CLOSE BUTTON — xanh giống nút */
.popup-close {
    font-size: 32px;
    position: absolute;
    top: 12px;
    right: 18px;
    cursor: pointer;
    font-weight: bold;

    color: #00B77C;  
    transition: 0.2s ease;
}

.popup-close:hover {
    color: #009965; /* xanh đậm hơn */
}




/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1.5" fill="rgba(0,0,0,0.03)"/></svg>');
  background-size: 60px 60px;
  opacity: 0.5;
}

.contact-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 20px;
}

.badge-icon {
  font-size: 16px;
}

.contact-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  position: relative;
  z-index: 1;
}

/* Contact Info */
.contact-info {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.contact-info-title {
  font-size: 24px;
  font-weight: 700;
  color: black;
  margin: 0 0 30px 0;
}

.info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.info-item:last-of-type {
  border-bottom: none;
  margin-bottom: 30px;
}

.info-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #333;
  flex-shrink: 0;
}

.info-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: black;
  margin: 0 0 6px 0;
}

.info-text p {
  font-size: 14px;
  color: black;
  margin: 0;
  line-height: 1.6;
}

.trust-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 2px solid rgba(255,255,255,0.1);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.1);
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.trust-icon {
  font-size: 18px;
}

.trust-text {
  font-size: 14px;
  font-weight: 600;
  color: #10b981;
}

/* Contact Form */
.contact-form-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  position: relative;
  z-index: 1;
}

/* Contact Form 7 Styling */
.contact-form-wrapper .wpcf7 {
  margin: 0;
}

.contact-form-wrapper .wpcf7-form {
  display: grid;
  gap: 6px;
}

.contact-form-wrapper .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.contact-form-wrapper input[type="text"],
.contact-form-wrapper input[type="email"],
.contact-form-wrapper input[type="tel"],
.contact-form-wrapper textarea {
  line-height: 1.5;
}

.contact-form-wrapper input[type="text"],
.contact-form-wrapper input[type="email"],
.contact-form-wrapper input[type="tel"],
.contact-form-wrapper select,
.contact-form-wrapper textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #fff;
  color: #333;
}

.contact-form-wrapper input[type="text"]:focus,
.contact-form-wrapper input[type="email"]:focus,
.contact-form-wrapper input[type="tel"]:focus,
.contact-form-wrapper select:focus,
.contact-form-wrapper textarea:focus {
  outline: none;
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.contact-form-wrapper select {
  cursor: pointer;
  appearance: none;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="%23666"><path d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
  line-height: 1.5;
  height: auto;
  min-height: 46px;
  white-space: normal;
  word-wrap: break-word;
}

.contact-form-wrapper select option {
  padding: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  background: #fff;
  white-space: normal;
}

.contact-form-wrapper textarea {
  min-height: 120px;
  resize: vertical;
  font-family: inherit;
}

.contact-form-wrapper label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 3px;
}

/* Grid Layout for Form Fields */
.contact-form-wrapper .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form-wrapper .form-field {
  display: flex;
  flex-direction: column;
}

.contact-form-wrapper .form-field-full {
  grid-column: 1 / -1;
}

/* Submit Button */
.contact-form-wrapper input[type="submit"],
.contact-form-wrapper button[type="submit"],
.contact-form-wrapper .submit-button {
  width: 100%;
  padding: 14px 40px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.contact-form-wrapper input[type="submit"]:hover,
.contact-form-wrapper button[type="submit"]:hover,
.contact-form-wrapper .submit-button:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.contact-form-wrapper input[type="submit"]:active,
.contact-form-wrapper button[type="submit"]:active,
.contact-form-wrapper .submit-button:active {
  transform: translateY(0);
}

.submit-icon {
  font-size: 18px;
}

.submit-text {
  font-weight: 700;
}

.form-privacy {
  text-align: center;
  font-size: 13px;
  color: #6b7280;
  margin-top: 12px;
  line-height: 1.5;
}

/* Validation Messages */
.contact-form-wrapper .wpcf7-not-valid-tip {
  color: #ef4444;
  font-size: 13px;
  margin-top: 6px;
  display: block;
}

.contact-form-wrapper .wpcf7-not-valid {
  border-color: #ef4444 !important;
}

.contact-form-wrapper .wpcf7-response-output {
  margin: 20px 0 0 0;
  padding: 16px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
}

.contact-form-wrapper .wpcf7-mail-sent-ok {
  background: #d1fae5;
  border: 2px solid #10b981;
  color: #047857;
}

.contact-form-wrapper .wpcf7-validation-errors,
.contact-form-wrapper .wpcf7-mail-sent-ng {
  background: #fee2e2;
  border: 2px solid #ef4444;
  color: #991b1b;
}

.contact-form-wrapper .wpcf7-spinner {
  margin: 0 10px;
}

/* Required Asterisk */
.contact-form-wrapper .wpcf7-form-control-wrap {
  position: relative;
}

.contact-form-wrapper label .required {
  color: #ef4444;
  margin-left: 4px;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

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

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

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
  .hero-container {
    gap: 40px;
  }

  .hero-title {
    font-size: 40px;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
  }

  .center-image {
    min-height: 400px;
  }

  .transformation-title {
    font-size: 40px;
  }

  .transformation-content-grid {
    gap: 50px;
  }

  .image-circle {
    width: 400px;
    height: 400px;
  }

  .reason-title {
    font-size: 17px;
  }

  .reason-text {
    font-size: 14px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .pricing-card.featured {
    transform: scale(1);
  }
}

/* Mobile Landscape & Small Tablet (577px - 767px) */
@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
    padding: 40px 15px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 20px 0;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-image img {
    min-height: 300px;
    width: 100%;
    height: auto;
  }

  .features-section {
    padding: 60px 15px;
  }

  .section-title {
    font-size: 36px;
  }

  .features-header {
    margin-bottom: 40px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .features-column {
    gap: 24px;
  }

  .features-center {
    width: 100%;
  }

  .center-image {
    min-height: 350px;
  }

  /* Transformation Section Responsive */
  .transformation-section {
    padding: 60px 15px;
  }

  .transformation-title {
    font-size: 32px;
  }

  .transformation-subtitle {
    font-size: 18px;
  }

  .stats-row {
    flex-direction: column;
    gap: 20px;
    padding: 25px;
  }

  .stat-divider {
    width: 60px;
    height: 2px;
  }

  .stat-number {
    font-size: 36px;
  }

  .transformation-content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .transformation-image-wrapper {
    padding: 40px 20px;
    margin-bottom: 20px;
  }

  .image-circle {
    width: 280px;
    height: 280px;
    border-width: 3px;
    padding: 10px;
  }

  .deco-1 {
    width: 120px;
    height: 120px;
    top: -20px;
    left: -20px;
  }

  .deco-2 {
    width: 100px;
    height: 100px;
    bottom: -20px;
    right: -20px;
  }

  .deco-triangle {
    display: none;
  }

  .reason-item {
    padding: 20px;
    gap: 16px;
  }

  .reason-icon {
    width: 44px;
    height: 44px;
  }

  .reason-icon img {
    width: 24px;
    height: 24px;
  }

  .reason-title {
    font-size: 16px;
  }

  .reason-text {
    font-size: 14px;
  }

  .cta-box {
    padding: 35px 25px;
  }

  .cta-teaser {
    font-size: 17px;
  }

  .btn-unlock {
    width: 100%;
    justify-content: center;
    padding: 18px 30px;
    font-size: 16px;
  }

  .social-proof {
    flex-direction: column;
    gap: 12px;
  }

  .guarantee-badge {
    font-size: 15px;
    padding: 20px 24px;
  }

  /* Contact Form Responsive */
  .contact-section {
    padding: 60px 15px;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info {
    padding: 30px 20px;
  }

  .contact-info-title {
    font-size: 20px;
  }

  .info-icon {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .trust-badges {
    justify-content: center;
  }

  .contact-form-wrapper {
    padding: 30px 20px;
  }

  .contact-form-wrapper .wpcf7-form {
    gap: 14px;
  }

  .contact-form-wrapper .form-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* Pricing Responsive */
  .pricing-section {
    padding: 60px 15px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .pricing-card.featured:hover {
    transform: translateY(-8px);
  }

  .price {
    font-size: 40px;
  }

  .plan-name {
    font-size: 22px;
  }

  .popular-badge {
    font-size: 12px;
    padding: 5px 16px;
  }

  .pricing-button {
    font-size: 15px;
    padding: 12px 20px;
  }

  .template-button {
    font-size: 15px;
    padding: 12px 20px;
  }
}

/* Mobile Portrait (max 576px) */
@media (max-width: 576px) {
  .hero-section {
    padding: 30px 15px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-description {
    font-size: 15px;
  }

  .hero-button {
    padding: 14px 32px;
    font-size: 15px;
    width: 100%;
  }

  .hero-image img {
    min-height: 250px;
  }

  .features-section {
    padding: 50px 15px;
  }

  .section-title {
    font-size: 28px;
  }

  .section-description {
    font-size: 15px;
  }

  .feature-title {
    font-size: 18px;
  }

  .feature-text {
    font-size: 13px;
  }

  .center-image {
    min-height: 280px;
  }

  /* Transformation Section Mobile */
  .transformation-section {
    padding: 60px 15px;
  }

  .transformation-title {
    font-size: 26px;
  }

  .transformation-subtitle {
    font-size: 16px;
  }

  .transformation-image-wrapper {
    padding: 30px 10px;
  }

  .image-circle {
    width: 240px;
    height: 240px;
    border-width: 2px;
    padding: 8px;
  }

  .deco-1 {
    width: 90px;
    height: 90px;
    top: -10px;
    left: -15px;
  }

  .deco-2 {
    width: 75px;
    height: 75px;
    bottom: -10px;
    right: -15px;
  }

  .reason-item {
    padding: 16px;
  }

  .reason-title {
    font-size: 15px;
  }

  .reason-text {
    font-size: 13px;
  }

  .cta-teaser {
    font-size: 16px;
  }

  .btn-unlock {
    font-size: 15px;
    padding: 16px 24px;
  }

  /* Pricing Mobile */
  .price {
    font-size: 36px;
  }

  .pricing-grid {
    gap: 24px;
  }

  /* Contact Form Mobile */
  .contact-form-wrapper {
    padding: 25px 15px;
  }
}

/* Extra Small Mobile (max 375px) */
@media (max-width: 375px) {
  .hero-title {
    font-size: 24px;
  }

  .hero-description {
    font-size: 14px;
  }

  .hero-button {
    padding: 12px 28px;
    font-size: 14px;
  }

  .section-title {
    font-size: 24px;
  }

  .feature-title {
    font-size: 16px;
  }

  .features-column {
    gap: 20px;
  }

  .price {
    font-size: 32px;
  }

  .transformation-title {
    font-size: 22px;
  }
}

/* ========================================
   HOVER EFFECTS FOR DESKTOP
   ======================================== */
@media (min-width: 769px) {
  .feature-item {
    transition: transform 0.3s ease;
    padding: 16px;
    border-radius: 8px;
  }

  .feature-item:hover {
    transform: translateX(8px);
    background: #f9f9f9;
  }

  .features-column:last-child .feature-item:hover {
    transform: translateX(-8px);
  }
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
  .hero-section {
    background: #fff;
    min-height: auto;
  }

  .hero-button {
    display: none;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .center-image {
    break-inside: avoid;
  }

  .transformation-section {
    background: #fff;
    color: #000;
  }

  .btn-unlock {
    display: none;
  }

  .pricing-card {
    break-inside: avoid;
  }

  .contact-form-wrapper {
    break-inside: avoid;
  }
}