:root {
  --primary: #1a1a1a;
  --primary-light: #333333;
  --accent: #dc2626;
  --accent-dark: #b91c1c;
  --text: #1f1f1f;
  --text-light: #666666;
  --bg: #ffffff;
  --white: #ffffff;
  --border: #e5e5e5;
  --light-gray: #f8f8f8;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
h1 {
    font-size: clamp(35px, 4vw, 60px)!important;
    font-weight: 500!important;
    line-height: 1.08!important;
    margin: 0 0 24px!important;
}
h2{color:rgb(154 36 34 / var(--tw-bg-opacity, 1))!important; font-weight:500!important;}

.font4{font-size:25px!important;}
/* Header */
header {
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

nav {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0;
}

.logo img {
  height: 65px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent);
}

.btn-primary {
  background: var(--primary);
  color: #ffffff !important;
  padding: 0.75rem 1.75rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--primary);
  display: inline-block;
}

.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 26, 46, 0.2);
}

/* Dropdown Navigation */
.dropdown {
  position: relative;
  display: inline-block;
  height: 100%;
}

.dropbtn {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.dropbtn::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid var(--text);
  transition: transform 0.3s ease;
  margin-left: 4px;
}

.dropdown:hover .dropbtn::after {
  transform: rotate(180deg);
  border-top-color: var(--accent);
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #ffffff;
  min-width: 240px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 0.5rem 0;
  z-index: 1100;
  top: 100%;
  left: 0;
  border: 1px solid rgba(0, 0, 0, 0.05);
  animation: slideUpFade 0.3s ease forwards;
  margin-top: 10px; /* Spacing from header */
}

/* Pseudo-bridge to prevent closing when moving cursor */
.dropdown-content::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 10px;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  color: var(--text);
  padding: 12px 20px;
  text-decoration: none;
  display: block;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.02);
}

.dropdown-content a:last-child {
  border-bottom: none;
}

.dropdown-content a:hover {
  background-color: #f8f9fa;
  color: var(--accent);
  padding-left: 24px;
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Section */
.hero {
  max-width: 1400px;
  margin: 0 auto;
  padding: 6rem 3rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  background: var(--white);
}

.hero-content h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.hero-content .highlight {
  color: var(--accent);
  position: relative;
  display: inline-block;
}

.hero-content p {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  padding: 0.75rem 1.75rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid var(--primary);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--primary);
  color: white;
}

.hero-visual {
  background: var(--light-gray);
  border-radius: 12px;
  padding: 3rem;
  border: 1px solid var(--border);
  position: relative;
}

.notice-preview {
  border: 2px solid var(--primary);
  padding: 2rem;
  border-radius: 8px;
  background: var(--white);
}

.notice-preview h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 1rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.notice-content {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.notice-footer {
  text-align: right;
  font-style: italic;
  color: var(--text-light);
  font-size: 0.85rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* Trust Badges */
.trust-section {
  background: var(--primary);
  color: white;
  padding: 3rem 3rem;
}

.trust-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 3rem;
}

.trust-item {
  text-align: center;
}

.trust-number {
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.trust-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Features Section */
.features {
  max-width: 1400px;
  margin: 0 auto;
  padding: 8rem 3rem;
  background: radial-gradient(circle at top right, #f3f4f6, #ffffff);
  position: relative;
  overflow: hidden;
}

.features::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(220, 38, 38, 0.05) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  z-index: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

.feature-card.glass-effect {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  padding: 3rem 2rem;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.feature-card.glass-effect:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(220, 38, 38, 0.1);
}

.feature-icon-wrapper {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  color: var(--primary);
}

.feature-card.glass-effect:hover .feature-icon-wrapper {
  background: var(--primary);
  color: white;
  transform: scale(1.1) rotate(-3deg);
  box-shadow: 0 10px 20px rgba(220, 38, 38, 0.2);
}

.feature-icon-wrapper svg {
  width: 32px;
  height: 32px;
  stroke-width: 1.5;
}

.feature-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.feature-card p {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 1rem;
  margin: 0;
}

/* Templates Section */
/* Templates Section */
.templates-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 8rem 3rem;
  background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

.templates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.template-card-flip {
  background-color: transparent;
  width: 100%;
  max-width: 300px; /* Reduced width */
  height: 280px; /* Reduced height */
  perspective: 1000px;
  cursor: pointer;
  margin: 0 auto; /* Center in grid cell */
}

.template-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}

.template-card-flip:hover .template-card-inner {
  transform: rotateY(180deg);
}

.template-card-front,
.template-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Front Side */
.template-card-front {
  background-color: var(--white);
  color: black;
  display: flex;
  flex-direction: column;
}

.card-image-wrapper {
  height: 70%;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.template-card-flip:hover .card-image-wrapper img {
  transform: scale(1.1);
}

.card-front-content {
  height: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  position: relative;
  z-index: 2;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
  padding: 0 1rem;
}

.card-front-content h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.35rem;
  color: var(--primary);
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
}

/* Back Side */
.template-card-back {
  background: linear-gradient(
    135deg,
    #1e3a8a,
    #3b82f6
  ); /* Premium Blue Gradient */
  color: white;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
}

.template-card-back h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: white;
  font-weight: 700;
}

.template-card-back p {
  font-size: 0.85rem;
  line-height: 1.4;
  margin-bottom: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
}

.template-btn {
  background: white;
  color: var(--primary);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  border: 2px solid white;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.template-btn:hover {
  background: transparent;
  border-color: white;
  color: white;
  transform: translateY(-2px);
}

.template-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.template-btn:hover svg {
  transform: translateX(4px);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-light);
}

/* Feature Card Reset (remove old styles if present elsewhere) */
.feature-card {
  /* Styles are now handled by .feature-card.glass-effect in previous block */
}

/* Newspaper Selection Premium Redesign */
.newspaper-selection {
  background: url("https://images.unsplash.com/photo-1504711434969-e33886168f5c?auto=format&fit=crop&w=1920&q=80")
    no-repeat center center/cover;
  position: relative;
  padding: 8rem 2rem;
  color: white;
  text-align: center;
  background-attachment: fixed; /* Parallax effect */
}

.newspaper-selection::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.95),
    rgba(30, 41, 59, 0.9)
  );
  z-index: 1;
}

.selection-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.selection-header {
  text-align: center;
  margin-bottom: 4rem;
}

.selection-header h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  font-weight: 700;
  letter-spacing: -1px;
}

.selection-header p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.selection-tool {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 3rem;
  border-radius: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 2rem;
  align-items: end;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.filter-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.filter-group label {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.filter-group select {
  width: 100%;
  padding: 1.25rem 1.5rem;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: white; /* Changed to white for better contrast */
  color: #1e293b; /* Dark text for readability */
  font-size: 1.05rem;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%231e293b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.5rem center;
  background-size: 1.2rem;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: inherit;
  font-weight: 500;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.filter-group select:hover {
  border-color: rgba(0, 0, 0, 0.2);
  background-color: #f8fafc;
}

.filter-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.2);
  background-color: white;
}

.filter-group select option {
  background-color: white;
  color: #1e293b;
  padding: 1rem;
}

.btn-search {
  background: var(--accent);
  color: white;
  border: none;
  padding: 0 2.5rem;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 60px; /* Align with select inputs */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
  letter-spacing: 0.5px;
}

.btn-search:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px rgba(220, 38, 38, 0.4);
  background: #ef4444;
}

.btn-search:active {
  transform: translateY(-1px);
}

.popular-newspapers {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Higher specificity to guarantee color override */
.newspaper-selection .popular-newspapers h4 {
  color: #ffffff !important; /* Force white color */
  font-weight: 700;
  font-size: 1.3rem;
  margin-right: 1rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9); /* Enhanced text shadow */
  letter-spacing: 0.5px;
  position: relative;
  z-index: 10; /* Ensure it sits on top */
}

.newspaper-tags {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.newspaper-tag {
  background: rgba(255, 255, 255, 0.95); /* Nearly opaque white background */
  padding: 0.6rem 1.25rem;
  border-radius: 100px;
  font-size: 0.9rem;
  color: #1e293b; /* Dark text */
  border: 1px solid rgba(255, 255, 255, 1);
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.newspaper-tag:hover {
  background: white;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  color: var(--accent);
}

@media (max-width: 1024px) {
  .selection-tool {
    grid-template-columns: 1fr;
    padding: 2rem;
    gap: 1.5rem;
  }

  .btn-search {
    width: 100%;
    margin-top: 1rem;
  }
}

.filter-group select {
  padding: 0.9rem 1rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 1rem;
  background: var(--white);
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-group select:focus {
  outline: none;
  border-color: var(--accent);
}

.btn-search {
  background: var(--accent);
  color: white;
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-search:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.popular-newspapers {
  margin-top: 2.5rem;
  text-align: center;
}

.popular-newspapers h4 {
  font-family: "Montserrat", sans-serif;
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: 600;
}

.newspaper-tags {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.newspaper-tag {
  background: var(--white);
  padding: 0.6rem 1.25rem;
  border-radius: 20px;
  border: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text);
  transition: all 0.3s ease;
  cursor: pointer;
}

.newspaper-tag:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

/* Testimonials Section */
.testimonials-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 8rem 3rem;
  background: linear-gradient(to bottom, #f8fafc, #edf2f7);
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  position: relative;
  z-index: 2;
}

.testimonial-card {
  background: white;
  padding: 3rem 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0);
}

.quote-icon-wrapper {
  width: 48px;
  height: 48px;
  background: rgba(220, 38, 38, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--accent);
}

.quote-icon-wrapper svg {
  width: 24px;
  height: 24px;
}

.testimonial-text {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 1.05rem;
  font-style: italic;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: flex-start; /* Align to top */
  flex-direction: column; /* Stack if no image */
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.author-info {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.author-info strong {
  color: var(--primary);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.15rem;
}

.author-info span {
  color: var(--text-light);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.author-info .location {
  color: var(--accent);
  font-weight: 500;
  margin-top: 0.25rem;
}

.author-info .location svg {
  width: 14px;
  height: 14px;
}

/* Video Section - Ultra Premium Design */
.video-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 8rem 3rem;
  background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.video-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(220, 38, 38, 0.04) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  z-index: 0;
  animation: float 20s ease-in-out infinite;
}

.video-section::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.03) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  z-index: 0;
  animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(30px, -30px);
  }
}

.video-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.video-text h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 3.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1.5px;
  position: relative;
}

.video-text h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, transparent 100%);
  border-radius: 2px;
}

.video-text p {
  font-size: 1.2rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 3rem;
  margin-top: 2rem;
  max-width: 90%;
}

.video-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 0;
}

.video-features li {
  color: var(--text);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-weight: 500;
  padding: 1.5rem 1.75rem;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 18px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
}

.video-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: var(--accent);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.video-features li:hover::before {
  transform: scaleY(1);
}

.video-features li:hover {
  background: white;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transform: translateX(12px) translateY(-3px);
  border-color: rgba(220, 38, 38, 0.15);
}

.video-features li svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
  flex-shrink: 0;
  background: rgba(220, 38, 38, 0.08);
  padding: 6px;
  border-radius: 50%;
  box-sizing: content-box;
  transition: all 0.3s ease;
}

.video-features li:hover svg {
  background: var(--accent);
  color: white;
  transform: scale(1.1);
}

.video-container {
  position: relative;
  border-radius: 32px;
  border: 12px solid white;
  overflow: hidden;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(0, 0, 0, 0.03);
  transform: perspective(1200px) rotateY(-8deg);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.video-container:hover {
  transform: perspective(1200px) rotateY(0deg) scale(1.03);
  box-shadow:
    0 45px 80px rgba(0, 0, 0, 0.16),
    0 0 0 1px rgba(0, 0, 0, 0.03);
}

.video-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background-image: url("https://images.unsplash.com/photo-1497215728101-856f4ea42174?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
}

.video-placeholder:hover {
  border: none;
  transform: none;
}

.video-placeholder::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.5),
    rgba(30, 41, 59, 0.3)
  );
  transition: all 0.4s ease;
}

.video-container:hover .video-placeholder::before {
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.3),
    rgba(30, 41, 59, 0.1)
  );
}

.play-button {
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.6);
  position: relative;
  z-index: 2;
  margin-bottom: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.play-button::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid white;
  border-radius: 50%;
  opacity: 0;
  transform: scale(1.5);
  transition: all 0.4s ease;
}

.video-container:hover .play-button::before {
  opacity: 0.3;
  transform: scale(1.8);
}

.play-button svg {
  width: 38px;
  height: 38px;
  fill: white;
  margin-left: 6px;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.3));
}

/* Template Grid (Redesigned) */
.templates-grid.clean-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

.clean-template-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08); /* Clean, subtle border */
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.clean-template-card:hover {
  transform: translateY(-5px); /* Simple lift effect */
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  border-color: var(--accent);
}

.clean-template-card .card-icon-wrapper {
  width: 64px;
  height: 64px;
  background-color: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  color: var(--primary);
  transition: all 0.3s ease;
}

.clean-template-card:hover .card-icon-wrapper {
  background-color: var(--primary);
  color: #ffffff;
}

.clean-template-card .card-icon-wrapper svg {
  width: 32px;
  height: 32px;
}

.clean-template-card h3 {
  font-size: 1.25rem;
  color: var(--secondary);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.clean-template-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.clean-card-link {
  display: inline-block;
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: gap 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.clean-template-card:hover .clean-card-link {
  gap: 0.75rem; /* Subtle movement on hover */
  color: var(--primary);
}

.video-container:hover .play-button {
  transform: scale(1.15);
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 15px 40px rgba(220, 38, 38, 0.5);
}

.video-placeholder p {
  color: white;
  margin-top: 1.75rem;
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.video-container:hover .video-placeholder p {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .video-content {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .video-container {
    transform: none;
  }

  .video-container:hover {
    transform: scale(1.02);
  }

  .video-text h2 {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .video-section {
    padding: 5rem 2rem;
  }

  .video-text h2 {
    font-size: 2.2rem;
  }

  .video-text p {
    font-size: 1.05rem;
    max-width: 100%;
  }

  .video-features li {
    padding: 1.25rem 1.5rem;
  }
}

/* FAQ Section - Ultra Premium Design */
.faq-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 8rem 3rem;
  background: linear-gradient(to bottom, #ffffff, #f8fafc);
  position: relative;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.faq-item:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  border-color: rgba(220, 38, 38, 0.1);
  transform: translateY(-2px);
}

.faq-item.active {
  border-color: var(--accent);
  box-shadow: 0 15px 40px rgba(220, 38, 38, 0.08);
}

.faq-question {
  padding: 2rem 2.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  user-select: none;
  position: relative;
}

.faq-question::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: var(--accent);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::before {
  transform: scaleY(1);
}

.faq-question:hover {
  background: rgba(220, 38, 38, 0.02);
}

.faq-question h4 {
  font-family: "Montserrat", sans-serif;
  color: var(--primary);
  font-weight: 600;
  font-size: 1.2rem;
  margin: 0;
  padding-right: 2rem;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.faq-toggle {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(220, 38, 38, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 300;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq-item.active .faq-toggle {
  background: var(--accent);
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    padding 0.4s ease;
  padding: 0 2.5rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 2.5rem 2rem 2.5rem;
}

.faq-answer p {
  margin: 0;
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1.05rem;
}

@media (max-width: 768px) {
  .faq-question {
    padding: 1.5rem 1.5rem;
  }

  .faq-question h4 {
    font-size: 1.05rem;
  }

  .faq-answer {
    padding: 0 1.5rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
  }
}

/* Blog Section - Ultra Premium Design */
.blog-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 8rem 3rem;
  background: white;
  position: relative;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.blog-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border-color: rgba(220, 38, 38, 0.1);
}

.blog-image {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blog-card:hover .blog-image img {
  transform: scale(1.08);
}

.blog-category {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: white;
  color: var(--accent);
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  z-index: 2;
  border: 2px solid var(--accent);
}

.blog-content {
  padding: 2rem 2.25rem 2.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-date,
.blog-read-time {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 500;
}

.blog-date svg,
.blog-read-time svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

.blog-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
}

.blog-card:hover h3 {
  color: var(--accent);
}

.blog-card p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.75rem;
  font-size: 1.05rem;
  flex-grow: 1;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  align-self: flex-start;
}

.blog-link::before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.blog-link:hover::before {
  width: calc(100% - 30px);
}

.blog-link svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.blog-link:hover svg {
  transform: translateX(5px);
}

.blog-link:hover {
  color: var(--accent-dark);
}

@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .blog-section {
    padding: 5rem 2rem;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .blog-image {
    height: 200px;
  }

  .blog-content {
    padding: 1.5rem;
  }

  .blog-card h3 {
    font-size: 1.3rem;
  }
}

/* Chat Widget */
.chat-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.chat-button {
  width: 60px;
  height: 60px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
  transition: all 0.3s ease;
  border: none;
}

.chat-button:hover {
  background: var(--accent-dark);
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(220, 38, 38, 0.4);
}

.chat-button svg {
  width: 28px;
  height: 28px;
  fill: white;
}

.chat-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--primary);
  color: white;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
}

.feature-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.feature-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  background: var(--primary);
  color: white;
  padding: 5rem 3rem;
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.cta-content p {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.btn-accent {
  background: var(--accent);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
  border: 2px solid var(--accent);
}

.btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

/* Footer */
footer {
  background: #ffffff;
  color: var(--text);
  border-top: 1px solid var(--border);
  padding: 4rem 3rem 1.5rem;
  position: relative;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand {
  margin-bottom: 1rem;
}

.footer-logo {
  height: 55px; /* Slightly larger for premium feel */
  width: auto;
  /* No filter needed for original colored logo on light bg */
}

.nav-logo-img {
  height: 45px;
  width: auto;
  /* No filter needed */
}

.footer-desc {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text);
  font-size: 0.95rem;
}

.contact-item .icon {
  color: var(--accent);
  display: flex;
  align-items: center;
}

.social-links {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 1rem;
}

.social-icon {
  width: 38px;
  height: 38px;
  background: #f0f0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.social-icon:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(220, 38, 38, 0.2);
}

.footer-column h4 {
  font-family: "Montserrat", sans-serif;
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-weight: 700;
  font-size: 1.25rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 5px;
}

/* Horizontal Newsletter Strip */
.footer-newsletter-strip {
  max-width: 1400px;
  margin: 0 auto 3rem;
  background: #f8f9fa; /* Very light gray */
  padding: 2.5rem 3.5rem;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.newsletter-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.newsletter-text h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 0.25rem;
  font-weight: 700;
}

.newsletter-text p {
  color: var(--text-light);
  margin: 0;
  font-size: 1rem;
}

.newsletter-form-inline {
  display: flex;
  gap: 0.75rem;
  flex: 1;
  max-width: 500px;
}

.newsletter-form-inline input {
  flex: 1;
  padding: 1rem 1.4rem;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--text);
  outline: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.newsletter-form-inline input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.newsletter-form-inline button {
  background: var(--primary);
  color: white;
  border: none;
  padding: 0 2rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.newsletter-form-inline button:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2);
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
  color: #888;
  font-size: 0.9rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .templates-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .video-content {
    grid-template-columns: 1fr;
  }

  .selection-tool {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .newsletter-wrapper {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 1rem 1.5rem;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding: 3rem 1.5rem;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .features {
    padding: 4rem 1.5rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .templates-section {
    padding: 4rem 1.5rem;
  }

  .templates-grid {
    grid-template-columns: 1fr;
  }

  .newspaper-selection {
    padding: 4rem 1.5rem;
  }

  .selection-tool {
    padding: 2rem;
  }

  .testimonials-section {
    padding: 4rem 1.5rem;
  }

  .video-section {
    padding: 4rem 1.5rem;
  }

  .faq-section {
    padding: 4rem 1.5rem;
  }

  .blog-section {
    padding: 4rem 1.5rem;
  }

  .trust-content {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .newsletter-wrapper {
    flex-direction: column;
    gap: 1.5rem;
  }

  .newsletter-form-inline {
    flex-direction: column;
    width: 100%;
  }

  .newsletter-form-inline button {
    width: 100%;
    padding: 0.8rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content h1,
.hero-content p,
.hero-cta,
.hero-visual {
  animation: fadeInUp 0.8s ease-out forwards;
}

.hero-content p {
  animation-delay: 0.1s;
}

.hero-cta {
  animation-delay: 0.2s;
}

.hero-visual {
  animation-delay: 0.3s;
}

/* Default Mobile Menu Button Style (Hidden on Desktop) */
.mobile-menu-btn {
  display: none;
}

/* ─── PDF VIEWER PAGE STYLES ─── */
.pdf-hero {
    background: radial-gradient(circle at 0% 0%, rgba(153, 27, 34, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 100% 100%, rgba(26, 26, 26, 0.03) 0%, transparent 50%),
                var(--white);
    position: relative;
    padding: 80px 0 60px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.pdf-hero h1 {
    font-family: "Crimson Pro", serif !important;
    font-size: clamp(1.8rem, 4vw, 2.8rem) !important;
    font-weight: 700 !important;
    color: var(--primary) !important;
    max-width: 1000px;
    margin: 0 auto 1.5rem !important;
    line-height: 1.2 !important;
    padding: 0 20px;
    text-align: center !important;
}

.pdf-hero p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-top: 15px;
    font-weight: 500;
}

.pdf-view-section {
    padding: 60px 20px;
    background: var(--light-gray);
}

.pdf-viewer-card {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid var(--border);
}

.pdf-toolbar-new {
    padding: 20px 32px;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.doc-meta {
    display: flex;
    align-items: center;
    gap: 14px;
}

.doc-icon-box {
    width: 44px;
    height: 44px;
    background: rgba(220, 38, 38, 0.05);
    color: var(--accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.doc-title-info h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

.doc-title-info span {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pdf-actions {
    display: flex;
    gap: 12px;
}

.btn-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-download-pdf {
    background: var(--accent);
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2);
}

.btn-download-pdf:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(220, 38, 38, 0.3);
}

.btn-contact-sh {
    background: var(--white);
    color: var(--primary);
    border: 1px solid var(--border);
}

.btn-contact-sh:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(220, 38, 38, 0.02);
}

.iframe-container {
    position: relative;
    width: 100%;
    padding-top: 141.42%; /* A4 ratio */
    background: #f1f3f4;
}

.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.doc-trust-strip {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
}

.trust-badge-item svg {
    color: var(--accent);
}

@media (max-width: 768px) {
    .pdf-hero {
        padding: 60px 0 40px;
    }
    .pdf-toolbar-new {
        justify-content: center;
        text-align: center;
        padding: 24px;
    }
    .doc-meta {
        flex-direction: column;
    }
    .pdf-actions {
        width: 100%;
        flex-direction: column;
    }
    .btn-action {
        width: 100%;
        justify-content: center;
    }
    .doc-trust-strip {
        gap: 20px;
    }
}

/* ─── PREMIUM CTA CONTACT FORM ─── */
.cta-contact-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem;
}

.cta-contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(153, 0, 24, 0.15) 0%, transparent 70%);
  z-index: 0;
}

.cta-contact-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.1) 0%, transparent 70%);
  z-index: 0;
}

.cta-contact-container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-contact-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.cta-badge {
    display: inline-block;
    background: rgba(150, 0, 24, 0.2);
    border: 1px solid rgba(150, 0, 24, 0.3);
    color: #ffb4b4;
    padding: 0.6rem 1.5rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.cta-text-content h2 {
  font-family: "Crimson Pro", serif !important;
  font-size: clamp(2.5rem, 4vw, 3.8rem) !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
  margin-bottom: 2rem !important;
  color: white !important;
  text-align: left !important;
  letter-spacing: -1px !important;
}

.cta-text-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.cta-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.cta-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.feature-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: rgba(150, 0, 24, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.feature-icon svg {
    width: 24px !important;
    height: 24px !important;
}

.cta-feature-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

.cta-feature-item p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.cta-form-wrapper {
  background: white;
  border-radius: 30px;
  padding: 3.5rem;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.form-header {
    margin-bottom: 2.5rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1.5rem;
}

.form-header h3 {
  font-family: "Crimson Pro", serif !important;
  font-size: 2.4rem !important;
  font-weight: 700 !important;
  color: #1a1a1a !important;
  margin-bottom: 0.5rem !important;
  letter-spacing: -0.5px !important;
}

.form-header p {
    color: #666;
    font-size: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
  font-size: 0.95rem;
  letter-spacing: 0.2px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
  width: 100% !important;
  border: 2px solid #f0f0f0 !important;
  border-radius: 14px !important;
  padding: 1.1rem 1.4rem !important;
  font-size: 1rem !important;
  background: #fafafa !important;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none !important;
  border-color: var(--accent) !important;
  background: white !important;
  box-shadow: 0 0 0 5px rgba(150, 0, 24, 0.05) !important;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%231a1a1a'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    background-size: 1.1rem;
}

.form-group.full-width {
    margin-bottom: 2rem;
}

.cta-submit-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #960018 0%, #C0001E 100%) !important;
  color: white !important;
  border: none !important;
  border-radius: 14px !important;
  height: 65px !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 15px 35px rgba(150, 0, 24, 0.3) !important;
}

.cta-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(150, 0, 24, 0.4) !important;
    filter: brightness(1.1);
}

.cta-submit-btn svg {
    width: 22px;
    height: 22px;
    transition: transform 0.3s ease;
}

.cta-submit-btn:hover svg {
    transform: translateX(5px);
}

@media (max-width: 1024px) {
  .cta-contact-content {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .cta-text-content {
      text-align: center;
  }
  .cta-text-content h2 {
      text-align: center !important;
  }
  .cta-badge {
      margin-left: auto;
      margin-right: auto;
  }
  .cta-feature-item {
      text-align: left;
  }
}

@media (max-width: 768px) {
  .cta-contact-section {
    padding: 6rem 1.5rem;
  }
  .cta-form-wrapper {
    padding: 2.5rem 1.5rem;
  }
  .form-row {
      grid-template-columns: 1fr;
      gap: 1.5rem;
  }
  .cta-text-content h2 {
      font-size: 2.8rem !important;
  }
}



