/* Main CSS for Stall Design Lead Generation Page */

/* General Styles and Reset */


:root {

--primary-color: #0d817c;
--secondary-color: #34495e;
--accent-color: #f39c12;
--light-color: #ecf0f1;
--dark-color: #2c3e50;
--text-color: #333;
--text-light: #777;
--shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
--transition: all 0.3s ease;

  --bg-light: #f5f7fa;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --space-7: 64px;
  --font-xs: 12px;
  --font-sm: 14px;
  --font-md: 16px;
  --font-lg: 18px;
  --font-xl: 20px;
  --font-2xl: 24px;
  --font-3xl: 32px;
  --font-4xl: 40px;
  --transition-fast: 0.2s;
  --transition-normal: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f9f9f9;

  

  line-height: 1.5;
  background-color: var(--bg-light);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .feature-list li {
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 1.4;
    gap: 10px;
    display: flex;
    align-items: center;
  }




.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;    
}


h1, h2, h3, h4 {
    margin-bottom: 15px;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 16px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #09615d;
    color: white;
}

.btn-cta {
    background-color: var(--accent-color);
    color: white;
    padding: 15px 30px;
    font-size: 18px;
}

.btn-cta:hover {
    background-color: #e67e22;
    color: white;
}

.btn-full {
    width: 100%;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    font-size: 32px;
    color: var(--secondary-color);
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 15px auto 0;
}

/* Header Styles */
.header {
    background-color: white;
    box-shadow: var(--shadow);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 38px;
}

.logo-svg {
    font-family: Calibri;
    font-size: 32px;
    color: var(--dark-color);
    font-weight: bold;


}

.contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    min-height: 690px;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    text-align: left;
}

.hero-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.lead-form-container {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.lead-form h2 {
    color: var(--secondary-color);
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 1px #09615d;
}

/* Brands Section */
.brands {
    padding: 60px 0;
    background-color: white;
}

.brandsSwiper {
    padding: 20px 0;
}

.brands .swiper-slide {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brands .swiper-slide img {
    max-height: 60px;
    filter: grayscale(1);
    transition: var(--transition);
    opacity: 0.7;
}

.brands .swiper-slide img:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
}

/* Stats Section */
.stats {
    padding: 60px 0;
    background-color: var(--secondary-color);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.stat-label {
    font-size: 18px;
    font-weight: 500;
}

/* Calculator Section */
.calculator {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.calculator-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.calculator-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.calculation-result {
    margin-top: 30px;
    padding: 20px;
    background-color: #f1f1f1;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.result-label {
    font-weight: 600;
}

.result-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.note {
    margin-top: 15px;
    font-size: 14px;
    color: var(--text-light);
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: white;
}

.testimonial-card {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    height: 100%;
}

.testimonial-content p {
    font-style: italic;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.author-name {
    font-weight: 700;
    font-size: 18px;
}

.author-position {
    color: var(--text-light);
}

.testimonialsSwiper {
    padding: 20px 0 50px;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.faq-question h3 {
    margin: 0;
    font-size: 18px;
}

.faq-toggle {
    font-size: 16px;
    transition: var(--transition);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 500px;
}

.faq-item.active .faq-toggle i {
    transform: rotate(45deg);
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    background-color: var(--secondary-color);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 0 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 50px;
}

.footer-contact h3,
.footer-social h3 {
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 18px;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 0px solid rgba(255, 255, 255, 0.1);
}

.footer-seo {
    background-color: var(--dark-color);
    color: var(--dark-color);
    text-align: left;
    font-size: 5px;
}

/* WhatsApp Icon */
.whatsapp-icon {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
}

.whatsapp-icon a {
    display: flex;
    align-items: center;
    background-color: #25d366;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.whatsapp-icon a:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.whatsapp-icon i {
    font-size: 24px;
    margin-right: 10px;
}



/* Additional styles for smooth scrolling animations and footer lead form */

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

/* Animation Delays */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

/* Footer Lead Form */
.footer-lead-form {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
}

.footer-lead-form h3 {
    margin-bottom: 20px;
    font-size: 22px;
    color: white;
    text-align: center;
}

.footer-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-form-group {
    margin-bottom: 15px;
}

.footer-form-group input,
.footer-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    background-color: rgba(255, 255, 255, 0.9);
}

.footer-form-group input:focus,
.footer-form-group textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(243, 156, 18, 0.5);
}

.footer-form-group textarea {
    height: 80px;
    resize: vertical;
}

.btn-footer-form {
    background-color: var(--accent-color);
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-footer-form:hover {
    background-color: #e67e22;
    transform: translateY(-3px);
}

/* Update to footer grid for the new form */
.footer-content {
    grid-template-columns: 1.5fr 1fr 1fr;
}

@media (max-width: 992px) {
    .footer-form-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 767px) {
    .feature-list li{
        justify-content: center;
    }
    .hero{
        min-height: auto;
    }
}

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background-color: #09615d;
    transform: translateY(-5px);
}

/* Section animations */
.section-title.animated:after {
    width: 0;
    transition: width 1s ease-out 0.3s;
}

.section-title.animated.active:after {
    width: 80px;
}

/* Form submission success message */
.form-success {
    text-align: center;
    padding: 20px;
}

.form-success i {
    font-size: 48px;
    color: #2ecc71;
    margin-bottom: 20px;
}











/* Base styles and reset */


ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}



/* Main content styles */
main {
  padding: var(--space-5) 0 var(--space-7);
}

.content-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--space-5);
}

/*
.breadcrumb {
  margin-bottom: var(--space-4);
}

.breadcrumb a {
  color: var(--text-secondary);
  font-size: var(--font-sm);
}

.article-content {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  box-shadow: var(--shadow-sm);
} */

.article-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  color: var(--text-secondary);
  font-size: var(--font-sm);
}

.author {
  display: flex;
  align-items: center;
}

.author-img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: var(--space-2);
  object-fit: cover;
}

.share-btns {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-left: auto;
}

.share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--bg-light);
  border: none;
  cursor: pointer;
  transition: background-color var(--transition-fast) ease;
}

.share-btn:hover {
  background-color: var(--border-color);
}

.featured-image {
  margin: var(--space-4) 0;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

.article-section {
  margin-bottom: var(--space-5);
}



/* Sidebar styles */
.sidebar {
  position: sticky;
  top: 140px;
  align-self: start;
}


/* 
.recaptcha-placeholder {
  background-color: var(--bg-light);
  height: 78px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-3);
  position: relative;
}

.recaptcha-placeholder::after {
  content: 'reCAPTCHA';
  color: var(--text-light);
  font-size: var(--font-sm);
} */

/* Related blogs section */
.related-blogs {
  margin-top: var(--space-7);
}

.related-blogs h2 {
  margin-bottom: var(--space-4);
}

.blog-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.blog-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal) ease, box-shadow var(--transition-normal) ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.blog-card a {
  color: inherit;
  display: block;
}

.blog-card-image {
  height: 200px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal) ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-content {
  padding: var(--space-3);
}

.blog-card h3 {
  font-size: var(--font-md);
  margin-bottom: var(--space-3);
  line-height: 1.4;
}

.blog-card-meta {
  display: flex;
  justify-content: space-between;
  color: var(--text-secondary);
  font-size: var(--font-xs);
}

.author-img-small {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-right: var(--space-1);
}



/* Responsive styles */
@media (max-width: 1024px) {
  .content-layout {
    grid-template-columns: 2fr 1fr;
  }
  
  .blog-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  h1 {
    font-size: var(--font-2xl);
  }
}

@media (max-width: 768px) {
  .content-layout {
    grid-template-columns: 1fr;
  }
  
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .blog-cards {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }
  
  .article-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-2);
  }
  
  .share-btns {
    margin-left: 0;
    margin-top: var(--space-2);
  }
  
  .footer-top {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: var(--space-2);
    align-items: center;
  }
}


@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-info {
        /* width: 100%; */
        justify-content: space-between;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-icon a span {
        display: none;
    }
    
    .whatsapp-icon a {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        justify-content: center;
        padding: 0;
    }
    
    .whatsapp-icon i {
        margin-right: 0;
    }
}

@media (max-width: 480px) {
  .footer-links {
    grid-template-columns: 1fr;
  }
  
  h1 {
    font-size: var(--font-xl);
  }
  
  h2 {
    font-size: var(--font-lg);
  }
  
  .article-content {
    padding: var(--space-3);
  }
}


@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

