/* Modern Contact Page Styles */
:root {
  --primary-color: #a91101;
  --primary-light: #e74c3c;
  --text-dark: oklch(21% 0.034 264.665);
  --text-light: oklch(50% 0.025 264.665);
  --text-medium: oklch(35% 0.030 264.665);
  --heading-primary: oklch(21% 0.034 264.665);
  --light-bg: #f8f9fa;
  --white: #ffffff;
  --border-radius: 12px;
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--light-bg);
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-light);
}
/* Prevent content overflow */
.container {
    width: 90%;
    margin: 0 auto;
    max-width: 1200px;
}
/* Ensure body and html take full height */
html, body {
    height: auto;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    overflow-y: auto;
}

/* ========== MODERN HIMALAYAN FRUITS SECTION ========== */
#himalayan-fruits-section {
    position: relative;
    padding: 60px 0;
    background: linear-gradient(300deg, #cc4b06 2%, #a91101 98%);
    overflow: hidden;
    min-height: 450px;
    box-shadow: 0 5px 36px rgba(169,17,1,0.15);
}

#himalayan-fruits-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/cover1 copy.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.1;
    z-index: 1;
}

#himalayan-fruits-section .content {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255,255,255,0.1);
    border-radius: 30px;
    padding: 40px 50px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

#himalayan-fruits-section .slogan {
    flex: 1;
    color: white;
    font-size: 1.8rem;
    font-weight: 600;
    font-family: 'Secular One', sans-serif;
    opacity: 0;
    transform: translateX(-60px);
    animation: fade-slide-in-left 1.2s 0.2s forwards;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

#himalayan-fruits-section .slogan p {
    font-size: 1.3rem;
    font-weight: 400;
    margin-top: 20px;
    font-family: 'Poppins', sans-serif;
    opacity: 0.95;
    letter-spacing: 0.5px;
    line-height: 1.5;
}

#himalayan-fruits-section .fruit-image {
    flex: 1;
    text-align: center;
    opacity: 0;
    transform: translateX(60px);
    animation: fade-slide-in-right 1.2s 0.4s forwards;
}

#himalayan-fruits-section .fruit-image img {
    width: 70%;
    max-width: 400px;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.3));
    transition: transform 0.3s ease;
}

#himalayan-fruits-section .fruit-image img:hover {
    transform: scale(1.05);
}

@keyframes fade-slide-in-left {
    from { opacity: 0; transform: translateX(-60px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fade-slide-in-right {
    from { opacity: 0; transform: translateX(60px); }
    to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 768px) {
    #himalayan-fruits-section {
        padding: 30px 15px;
        min-height: 350px;
    }

    #himalayan-fruits-section .content {
        flex-direction: column;
        padding: 25px 20px;
        gap: 25px;
        border-radius: 20px;
    }

    #himalayan-fruits-section .slogan {
        font-size: 1.4rem;
        text-align: center;
    }

    #himalayan-fruits-section .slogan p {
        font-size: 1.1rem;
    }

    #himalayan-fruits-section .fruit-image img {
        width: 85%;
    }
}

/* Content Section */
/* ========== MODERN CONTACT FORM SECTION ========== */
.contact-form-container {
  width: 100%;
  padding: 5rem 1.5rem;
  position: relative;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
  overflow: hidden;
}

.contact-form-container h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--text-dark);
  position: relative;
  padding-bottom: 1rem;
}

.contact-form-container h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 2px;
}

.contact-form-container h2 strong {
 
  font-weight: 700;
}

/* Modern Background Pattern */
.contact-form-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/Untitled-1.png') no-repeat center center;
    background-size: cover;
    opacity: 0.05;
    z-index: 1;
    pointer-events: none;
}

.contact-form-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Form Layout */
.contact-form {
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2.5rem;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  position: relative;
  z-index: 2;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form:hover {
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

/* Header Style */
.contact-form-container h2 {
    text-align: center;
   
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-family: 'Secular One', sans-serif;
    position: relative;
    z-index: 2;
}

.contact-form-container h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #A91101, #e9da11);
    border-radius: 2px;
}

/* Form Rows */
.form-row {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* Input and Textarea Styles */
.contact-form .input-group {
  position: relative;
  width: 100%;
  margin-bottom: 1.5rem;
}

.contact-form .input-group i {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-color);
  font-size: 1.1rem;
  transition: var(--transition);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    max-width: 100%;
    padding: 1.2rem 1.5rem;
    margin-bottom: 0;
    border: 2px solid rgba(169,17,1,0.2);
    background: rgba(255,255,255,0.9);
  
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
    outline: none;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(169,17,1,0.08);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #A91101;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(169,17,1,0.15);
    background: rgba(255,255,255,1);
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

/* Row for Name + Email */
.form-row {
    display: flex;
    gap: 1.5rem;
    width: 100%;
}

.form-row input {
    flex: 1;
}

/* Responsive: stack on smaller screens */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }
}


/* Button Style */
#sendMessageButton , #sendQueryButton{
        background: linear-gradient(90deg, #a91101 60%, #e74c3c 100%);
    display: block;
    text-align: center;
    text-decoration: none;
    color: #fff;
    border: 2px solid #a91101;
    border-radius: 12px;
    padding: 14px 28px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(.4,0,.2,1);
    margin: 30px auto;
    width: 600px;
    max-width: 100%;
    box-shadow: 0 4px 12px rgba(169,17,1,0.2);
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.1px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

#sendMessageButton::before ,#sendQueryButton::before {
       content: '';
    position: absolute;
    left: -60%; top: 0; width: 60%; height: 100%;
    background: linear-gradient(120deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0) 100%);
    transform: skewX(-20deg);
    transition: left 0.5s cubic-bezier(.4,0,.2,1);
    z-index: 0;
}

#sendMessageButton:hover ,#sendQueryButton:hover {
  background: #fff;
    color: #a91101;
    border: 2px solid #a91101;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(169,17,1,0.25);
}

#sendMessageButton:hover::before ,#sendQueryButton:hover::before{
    left: 1100%;
}

#sendMessageButton:active ,#sendQueryButton:active {
    transform: translateY(-1px);
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .contact-form-container {
        width: 100%; /* Ensures full-width container */
        padding: 1.5rem 1rem; /* Add padding to prevent overflow */
        box-sizing: border-box; /* Account for padding in width calculations */
        overflow-x: hidden; /* Prevent horizontal scrolling */
    }

    .contact-form {
        width: 100%; /* Form stretches to fit container */
        max-width: 100%; /* Prevents any field from exceeding screen width */
        margin: 0 auto; /* Centers form horizontally */
        gap: 1rem; /* Keeps fields spaced evenly */
        padding: 0; /* Removes excess padding */
        box-sizing: border-box; /* Prevent any unintended overflow */
    }
    .contact-form-container h2{
        font-size: 26px;
    }

    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form textarea {
        width: 100%; /* Fields fit within form width */
        padding: 1rem;
        border: 2px solid#a91101;/* Bold border for emphasis */
        box-sizing: border-box; /* Includes padding in width */
    }

    #sendMessageButton {
        width: 100%; /* Button aligns with field width */
        padding: 1rem;
        box-sizing: border-box; /* Prevents overflow due to padding */
    }
}

@media (max-width: 1024px) {
    .contact-form-container {
        width: 100%; /* Ensures full-width container */
        padding: 1.5rem 1rem; /* Add padding to prevent overflow */
        box-sizing: border-box; /* Account for padding in width calculations */
        overflow-x: hidden; /* Prevent horizontal scrolling */
    }

    .contact-form {
        width: 100%; /* Form stretches to fit container */
        max-width: 100%; /* Prevents any field from exceeding screen width */
        margin: 0 auto; /* Centers form horizontally */
        gap: 1rem; /* Keeps fields spaced evenly */
        padding: 0; /* Removes excess padding */
        box-sizing: border-box; /* Prevent any unintended overflow */
    }

    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form textarea {
        width: 100%; /* Fields fit within form width */
        padding: 1rem;
        border: 2px solid#a91101;/* Bold border for emphasis */
        box-sizing: border-box; /* Includes padding in width */
    }

    #sendMessageButton ,#sendQueryButton{
        width: 50%; /* Button aligns with field width */
        padding: 0.6rem;
        box-sizing: border-box; /* Prevents overflow due to padding */
    }
}

/* Query Section Container */
.query-section {
    width: 100%; /* Full width */
    padding: 2rem;
    background: #ffffff; /* Clean white background */
    text-align: center; /* Center align content */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem; /* Space between elements */
    box-sizing: border-box;
}

/* Section Header */
.query-section h2 {
    font-size: 36px;
    margin-bottom: 1rem;
    font-weight: normal;
 
}

/* Form Layout */
.query-section form {
    width: 100%;
    max-width: 500px; /* Restrict form width for consistent design */
    display: flex;
    gap: 1rem; /* Space between input and button */
    box-sizing: border-box; /* Padding included in width */
}

/* Input Field */
.query-section input[type="text"] {
    flex: 1; /* Input takes remaining space */
    padding: 1rem;
    border: 2px solid#a91101;/* Bold border for style */
    border-radius: 15px;
    font-size: 1rem;
 
    background: #ffffff; /* Light gray background for contrast */
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.query-section input[type="text"]:focus {
    border-color: #FF5E28; /* Accent color on focus */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle focus shadow */
}

/* Query Message */
#queryMessage {
    color: #006837; /* Success message color */
    font-size: 1rem;
    margin-top: 1rem;
}

/* Responsive Design for Tablets and Mobile */
@media (max-width: 768px) {
    .query-section form {
        flex-direction: column; /* Stack input and button */
        gap: 1rem;
    }
    .query-section form {
        width: 100%;
        max-width: 300px;
        flex-direction: column;
        align-items: center;
      
    }
    .query-section input[type="text"] {
        width: 100%; /* Full width input */
    }

    #sendQueryButton {
        width: 100%; /* Full width button for mobile */
    }

    .query-section h2 {
        font-size: 26px; /* Adjust header size */
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .query-section form {
        gap: 1rem; /* Slightly larger gap for tablets */
    }

    .query-section h2 {
        font-size: 1.75rem; /* Adjust header size for tablet */
    }
}

/* FAQ Section */
/* FAQ Section */
.faq {
    width: 100%;
    max-width:99vw; /* Decrease the outer box size */
    margin: 0 auto; /* Center the section */
    padding: 2rem;
    background: #ffffff; /* Light gray background for readability */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center align content */
    gap: 1.5rem; /* Space between elements */
}

/* FAQ Container for two-column layout */
.faq-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    width: 100%;
    max-width: 95vw; /* Control the overall width */
}

/* FAQ Column */
.faq-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Section Header */
.faq h2 {
  
    font-size: 36px;
    margin-bottom: 1rem;
    font-weight: normal;
  
    text-align: center; /* Center the heading */
}

/* FAQ Items */
.faq-item {
    width: 100%;
    max-width: 800px; /* Restrict width for larger screens */
    background: #a91101; /* White background for contrast */
    padding: 0.5rem;
    border: 2px solid transparent;/* Theme border */
   border-radius: 5px;
    overflow: hidden; /* Ensures no content escapes */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle depth effect */
}

.faq-item:hover {
    background: white;
    color: #a91101;
    border-color: #a91101;
    box-shadow: 0px 5px 15px rgba(10, 48, 6, 0.4);
    transform: translateY(-2px);
}

.faq-item.open {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); /* Enhanced shadow when expanded */
    
}

.faq-item h3 {
    font-size: 1.5rem;
    color: white;/* Accent color for questions */
    margin: 0;
    padding: 1rem;
    cursor: pointer; /* Indicates clickable element */

    transition:ease-in-out 0.3s ;
}

.faq-item h3:hover {
    background-color:white;
    color: #a91101; /* Highlight on hover */
}

.faq-answer {
    font-size: 1rem;
   
    padding: 1rem;
    line-height: 1.6; /* Comfortable spacing */
    margin: 0;
    display: none; /* Hide answers by default */
}

/* FAQ Answers Expandable */
.faq-item.open .faq-answer {
    display: block; /* Show answers when open */
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq {
        max-width: 95%; /* Make it more mobile-friendly */
        padding: 1.5rem;
    }
    
    .faq-container {
        grid-template-columns: 1fr; /* Stack columns on mobile */
        gap: 1rem;
        max-width: 100%;
    }
    
    .faq h2 {
        font-size: 26px; /* Slightly smaller for mobile */
    }

    .faq-item h3 {
        font-size: 0.8rem; /* Adjust font size for mobile */
        padding: 2px;
    }

    .faq-answer {
        font-size: 0.7rem; /* Smaller text for answers */
    }
}

/* Tablet responsive design */
@media (min-width: 769px) and (max-width: 1024px) {
    .faq {
        max-width: 90%;
    }
    
    .faq-container {
        gap: 1.5rem;
        max-width: 90%;
    }
    
    .faq-item {
        max-width: 100%;
    }
}


/* Make the main content section expand to push footer down */
.container {
    flex: 1;
}

/* Map Section */
.map-section {
    width: 100%; /* Full width */
    padding: 2rem;
    background: #ffffff; /* Light gray background for section */
    text-align: center; /* Center align all content */
    box-sizing: border-box;
}

/* Map Heading */
.map-heading {
  
    font-size: 36px;
    margin-bottom: 1.5rem;
    font-weight: normal;
  
}

/* Map Container */
.map-container {
    width: 100%;
    max-width: 800px; /* Restrict size for larger screens */
    margin: 0 auto 2rem auto; /* Center the map container */
    border: 1px solid#a91101;/* Themed border */
   border-radius: 10px;
    overflow: hidden; /* Ensures no content escapes */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle depth effect */
}

/* Embedded Map (iframe) */
.map-container iframe {
    width: 100%; /* Full width inside the container */
    height: 400px; /* Standard height */
    border: 0; /* Remove default iframe border */
}

.contact-info {
    min-width: 50vw;
    max-width: 80vw;
    font-family: 'secular one';
  font-size: 16px;

  padding: 20px;
  background-color: #f9f9f9;
  border-left: 4px solid #A91101;
  border-radius: 5px;
  margin:1rem auto;
}

.contact-info p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.contact-info .icon {
  margin-right: 10px;
  flex-shrink: 0;
}

.contact-info a {
  color: #A91101;
  text-decoration: none;
}

.contact-info a:hover {
  color: #e9da11;
  text-decoration: underline;
}

/* Map Slogan */
.map-slogan {
   
    font-size: 1.8rem; /* Default font size for desktops */
    font-weight: normal; /* Normal font weight */
    line-height: 1.5; /* Improved readability */
    text-transform: capitalize; /* Elegant capitalization */
    font-family: 'Secular one', sans-serif;
 text-align: center;
 align-self: center;
 max-width: 90vw;
margin: 2rem 0;
}
.map-slogan strong{
    font-weight: bold; /* Bold styling for emphasis */
    color:  #006837; /* Optional black color for key words */
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .map-container {
        max-width: 90%; /* Slightly smaller on mobile */
    }

    .map-container iframe {
        height: 300px; /* Adjust height for mobile screens */
    }

    .map-heading {
        font-size: 26px; /* Adjust header size */
    }

    .map-slogan {
        font-size: 24px; /* Smaller font for mobile */
        padding: 10px;
    }
}

/* Responsive Design for Tablets */
@media (min-width: 769px) and (max-width: 1024px) {
    .map-container iframe {
        height: 350px; /* Adjust height for tablets */
    }

    .map-heading {
        font-size: 2.5rem; /* Adjust header size for tablets */
    }
}
