/* Brightivera - Main Stylesheet */

/* Import custom fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Quicksand:wght@300;400;500;600;700&display=swap');

/* CSS Custom Properties */
:root {
  /* Colors */
  --brightivera-white: #FFFFFF;
  --brightivera-cream: #F8F4E1;
  --brightivera-yellow: #FEBA17;
  --brightivera-brown: #74512D;
  --brightivera-dark-brown: #4E1F00;
  
  /* Spacing */
  --brightivera-space-xs: 0.5rem;
  --brightivera-space-sm: 1rem;
  --brightivera-space-md: 2rem;
  --brightivera-space-lg: 4rem;
  --brightivera-space-xl: 6rem;
  
  /* Typography */
  --brightivera-font-heading: 'Cormorant Garamond', serif;
  --brightivera-font-body: 'Quicksand', sans-serif;
  
  /* Effects */
  --brightivera-shadow-text: 0px 2px 4px rgba(0, 0, 0, 0.15);
  --brightivera-shadow-box: 0 5px 15px rgba(0, 0, 0, 0.1);
  --brightivera-transition: all 0.3s ease-in-out;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--brightivera-font-body);
  color: var(--brightivera-dark-brown);
  background-color: var(--brightivera-white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--brightivera-font-heading);
  margin-bottom: var(--brightivera-space-sm);
  font-weight: 600;
}

h1 {
  font-size: 3.5rem;
  text-shadow: var(--brightivera-shadow-text);
}

h2 {
  font-size: 2.8rem;
  margin-bottom: var(--brightivera-space-md);
  position: relative;
}

h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60px;
  height: 3px;
  background-color: var(--brightivera-yellow);
  transition: var(--brightivera-transition);
}

h3 {
  font-size: 2.2rem;
}

h4 {
  font-size: 1.8rem;
}

p {
  margin-bottom: var(--brightivera-space-sm);
  font-size: 1.1rem;
}

a {
  color: var(--brightivera-brown);
  text-decoration: none;
  transition: var(--brightivera-transition);
}

a:hover {
  color: var(--brightivera-yellow);
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}
span.brightivera-logo-icon {
    margin-top: 10px;
}

/* Container */
.brightivera-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--brightivera-space-sm) 0;
}

/* Buttons */
.brightivera-btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: var(--brightivera-yellow);
  color: var(--brightivera-dark-brown);
  border: none;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--brightivera-transition);
  text-shadow: var(--brightivera-shadow-text);
  box-shadow: var(--brightivera-shadow-box);
}

.brightivera-btn:hover {
  background-color: var(--brightivera-brown);
  color: var(--brightivera-white);
  transform: translateY(-2px);
}

.brightivera-btn-outline {
  background: transparent;
  border: 2px solid var(--brightivera-yellow);
  color: var(--brightivera-yellow);
}

.brightivera-btn-outline:hover {
  background-color: var(--brightivera-yellow);
  color: var(--brightivera-dark-brown);
}

/* Header & Navigation */
.brightivera-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--brightivera-shadow-box);
}


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

.brightivera-logo {
  font-family: var(--brightivera-font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--brightivera-dark-brown);
  display: flex;
  align-items: center;
}

.brightivera-logo svg {
  margin-right: var(--brightivera-space-xs);
  height: 40px;
  width: auto;
}

.brightivera-nav {
  display: flex;
  align-items: center;
}

.brightivera-nav-list {
  display: flex;
  list-style: none;
}

.brightivera-nav-item {
  margin-left: var(--brightivera-space-md);
}

.brightivera-nav-link {
  font-weight: 500;
  font-size: 1.1rem;
  padding: 5px 0;
  position: relative;
}

.brightivera-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--brightivera-yellow);
  transition: var(--brightivera-transition);
}

.brightivera-nav-link:hover::after {
  width: 100%;
}

.brightivera-mobile-toggle {
  display: none;
  cursor: pointer;
}

.brightivera-bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: var(--brightivera-dark-brown);
  transition: var(--brightivera-transition);
}

/* Hero Section */
.brightivera-hero {
  height: 100vh;
  background-color: var(--brightivera-cream);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-top: 0px;
}

.brightivera-hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.brightivera-hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: var(--brightivera-space-sm);
  color: var(--brightivera-brown);
}

.brightivera-hero-title {
  margin-bottom: var(--brightivera-space-md);
  color: var(--brightivera-dark-brown);
  font-size: 3rem;
  line-height: 1.1;
}

.brightivera-hero-description {
  margin-bottom: var(--brightivera-space-md);
  font-size: 1.2rem;
}

.brightivera-hero-image {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 50%;
  background-position: center;
  background-size: cover;
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

/* About Section */
.brightivera-about {
  padding: var(--brightivera-space-lg) 0;
  background-color: var(--brightivera-white);
}

.brightivera-about-content {
  display: flex;
  align-items: center;
  gap: var(--brightivera-space-lg);
}

.brightivera-about-text {
  flex: 1;
}

.brightivera-about-image {
  flex: 1;
  position: relative;
}

.brightivera-about-image img {
  box-shadow: var(--brightivera-shadow-box);
  transition: var(--brightivera-transition);
}

.brightivera-about-image img:hover {
  transform: scale(1.03);
}

.brightivera-about-image::before {
  content: '';
  position: absolute;
  left: -20px;
  top: -20px;
  width: 100px;
  height: 100px;
  border-top: 4px solid var(--brightivera-yellow);
  border-left: 4px solid var(--brightivera-yellow);
}

.brightivera-about-image::after {
  content: '';
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 100px;
  height: 100px;
  border-bottom: 4px solid var(--brightivera-yellow);
  border-right: 4px solid var(--brightivera-yellow);
}

/* Services Section */
.brightivera-services {
  padding: var(--brightivera-space-lg) 0;
  background-color: var(--brightivera-cream);
}

.brightivera-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--brightivera-space-md);
}

.brightivera-service-card {
  background-color: var(--brightivera-white);
  padding: var(--brightivera-space-md);
  border-radius: 10px;
  box-shadow: var(--brightivera-shadow-box);
  transition: var(--brightivera-transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.brightivera-service-card:hover {
  transform: translateY(-10px);
}

.brightivera-service-icon {
  width: 50px;
  height: 50px;
  margin-bottom: var(--brightivera-space-sm);
  fill: var(--brightivera-yellow);
  transition: var(--brightivera-transition);
}

.brightivera-service-card:hover .brightivera-service-icon {
  transform: rotate(10deg);
}

.brightivera-service-title {
  font-size: 1.8rem;
  margin-bottom: var(--brightivera-space-sm);
}

/* Products Section */
.brightivera-products {
  padding: var(--brightivera-space-lg) 0;
  background-color: var(--brightivera-white);
}

.brightivera-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--brightivera-space-md);
}

.brightivera-product-card {
  background-color: var(--brightivera-cream);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--brightivera-shadow-box);
  transition: var(--brightivera-transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.brightivera-product-card:hover {
  transform: translateY(-5px);
}

.brightivera-product-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.brightivera-product-content {
  padding: var(--brightivera-space-md);
}

.brightivera-product-title {
  margin-bottom: var(--brightivera-space-xs);
  font-size: 1.6rem;
}

.brightivera-product-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--brightivera-brown);
  margin-bottom: var(--brightivera-space-sm);
}

.brightivera-product-features {
  list-style: none;
  margin-bottom: var(--brightivera-space-md);
}

.brightivera-product-feature {
  margin-bottom: var(--brightivera-space-xs);
  position: relative;
  padding-left: 25px;
}

.brightivera-product-feature::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  background-color: var(--brightivera-yellow);
  border-radius: 50%;
}

/* Testimonials Section */
.brightivera-testimonials {
  padding: var(--brightivera-space-xl) 0;
  background-color: var(--brightivera-cream);
}

.brightivera-testimonials-container {
  position: relative;
}

.brightivera-testimonials-slider {
  display: flex;
  overflow: hidden;
}

.brightivera-testimonial {
  min-width: 100%;
  padding: var(--brightivera-space-md);
  background-color: var(--brightivera-white);
  border-radius: 10px;
  box-shadow: var(--brightivera-shadow-box);
  text-align: center;
  transition: var(--brightivera-transition);
}

.brightivera-testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto var(--brightivera-space-sm);
  overflow: hidden;
  border: 3px solid var(--brightivera-yellow);
}

.brightivera-testimonial-name {
  font-size: 1.4rem;
  margin-bottom: var(--brightivera-space-xs);
}

.brightivera-testimonial-role {
  color: var(--brightivera-brown);
  margin-bottom: var(--brightivera-space-sm);
  font-style: italic;
}

.brightivera-testimonial-text {
  position: relative;
  padding: 0 var(--brightivera-space-md);
}

.brightivera-testimonial-text::before,
.brightivera-testimonial-text::after {
  content: '"';
  font-family: var(--brightivera-font-heading);
  font-size: 4rem;
  position: absolute;
  color: var(--brightivera-yellow);
  opacity: 0.3;
}

.brightivera-testimonial-text::before {
  left: 0;
  top: -20px;
}

.brightivera-testimonial-text::after {
  right: 0;
  bottom: -40px;
}

.brightivera-testimonials-nav {
  display: flex;
  justify-content: center;
  margin-top: var(--brightivera-space-md);
}

.brightivera-testimonials-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--brightivera-brown);
  opacity: 0.3;
  margin: 0 5px;
  cursor: pointer;
  transition: var(--brightivera-transition);
}

.brightivera-testimonials-dot.active {
  opacity: 1;
  background-color: var(--brightivera-yellow);
}

/* Gallery Section */
.brightivera-gallery {
  padding: var(--brightivera-space-lg) 0;
  background-color: var(--brightivera-white);
}

.brightivera-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--brightivera-space-sm);
}

.brightivera-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 1;
  cursor: pointer;
}

.brightivera-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--brightivera-transition);
}

.brightivera-gallery-item:hover .brightivera-gallery-img {
  transform: scale(1.1);
}

.brightivera-gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(78, 31, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--brightivera-transition);
}

.brightivera-gallery-item:hover .brightivera-gallery-overlay {
  opacity: 1;
}

.brightivera-gallery-icon {
  width: 50px;
  height: 50px;
  fill: var(--brightivera-white);
}

/* Lightbox */
.brightivera-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  display: none;
  justify-content: center;
  align-items: center;
  padding: var(--brightivera-space-md);
}

.brightivera-lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.brightivera-lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  border: 5px solid var(--brightivera-white);
  border-radius: 5px;
}

.brightivera-lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.brightivera-lightbox-close::before,
.brightivera-lightbox-close::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: var(--brightivera-white);
  top: 50%;
}

.brightivera-lightbox-close::before {
  transform: rotate(45deg);
}

.brightivera-lightbox-close::after {
  transform: rotate(-45deg);
}

.brightivera-lightbox-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  left: 0;
}

.brightivera-lightbox-prev,
.brightivera-lightbox-next {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: var(--brightivera-transition);
}

.brightivera-lightbox-prev:hover,
.brightivera-lightbox-next:hover {
  background-color: rgba(255, 255, 255, 0.4);
}

.brightivera-lightbox-arrow {
  border: solid var(--brightivera-white);
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 6px;
}

.brightivera-arrow-left {
  transform: rotate(135deg);
}

.brightivera-arrow-right {
  transform: rotate(-45deg);
}

/* Contact Section */
.brightivera-contact {
  padding: var(--brightivera-space-lg) 0;
  background-color: var(--brightivera-cream);
}

.brightivera-contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--brightivera-space-lg);
}

.brightivera-contact-info {
  display: flex;
  flex-direction: column;
}

.brightivera-contact-item {
  margin-bottom: var(--brightivera-space-md);
  display: flex;
  align-items: flex-start;
}

.brightivera-contact-icon {
  width: 30px;
  height: 30px;
  fill: var(--brightivera-yellow);
  margin-right: var(--brightivera-space-sm);
  flex-shrink: 0;
}

.brightivera-contact-text {
  font-size: 1.1rem;
}

.brightivera-contact-text strong {
  display: block;
  margin-bottom: 5px;
  color: var(--brightivera-dark-brown);
}

.brightivera-contact-form {
  background-color: var(--brightivera-white);
  padding: var(--brightivera-space-lg);
  border-radius: 10px;
  box-shadow: var(--brightivera-shadow-box);
}

.brightivera-form-group {
  margin-bottom: var(--brightivera-space-md);
}

.brightivera-label {
  display: block;
  margin-bottom: var(--brightivera-space-xs);
  font-weight: 500;
}

.brightivera-input,
.brightivera-textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: var(--brightivera-font-body);
  font-size: 1rem;
  transition: var(--brightivera-transition);
}

.brightivera-input:focus,
.brightivera-textarea:focus {
  outline: none;
  border-color: var(--brightivera-yellow);
  box-shadow: 0 0 0 2px rgba(254, 186, 23, 0.2);
}

.brightivera-textarea {
  resize: vertical;
  min-height: 150px;
}

/* Footer */
.brightivera-footer {
  background-color: var(--brightivera-dark-brown);
  color: var(--brightivera-cream);
  padding: var(--brightivera-space-lg) 0;
}

.brightivera-footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--brightivera-space-lg);
}

.brightivera-footer-logo {
  font-family: var(--brightivera-font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--brightivera-yellow);
  margin-bottom: var(--brightivera-space-sm);
}

.brightivera-footer-about {
  margin-bottom: var(--brightivera-space-md);
  color: rgba(248, 244, 225, 0.8);
}

.brightivera-footer-social {
  display: flex;
  gap: var(--brightivera-space-sm);
}

.brightivera-social-link {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--brightivera-transition);
}

.brightivera-social-link:hover {
  background-color: var(--brightivera-yellow);
  transform: translateY(-3px);
}

.brightivera-social-icon {
  width: 20px;
  height: 20px;
  fill: var(--brightivera-cream);
}

.brightivera-footer-heading {
  font-size: 1.4rem;
  color: var(--brightivera-yellow);
  margin-bottom: var(--brightivera-space-md);
}

.brightivera-footer-links {
  list-style: none;
}

.brightivera-footer-link {
  margin-bottom: var(--brightivera-space-xs);
}

.brightivera-footer-link a {
  color: rgba(248, 244, 225, 0.8);
  transition: var(--brightivera-transition);
}

.brightivera-footer-link a:hover {
  color: var(--brightivera-yellow);
  padding-left: 5px;
}

.brightivera-copyright {
  margin-top: var(--brightivera-space-lg);
  padding-top: var(--brightivera-space-md);
  border-top: 1px solid rgba(248, 244, 225, 0.1);
  text-align: center;
  color: rgba(248, 244, 225, 0.6);
}

/* Success Page */
.brightivera-success {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--brightivera-cream);
  text-align: center;
}

.brightivera-success-content {
  max-width: 600px;
  padding: var(--brightivera-space-lg);
  background-color: var(--brightivera-white);
  border-radius: 10px;
  box-shadow: var(--brightivera-shadow-box);
}

.brightivera-success-icon {
  width: 70px;
  height: 70px;
  fill: var(--brightivera-yellow);
  margin: 0 auto var(--brightivera-space-md);
  margin-top:30px;
}

.brightivera-success-title {
  font-size: 2.5rem;
  margin-bottom: var(--brightivera-space-sm);
  line-height: 40px;
}

.brightivera-success-message {
  margin-bottom: var(--brightivera-space-md);
  font-size: 1.2rem;
}

/* Policy Pages */
.brightivera-policy {
  padding: var(--brightivera-space-xs) 0;
}

.brightivera-policy-content {
  background-color: var(--brightivera-white);
  padding: 16px;
  border-radius: 10px;
  box-shadow: var(--brightivera-shadow-box);
}

.brightivera-policy-title {
  margin-bottom: var(--brightivera-space-md);
  padding-bottom: var(--brightivera-space-sm);
  border-bottom: 3px solid var(--brightivera-yellow);
}

.brightivera-policy-section {
  margin-bottom: var(--brightivera-space-lg);
}

.brightivera-policy-subtitle {
  font-size: 1.8rem;
  margin-bottom: var(--brightivera-space-sm);
  color: var(--brightivera-brown);
}

.brightivera-policy-list {
  margin-left: var(--brightivera-space-md);
  margin-bottom: var(--brightivera-space-md);
}

.brightivera-policy-item {
  margin-bottom: var(--brightivera-space-xs);
}

/* Media Queries */
@media (max-width: 1200px) {
  html {
    font-size: 15px;
  }
  
  .brightivera-footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  html {
    font-size: 16px;
  }
  
  h1 {
    font-size: 4rem;
  }
  
  h2 {
    font-size: 3.5rem;
  }
  
  h3 {
    font-size: 2.2rem;
  }
  
  p {
    font-size: 1.3rem;
  }
  
  .brightivera-space-md {
    --brightivera-space-md: 2.5rem;
  }
  
  .brightivera-space-lg {
    --brightivera-space-lg: 5rem;
  }
  
  .brightivera-container {
    width: 85%;
  }
  
  .brightivera-mobile-toggle {
    display: block;
    z-index: 1001;
  }
  
  .brightivera-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background-color: var(--brightivera-white);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    justify-content: center;
    transition: var(--brightivera-transition);
    z-index: 1000;
  }
  
  .brightivera-nav.active {
    right: 0;
  }
  
  .brightivera-nav-list {
    flex-direction: column;
    align-items: center;
  }
  
  .brightivera-nav-item {
    margin: var(--brightivera-space-sm) 0;
  }
  
  .brightivera-nav-link {
    font-size: 1.4rem;
  }
  
  .brightivera-about-content {
    flex-direction: column;
  }
  
  .brightivera-services-grid,
  .brightivera-products-grid {
    grid-template-columns: 1fr;
    gap: var(--brightivera-space-lg);
  }
  
  .brightivera-contact-content {
    grid-template-columns: 1fr;
  }
  
  .brightivera-hero-content {
    text-align: center;
    margin: 0 auto;
  }
  
  .brightivera-hero-image {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 0.2;
    width: 100%;
  }
  
  .brightivera-btn {
    padding: 15px 32px;
    font-size: 1.2rem;
  }
  
  .brightivera-input,
  .brightivera-textarea {
    padding: 15px 20px;
    font-size: 1.2rem;
  }
  
  .brightivera-label {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  
  .brightivera-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .brightivera-footer-container {
    grid-template-columns: 1fr;
    gap: var(--brightivera-space-md);
  }
}

@media (max-width: 576px) {
  html {
    font-size: 14px;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2.5rem;
  }

  .brightivera-about-image::before {
 content: unset;
}

.brightivera-about-image::after {
 content: unset;
}
  
  .brightivera-container {
    width: 90%;
  }
  
  .brightivera-gallery-grid {
    grid-template-columns: 1fr;
  }
  .brightivera-contact-form {
    padding: var(--brightivera-space-md) 16px;
}
}

@media (max-width: 360px) {
  html {
    font-size: 13px;
  }
  
  .brightivera-container {
    width: 95%;
    padding: var(--brightivera-space-xs) 0;
  }
  
  .brightivera-logo {
    font-size: 1.7rem;
  }
  
  .brightivera-btn {
    padding: 12px 25px;
    font-size: 1rem;
  }
}