/*
Theme Name: themeaaa
Theme URI: https://example.com/
Author: Your Name
Author URI: https://example.com/
Description: Custom WordPress Theme
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: themeaaa
*/

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

:root {
  /* Solid Colors */
  --primary: #0056b3;       
  --primary-hover: #004494; 
  --accent: #00a86b;        
  
  /* Backgrounds */
  --bg-main: #eef2f6;       
  --bg-section: #e2e8f0;    
  --white: #ffffff;
  
  /* Text Colors */
  --text-dark: #0f172a;
  --text-gray: #475569;
  
  --transition: all 0.3s ease;
}

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

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #e2e8f0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 0.75rem 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-icon {
  width: 45px;
  height: 45px;
  background-color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  color: var(--primary);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-gray);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-cta {
  padding: 0.75rem 2rem;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.nav-cta:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  padding: 140px 0 80px;
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(238, 242, 246, 0.92); 
  z-index: 1;
}

.hero-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  /* CHANGED: Increased left column width to 1.5fr to fit text in 2 lines */
  grid-template-columns: 1.5fr 1fr; 
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2; 
}

.hero-slider {
  position: relative;
}

.slide {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.5s ease;
  display: none;
}

.slide.active {
  opacity: 1;
  transform: translateX(0);
  display: block;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background-color: white;
  border: 1px solid #cbd5e1;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.slide h1 {
  /* CHANGED: Reduced max font size from 3.5rem to 3.2rem */
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-family: 'Poppins', sans-serif;
}

.slide h1 span {
  color: var(--primary);
}

.slide p {
  font-size: 1.15rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 95%;
}

.hero-btn {
  padding: 1.25rem 3rem;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-btn:hover {
  background-color: var(--primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 86, 179, 0.2);
}

/* Slider Controls */
.slider-controls {
  display: flex;
  gap: 1rem;
  margin-top: 3rem;
  align-items: center;
}

.slider-dots {
  display: flex;
  gap: 0.75rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  width: 30px;
  border-radius: 20px;
  background-color: var(--primary);
}

.slider-arrows {
  display: flex;
  gap: 0.5rem;
  margin-left: auto;
}

.arrow-btn {
  width: 40px;
  height: 40px;
  border: 1px solid #cbd5e1;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-gray);
}

.arrow-btn:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: white;
}

/* Hero Card */
.hero-card {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid white;
}

.hero-card h3 {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.savings-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.savings-item {
  padding: 1rem;
  background-color: var(--bg-main);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: var(--transition);
  text-align: center;
}

.savings-item:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  background-color: white;
}

.savings-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

.savings-label {
  font-size: 0.85rem;
  color: var(--text-gray);
}

.trust-badges {
  display: flex;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
}

.trust-badge-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-gray);
}

.trust-badge-item i {
  color: var(--accent);
}

/* Value Proposition Section */
.value-section {
  padding: 100px 0;
  background-color: var(--bg-section);
}

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

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
}

.section-title span {
  color: var(--primary);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-gray);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.value-card {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 20px;
  text-align: center;
  border: 1px solid transparent;
  transition: var(--transition);
  box-shadow: 0 10px 15px rgba(0,0,0,0.03);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--primary);
}

.value-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background-color: #eff6ff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
}

.value-card h3 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--text-gray);
}

/* Benefit Section */
.benefit-section {
  padding: 100px 0;
  background-color: var(--bg-main);
}

.benefit-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.benefit-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 2rem;
  font-family: 'Poppins', sans-serif;
}

.benefit-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  background: white;
  border-radius: 16px;
  transition: var(--transition);
  box-shadow: 0 4px 6px rgba(0,0,0,0.03);
}

.benefit-item:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
  transform: translateX(5px);
  border-left: 4px solid var(--primary);
}

.benefit-icon {
  width: 40px;
  height: 40px;
  background-color: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.benefit-text h4 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.benefit-text p {
  font-size: 0.9rem;
  color: var(--text-gray);
}

.benefit-card {
  background-color: var(--primary);
  padding: 2.5rem;
  border-radius: 24px;
  color: white;
  box-shadow: 0 20px 50px rgba(0, 86, 179, 0.3);
}

.instant-benefits h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.instant-benefits ul {
  list-style: none;
}

.instant-benefits li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.instant-benefits i {
  color: #4ade80;
  font-size: 1.25rem;
}

/* Offers Section */
.offers-section {
  padding: 100px 0;
  background-color: var(--bg-section);
}

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

.offer-card {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  border: 1px solid transparent;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(0,0,0,0.04);
}

.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  border-color: var(--primary);
}

.offer-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.offer-icon-large {
  font-size: 2rem;
  color: var(--primary);
  width: 60px;
  height: 60px;
  background: #eff6ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.offer-description {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.offer-benefits {
  list-style: none;
  margin-bottom: 2rem;
}

.offer-benefits li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-gray);
}

.offer-benefits i {
  color: var(--accent);
}

.offer-cta {
  width: 100%;
  padding: 1rem;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.offer-cta:hover {
  background-color: var(--primary-hover);
}

.trust-banner {
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--primary);
  border-radius: 20px;
  color: white;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 86, 179, 0.2);
}

.trust-banner h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
/* Form Section */
.form-section {
  padding: 100px 0;
  background: 
      linear-gradient(rgba(0,0,0,0.83), rgba(0,0,0,0.9)),
      url('https://primedealsfinder.com/wp-content/uploads/2025/12/best-home-deal.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* Image fixed */
}


.form-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
}

.form-wrapper {
  background: white;
  padding: 3rem;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
}

@media (max-width: 768px) {
    .form-wrapper {
        padding: 10px;
    }
}


.form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.form-header h2 span {
  color: var(--primary);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
}

.form-group input {
  width: 100%;
  padding: 1rem 1.25rem;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus {
  outline: none;
  background: white;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
}

.submit-button {
  width: 100%;
  padding: 1.25rem;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.submit-button:hover {
  background-color: var(--primary-hover);
  transform: translateY(-3px);
}

.form-group.full-width { grid-column: 1 / -1; }

.form-footer {
  text-align: center;
  margin-top: 1.5rem;
  color: var(--text-gray);
  font-size: 0.85rem;
}

.form-footer i { color: var(--accent); }

/* FAQ */
.faq-wrapper {
  padding: 2rem;
  background: white;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.faq-header {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.faq-item {
  margin-bottom: 1rem;
  background: #f8fafc;
  border-radius: 12px;
  overflow: hidden;
}

.faq-question {
  padding: 1.25rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--text-dark);
}

.faq-question i { color: var(--primary); }

.faq-answer {
  padding: 0 1.25rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  color: var(--text-gray);
}

.faq-item.active .faq-answer {
  padding: 0 1.25rem 1.25rem;
  max-height: 300px;
}

/* Footer */
.footer {
  background-color: #0056b3; /* Deep Navy */
  color: white;
  padding: 50px 0 30px;
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover { color: white; }

.privacy-commitment {
  padding: 1.5rem;
  
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  margin-bottom: 1.5rem;
}



.privacy-commitment h4 { margin-bottom: 0.5rem; color: white; }
.privacy-commitment p { color: #cbd5e1; font-size: 0.9rem; }

.copyright { color: #94a3b8; font-size: 0.9rem; }

/* Responsive */
@media (max-width: 1024px) {
  .hero-container, .benefit-container, .form-container { grid-template-columns: 1fr; gap: 2rem; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .offers-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .value-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}



/* =========================================
   THANK YOU PAGE STYLES
   ========================================= */
:root {
    --primary-color: #0d6efd;
    --dark-color: #0a58ca;
    --bg-color: #f4f6fb;
    --text-color: #1d1d1d;
}

/* Note: 'body' rule hata diya hai taki apki main site ka font kharab na ho. 
   Agar fonts same chahiye to niche wale Fonts section dekhein. */

/* HERO / BANNER */
.hero-1 {
	
    background: linear-gradient(135deg, #0d6efd 0%, #0043a8 100%);
    padding: 80px 20px;
    text-align: center;
    color: #fff;
}
.hero-1 h1 { 
    font-size: 56px; 
	    padding-top: 77px;

    margin: 0 0 15px; 
    font-weight: 800; 
    letter-spacing: -1px;
    color: #fff; /* Ensure explicit white color */
}
.hero-1 p { 
    font-size: 18px; 
    max-width: 700px; 
    margin: 0 auto; 
    opacity: 0.9; 
    font-weight: 400;
    color: #fff;
}

.thankyou-container { 
    max-width: 1100px; 
    margin: -50px auto 40px;
    padding: 0 20px; 
    position: relative;
    z-index: 10;
}

.thankyou-heading { 
    font-size: 26px; 
    margin-bottom: 25px; 
    text-align: center;
    color: #111;
    background: #fff;
    display: inline-block;
    padding: 10px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.deal-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
    gap: 25px; 
}

/* CARDS */
.deal-item {
    background: #fff; 
    padding: 30px; 
    border-radius: 16px;
    border: 1px solid #eff1f5; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.deal-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(13, 110, 253, 0.15);
    border-color: var(--primary-color);
}

.deal-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: #ebf4ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 24px;
}

.deal-title { 
    font-size: 19px; 
    font-weight: 700; 
    color: #111;
}

.deal-desc { 
    color: #666; 
    margin-bottom: 20px; 
    font-size: 15px; 
    line-height: 1.4;
}

.deal-btn {
    display: block; 
    text-align: center;
    padding: 14px 18px;
    background: var(--primary-color); 
    color: #fff; 
    text-decoration: none;
    border-radius: 8px; 
    font-weight: 600;
    transition: background 0.2s;
}
.deal-btn:hover {
    background: var(--dark-color);
    color: #fff;
}

.privacy-text { 
    text-align: center; 
    color: #888; 
    font-size: 13px; 
    margin-top: 50px; 
    border-top: 1px solid #e5e7eb;
    padding-top: 20px;
}
.deals-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 3 → 2 columns */
    gap: 25px;
}


/* Mobile Adjustments */
@media (max-width: 768px) {
    .hero h1 { font-size: 36px; }
    .hero { padding: 60px 20px 80px; }
    .thankyou-container { margin-top: -40px; }
    .thankyou-heading { width: 100%; border-radius: 12px; padding: 15px; }
    .deal-grid { grid-template-columns: 1fr; } 
}



.checkbox-row {
    margin-top: 10px;
    margin-bottom: 15px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    line-height: 1.4;
    cursor: pointer;
}

.checkbox-label input {
    margin-top: 4px;
    width: 18px;
    height: 18px;
}


@media (max-width: 768px) {
    .logo-text {
        display: none !important;
    }
}




/* Logo Styling */
.site-logo {
    height: 55px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .site-logo {
        height: 45px;
    }
}



