/* NewHomeTransition - Fresh New Beginnings Theme */
/* Clean, modern design with fresh blues, whites, and energetic accents */

:root {
    --primary-blue: #2563eb;
    --secondary-blue: #3b82f6;
    --fresh-cyan: #06b6d4;
    --energetic-green: #10b981;
    --bright-orange: #f97316;
    --pure-white: #ffffff;
    --light-gray: #f8fafc;
    --fresh-mint: #ecfdf5;
    --text-dark: #1e293b;
    --text-medium: #475569;
    --border-light: #e2e8f0;
    --shadow-fresh: rgba(37, 99, 235, 0.15);
}

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

body {
    font-family: 'Inter', 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--pure-white);
}

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--fresh-cyan) 100%);
    color: var(--pure-white);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px var(--shadow-fresh);
    backdrop-filter: blur(10px);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--pure-white);
    font-family: 'Inter', sans-serif;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--pure-white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 2px solid transparent;
}

.nav-menu a:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--pure-white) 50%, var(--fresh-mint) 100%);
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="freshPattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(37,99,235,0.1)"/><path d="M5,10 L15,10 M10,5 L10,15" stroke="rgba(6,182,212,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23freshPattern)"/></svg>');
    opacity: 0.5;
}

.hero .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--energetic-green) 0%, var(--fresh-cyan) 100%);
    color: var(--pure-white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: bounce 2s infinite;
}

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

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.2;
}

.hero .highlight {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--fresh-cyan) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin: 2rem 0;
    padding: 2rem 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-blue);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-medium);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    height: 400px;
}

.floating-icons {
    position: relative;
    width: 100%;
    height: 100%;
}

.icon-item {
    position: absolute;
    font-size: 3rem;
    animation: floatFresh 4s ease-in-out infinite;
    opacity: 0.8;
}

.icon-item.house { top: 10%; left: 20%; animation-delay: 0s; }
.icon-item.key { top: 30%; right: 10%; animation-delay: 0.8s; }
.icon-item.star { top: 60%; left: 40%; animation-delay: 1.6s; }
.icon-item.heart { top: 20%; right: 40%; animation-delay: 2.4s; }
.icon-item.arrow { top: 80%; right: 20%; animation-delay: 3.2s; }

@keyframes floatFresh {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(2deg); }
    50% { transform: translateY(-10px) rotate(-1deg); }
    75% { transform: translateY(-20px) rotate(1deg); }
}

/* Button Styles */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--fresh-cyan) 100%);
    color: var(--pure-white);
    box-shadow: 0 8px 25px var(--shadow-fresh);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--pure-white);
    transform: translateY(-3px);
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 800;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--fresh-cyan) 100%);
    margin: 1rem auto;
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--light-gray);
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

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

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.process-steps {
    margin-top: 3rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.step-number {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--fresh-cyan) 100%);
    color: var(--pure-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-content p {
    color: var(--text-medium);
    margin: 0;
}

.about-features {
    display: grid;
    gap: 1.5rem;
}

.feature-card {
    background: var(--pure-white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--fresh-cyan);
    box-shadow: 0 15px 40px rgba(6, 182, 212, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin: 0;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--pure-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card.featured {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--fresh-cyan) 100%);
    color: var(--pure-white);
    transform: scale(1.05);
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--energetic-green);
    color: var(--pure-white);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-card:hover:not(.featured) {
    transform: translateY(-8px);
    background: var(--pure-white);
    border-color: var(--primary-blue);
    box-shadow: 0 20px 40px var(--shadow-fresh);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    line-height: 1.6;
    opacity: 0.9;
}

.service-card.featured h3,
.service-card.featured p {
    color: var(--pure-white);
}

/* Why Choose Us Section */
.why-choose {
    padding: 100px 0;
    background: var(--fresh-mint);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.feature {
    background: var(--pure-white);
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid var(--energetic-green);
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(16, 185, 129, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature h3 {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.feature p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Warranty Section */
.warranty {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--fresh-cyan) 100%);
    color: var(--pure-white);
    position: relative;
}

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

.warranty-info h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.warranty-info p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    line-height: 1.7;
    opacity: 0.95;
}

.warranty-highlights {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.highlight-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.highlight-text {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

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

.warranty-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.warranty-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.warranty-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.warranty-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.warranty-item p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--light-gray);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 700;
}

.contact-methods {
    display: grid;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--pure-white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
}

.contact-icon {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-top: 0.2rem;
}

.contact-details strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-details p {
    color: var(--text-medium);
    margin: 0;
    line-height: 1.5;
}

.quote-form {
    background: var(--pure-white);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px var(--shadow-fresh);
    border-top: 5px solid var(--primary-blue);
}

.quote-form h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.quote-form p {
    color: var(--text-medium);
    margin-bottom: 2rem;
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-light);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--pure-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.button-icon {
    font-size: 1.2rem;
}

/* Confirmation Message */
.confirmation-message {
    background: linear-gradient(135deg, var(--energetic-green) 0%, var(--fresh-cyan) 100%);
    color: var(--pure-white);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 1rem;
    text-align: center;
}

.confirmation-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.confirmation-content h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.confirmation-content p {
    margin-bottom: 0;
    opacity: 0.95;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: var(--pure-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.testimonial {
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.1);
    border-left: 5px solid var(--primary-blue);
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(37, 99, 235, 0.15);
    border-left-color: var(--fresh-cyan);
}

.testimonial-rating {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--bright-orange);
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--fresh-cyan) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-info strong {
    display: block;
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.author-info span {
    color: var(--text-medium);
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-blue) 100%);
    color: var(--pure-white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--fresh-cyan);
    font-weight: 600;
}

.footer-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

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

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

.footer-section ul li a {
    color: var(--pure-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--fresh-cyan);
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 0.8rem;
    opacity: 0.9;
}

.footer-hours {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-content,
    .about-grid,
    .warranty-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .warranty-features {
        grid-template-columns: 1fr;
    }
    
    .hero-visual {
        height: 200px;
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .quote-form,
    .service-card,
    .feature,
    .testimonial {
        padding: 2rem;
    }
    
    .warranty-item,
    .contact-item {
        padding: 1.5rem;
    }
}

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

.fade-in {
    animation: slideInUp 0.6s ease-out;
}

/***************Newsletter************/

/* Reset & Base Styles */
.newsletter-page {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* -----------------------------------
   HERO SECTION
----------------------------------- */
.newsletter-hero {
  background: linear-gradient(120deg, #e0f7fa, #fce4ec);
  padding: 4rem 1rem;
  text-align: center;
}

.newsletter-hero h1 {
  font-size: 2.5rem;
  color: #2e3a59;
  margin-bottom: 1rem;
}

.newsletter-hero p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 2rem;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat {
  background-color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: bold;
  color: #0077cc;
}

.stat-label {
  font-size: 0.95rem;
  color: #666;
}

/* -----------------------------------
   NEWSLETTER CONTENT LAYOUT
----------------------------------- */
.newsletter-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: flex-start;
  margin-top: 3rem;
}

.newsletter-benefits h2,
.newsletter-form-wrapper h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #2e3a59;
}

.benefit-list {
  margin-top: 1.5rem;
}

.benefit-item {
  margin-bottom: 1.5rem;
}

.benefit-item h3 {
  font-size: 1.2rem;
  color: #0077cc;
  margin-bottom: 0.5rem;
}

.benefit-item p {
  color: #444;
  font-size: 1rem;
}

/* -----------------------------------
   FORM STYLES
----------------------------------- */
.newsletter-form {
  background-color: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #444;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="date"] {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.form-group small {
  display: block;
  margin-top: 0.5rem;
  color: #888;
}

/* Radio buttons */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.radio-option input[type="radio"] {
  accent-color: #0077cc;
}

/* Consent Checkbox */
.consent-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.consent-checkbox input[type="checkbox"] {
  margin-top: 4px;
  accent-color: #0077cc;
}

.consent-text {
  color: #444;
}

/* Buttons */
.btn-primary {
  background-color: #0077cc;
  color: white;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #005fa3;
}

.btn-secondary {
  background-color: #e0e0e0;
  color: #333;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  text-align: center;
  display: inline-block;
  margin-right: 1rem;
}

.button-icon {
  font-size: 1.2rem;
}

/* Disclaimer */
.form-disclaimer {
  font-size: 0.8rem;
  color: #777;
  margin-top: 1rem;
}

/* -----------------------------------
   CONFIRMATION MESSAGE
----------------------------------- */
.newsletter-confirmation {
  background-color: #e0f7fa;
  border: 2px solid #4dd0e1;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  margin-top: 2rem;
}

.confirmation-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.confirmation-actions {
  margin-top: 1.5rem;
}

.confirmation-actions a {
  margin: 0.5rem;
}

/* -----------------------------------
   FAQ SECTION
----------------------------------- */
.newsletter-faq {
  background-color: #fff;
  padding: 3rem 1rem;
  margin-top: 4rem;
}

.newsletter-faq h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #2e3a59;
}

.faq-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.faq-item h3 {
  font-size: 1.1rem;
  color: #0077cc;
  margin-bottom: 0.5rem;
}

.faq-item p {
  font-size: 0.95rem;
  color: #555;
}

/* -----------------------------------
   RESPONSIVE STYLES
----------------------------------- */
@media (max-width: 768px) {
  .newsletter-layout {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-direction: column;
    align-items: center;
  }

  .newsletter-hero h1 {
    font-size: 2rem;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .confirmation-actions a {
    display: block;
    margin-bottom: 1rem;
  }
}

/*******Privacy Page**********/

/* Reset & Base Styles */
.privacy-page {
    padding-top: 120px;
    padding-bottom: 80px;
}

/* Reset & Base Styles */
.terms-page {
    padding-top: 120px;
    padding-bottom: 80px;
}

/* -----------------------------------
   Privacy Content Sections
----------------------------------- */
.privacy-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.policy-section {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
}

.policy-section h2 {
  font-size: 1.6rem;
  color: #0077cc;
  margin-bottom: 1rem;
}

.policy-section h3 {
  font-size: 1.2rem;
  color: #2e3a59;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.policy-section p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 1rem;
}

.policy-section ul {
  padding-left: 1.5rem;
  list-style-type: disc;
}

.policy-section ul li {
  margin-bottom: 0.75rem;
  color: #333;
}

.policy-section ul li strong {
  color: #0077cc;
}

/* -----------------------------------
   Trust Commitment (Contact Section)
----------------------------------- */
.trust-commitment p {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.trust-commitment strong {
  color: #2e3a59;
  font-weight: 600;
}

.trust-commitment a {
  word-break: break-all;
}

/* Optional: Email obfuscation icon fix */
.__cf_email__::before {
  content: "[email protected]";
  color: #0077cc;
}

/* -----------------------------------
   Responsive Design
----------------------------------- */
@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2rem;
  }

  .policy-section {
    padding: 1.5rem;
  }

  .policy-section h2 {
    font-size: 1.4rem;
  }

  .policy-section h3 {
    font-size: 1.1rem;
  }
}