@charset "UTF-8";

/*  HERO BANNER SECTION  */
.hero-section {
    background-color: #CCCCCC;
    height: 70vh;
    margin-top: 80px;
    position: relative;
    width: 100%;
}
/*vignette*/
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.732) 100%);
    z-index: 10;
}

.hero-slide {
    background-position: center;
    background-size: cover;
    height: 100%;
    left: 0;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    position: absolute;
    top: 0;
    transition: opacity 1s ease-in-out;
    width: 100%;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.45));
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    padding: 0 20px;
    position: relative;
    text-align: center;
    width: 100%;
    z-index: 2;
}

.hero-title {
    color: var(--color-chiffon-white);
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
   
}

.hero-subtitle {
    color: var(--color-chiffon-white);
    font-size: 1.4rem;
    font-weight: 500;
    margin-top: 10px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    
}

/* TRUST & SERVICES BAR */
.services-bar {
    background-color: var(--color-alice-blue);
    border-bottom: 1px solid #c9e0e9;
    padding: 30px 20px;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1200px;
}

.service-item {
    align-items: center;
    display: flex;
    flex: 1;
    flex-direction: column;
    min-width: 180px;
    text-align: center;
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.service-item h3 {
    color: var(--color-text-dark);
    font-size: 1rem;
    font-weight: 600;
}

/* ABOUT COMPANY PREVIEW & ACCORDION */
.about-preview {
    padding: 80px 20px;
}

.about-container {
    align-items: center;
    display: flex;
    gap: 50px;
    margin: 0 auto;
    max-width: 1200px;
}

.about-image-side {
    display: flex;
    flex: 1;
    gap: 20px;
    padding-bottom: 30px;
}

.about-img {
    background-color: #E0E0E0;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    display: block;
    height: 420px;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 50%;
}

.about-img:hover {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    transform: scale(1.03);
}

/* Elegant staggered effect: drops the second image slightly */
.about-img:nth-child(2) {
    transform: translateY(30px);
}

.about-img:nth-child(2):hover {
    transform: translateY(30px) scale(1.03);
}

.about-content-side {
    flex: 1;
}

.about-content-side h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.about-intro {
    color: var(--color-text-muted);
    margin-bottom: 25px;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    border-bottom: 1px solid #EAEAEA;
}

.accordion-header {
    background: none;
    border: none;
    color: var(--color-sunflower-gold);
    cursor: pointer;
    display: flex;
    font-family: var(--font-main);
    font-size: 1.15rem;
    font-weight: 700;
    justify-content: space-between;
    padding: 15px 0;
    text-align: left;
    width: 100%;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-body p {
    color: var(--color-text-muted);
    padding-bottom: 15px;
}

/* HIGHLIGHTS */
.products-preview {
    background-color: var(--color-chiffon-white);
    border-top: 4px solid var(--color-pine-blue);
    border-bottom: 4px solid var(--color-pine-blue);
    padding: 80px 20px;
}

.center-button {
    text-align: center;
}

.gallery-preview {
    padding: 30px 20px;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 0 auto;
    max-width: 1200px;
}

.gallery-item {
    flex: 1;
    min-width: 250px;
}

.gallery-item img {
    background-color: #E0E0E0;
    border-radius: 12px;
    display: block;
    height: 200px;
    object-fit: cover;
    width: 100%;
}

/* CONTACT & FORM SECTION */
.btn-submit {
    background-color: var(--color-sunflower-gold);
    border: none;
    border-radius: 50px;
    color: var(--color-text-dark);
    cursor: pointer;
    font-family: var(--font-main);
    font-size: 1.1rem;
    font-weight: 700;
    padding: 16px 32px;
    transition: transform 0.2s ease, background-color 0.2s ease;
    width: 100%;
}

.btn-submit:hover {
    background-color: var(--color-accent-yellow);
    transform: translateY(-2px);
}

.contact-container {
    align-items: flex-start;
    display: flex;
    gap: 60px;
    margin: 0 auto;
    max-width: 1200px;
}

.contact-form-side {
    background-color: var(--color-chiffon-white);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    flex: 1.2;
    padding: 40px;
}

.contact-info-side {
    flex: 0.8;
}

.contact-info-side h2 {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.contact-intro {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.contact-method-icon {
    color: var(--color-pine-blue);
    font-size: 28px;
}

.contact-section {
    background-color: var(--color-almond-cream);
    border-top: 1px solid #EEEEEE;
    padding: 100px 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group label {
    color: var(--color-text-dark);
    font-weight: 700;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    border: 1px solid #D0D0D0;
    border-radius: 8px;
    color: var(--color-text-dark);
    font-family: var(--font-main);
    font-size: 1rem;
    padding: 12px 16px;
    transition: border-color 0.2s ease;
}

.form-group textarea {
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-seagreen);
    outline: none;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.quick-contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.quick-method-item,
.quick-method-link {
    align-items: center;
    background-color: var(--color-chiffon-white);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    color: var(--color-text-dark);
    display: flex;
    gap: 16px;
    padding: 20px;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.quick-method-link:hover {
    transform: translateY(-3px);
}

.quick-method-item div,
.quick-method-link div {
    display: flex;
    flex-direction: column;
}

.quick-method-item strong,
.quick-method-link strong {
    font-size: 1rem;
}

.quick-method-item span,
.quick-method-link span {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* MOBILE RESPONSIVENESS (CONTACT FORM) */

@media (max-width: 992px) {
  /* Stack the contact info section and the form section vertically */
  .contact-container {
    flex-direction: column;
    gap: 40px;
    width: 100%;
  }

  /* Force the form container to fill the screen space */
  .contact-form-side {
    width: 100%;
  }

  /* Force the left info container to fill the screen space */
  .contact-info-side {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .contact-form-side {
    padding: 20px;
  }

  .form-row {
    flex-direction: column;
    gap: 0; 
  }

  .h-captcha {
    overflow-x: auto;
    transform: scale(0.9);
    transform-origin: 0 0;
  }
}