/* Contact Page Specific Styles */

/* Contact Hero Section */
.contact-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 100px;
  position: relative;
  overflow: hidden;
}

.contact-hero-content {
  max-width: 550px;
  z-index: 2;
}

.contact-hero-content h1 {
  font-size: 90px;
  font-weight: 900;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 0.9;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.contact-hero-content h1 span {
  display: block;
  color: #000;
}

.contact-hero-content p {
  font-size: 24px;
  color: #000;
  font-family: Arial, Helvetica, sans-serif;
  margin-bottom: 30px;
  line-height: 1.4;
}

.contact-hero-image {
  position: relative;
  z-index: 1;
}

.contact-hero-image img {
  max-width: 400px;
  transform: rotate(-5deg);
  transition: transform 0.5s ease;
}

.contact-hero-image img:hover {
  transform: rotate(0deg) scale(1.05);
}

/* Container for sections */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Styles */
section {
  padding: 80px 0;
}

.section-title {
  font-size: 48px;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  margin-bottom: 50px;
  text-transform: uppercase;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #d5ff40;
  margin: 15px auto 0;
  border-radius: 2px;
}

/* Contact Form Section */
.contact-form-section {
  background-color: white;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
}

.contact-info {
  background-color: #333;
  color: white;
  padding: 40px;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background-color: #d5ff40;
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
}

.contact-info h2 {
  font-size: 32px;
  font-family: Arial, Helvetica, sans-serif;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.contact-info p {
  font-family: Arial, Helvetica, sans-serif;
  color: #ccc;
  margin-bottom: 40px;
  font-size: 16px;
  position: relative;
  z-index: 1;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  z-index: 1;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.info-icon {
  background-color: #d5ff40;
  color: #333;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.info-content h3 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  margin-bottom: 5px;
}

.info-content p {
  font-family: Arial, Helvetica, sans-serif;
  color: #ccc;
  margin-bottom: 5px;
  font-size: 14px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 5px;
}

.social-links a {
  color: #fff;
  font-size: 18px;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #d5ff40;
}

.form-container {
  background-color: #f9f9f9;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-container h2 {
  font-size: 32px;
  font-family: Arial, Helvetica, sans-serif;
  margin-bottom: 30px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-family: Arial, Helvetica, sans-serif;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #d5ff40;
  box-shadow: 0 0 0 3px rgba(213, 255, 64, 0.2);
  outline: none;
}

.submit-btn {
  grid-column: 1 / -1;
  background-color: #d5ff40;
  color: #000;
  border: none;
  border-radius: 8px;
  padding: 15px 20px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.submit-btn:hover {
  background-color: #c2e83a;
  transform: translateY(-3px);
}

/* FAQ Section */
.faq-section {
  background-color: #d5ff40;
  padding: 80px 0;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #f9f9f9;
}

.faq-question h3 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  margin: 0;
}

.faq-icon {
  font-size: 20px;
  color: #333;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  font-family: Arial, Helvetica, sans-serif;
  padding: 0 20px 20px;
  margin: 0;
  line-height: 1.6;
  color: #555;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* Connect With Us Section */
.connect-section {
  background-color: rgb(241, 241, 241);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

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

.connect-box {
  position: relative;
  background-color: #f9f9f9;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 60px 40px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.connect-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  position: relative;
  z-index: 2;
}

.connect-content {
  max-width: 500px;
}

.connect-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 15px;
}

.connect-icon-wrapper {
  background-color: #000;
  color: white;
  width: 70px;
  height: 70px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.connect-box:hover .connect-icon-wrapper {
  background-color: #d5ff40;
  color: #000;
  transform: rotate(10deg);
}

.instagram-icon {
  transition: transform 0.3s ease;
}

.connect-box:hover .instagram-icon {
  transform: scale(1.1);
}

.connect-title {
  font-family: 'Arial', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #000;
  margin: 0;
  transition: transform 0.3s ease;
}

.connect-box:hover .connect-title {
  transform: translateX(5px);
}

.connect-text {
  font-family: 'Arial', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 30px;
}

.follow-button {
  display: inline-flex;
  align-items: center;
  background-color: #000;
  color: white;
  text-decoration: none;
  padding: 14px 35px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  gap: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.follow-button:hover {
  background-color: #d5ff40;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-icon {
  transition: transform 0.3s ease;
}

.follow-button:hover .btn-icon {
  transform: rotate(15deg);
}

/* Instagram Preview Section */
.instagram-preview {
  flex: 0 0 400px;
  position: relative;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 15px;
  width: 100%;
  height: 350px;
}

.preview-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.preview-item:hover {
  transform: scale(1.05);
  z-index: 5;
}

.preview-image {
  width: 100%;
  height: 100%;
  background-color: #eee;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.preview-item:nth-child(1) .preview-image {
  background-image: url('https://images.pexels.com/photos/1108099/pexels-photo-1108099.jpeg');
}

.preview-item:nth-child(2) .preview-image {
  background-image: url('https://images.pexels.com/photos/1254140/pexels-photo-1254140.jpeg');
}

.preview-item:nth-child(3) .preview-image {
  background-image: url('https://images.pexels.com/photos/58997/pexels-photo-58997.jpeg');
}

.preview-item:nth-child(4) .preview-image {
  background-image: url('https://images.pexels.com/photos/374898/pexels-photo-374898.jpeg');
}

.preview-item:hover .preview-image {
  transform: scale(1.1);
}

/* Decorative Elements */
.decorative-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.deco-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.circle-1 {
  width: 200px;
  height: 200px;
  background-color: #d5ff40;
  top: -50px;
  left: -50px;
}

.circle-2 {
  width: 150px;
  height: 150px;
  background-color: #000;
  bottom: -30px;
  right: 10%;
}

.deco-line {
  position: absolute;
  background-color: #d5ff40;
  opacity: 0.2;
}

.line-1 {
  width: 150px;
  height: 8px;
  top: 30%;
  right: -20px;
  transform: rotate(45deg);
}

.line-2 {
  width: 100px;
  height: 8px;
  bottom: 25%;
  left: 10%;
  transform: rotate(-30deg);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .connect-layout {
    flex-direction: column;
    gap: 40px;
  }
  
  .connect-content {
    text-align: center;
    max-width: 600px;
  }
  
  .connect-header {
    justify-content: center;
  }
  
  .instagram-preview {
    flex: 0 0 auto;
    width: 100%;
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .connect-box {
    padding: 40px 25px;
  }
  
  .connect-title {
    font-size: 28px;
  }
  
  .connect-text {
    font-size: 16px;
  }
  
  .preview-grid {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .connect-section {
    padding: 50px 15px;
  }
  
  .connect-box {
    padding: 30px 20px;
    border-radius: 20px;
  }
  
  .connect-icon-wrapper {
    width: 60px;
    height: 60px;
  }
  
  .connect-header {
    flex-direction: column;
    gap: 10px;
  }
  
  .connect-title {
    font-size: 24px;
  }
  
  .follow-button {
    width: 100%;
    justify-content: center;
  }
  
  .preview-grid {
    height: 250px;
    gap: 10px;
  }
}



/* Animation for form submission */
@keyframes formSubmit {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}

.submit-btn:active {
  animation: formSubmit 0.3s ease;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .contact-hero {
    padding: 60px 80px;
  }

  .contact-hero-content h1 {
    font-size: 80px;
  }

  .contact-hero-image img {
    max-width: 350px;
  }
}

@media (max-width: 992px) {
  .contact-hero {
    padding: 40px 60px;
  }

  .contact-hero-content h1 {
    font-size: 70px;
  }

  .contact-hero-content p {
    font-size: 20px;
  }

  .contact-hero-image img {
    max-width: 300px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    flex-direction: column;
    text-align: center;
    padding: 40px 40px 60px;
  }

  .contact-hero-content {
    margin-bottom: 40px;
  }

  .contact-hero-content h1 {
    font-size: 60px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 36px;
  }

  .store-hours {
    padding: 20px;
  }

  .store-hours li {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }
}

@media (max-width: 576px) {
  .contact-hero {
    padding: 30px 20px 50px;
  }

  .contact-hero-content h1 {
    font-size: 50px;
  }

  .contact-hero-content p {
    font-size: 18px;
  }

  .contact-hero-image img {
    max-width: 250px;
  }

  .contact-info,
  .form-container {
    padding: 30px 20px;
  }

  .section-title {
    font-size: 32px;
  }

  .faq-question h3 {
    font-size: 16px;
  }
}

/* Enhanced Responsive Design for Contact Page */
@media (max-width: 1400px) {
  .contact-hero {
    padding: 60px 80px;
  }

  .contact-hero-content h1 {
    font-size: 85px;
  }

  .contact-hero-image img {
    max-width: 380px;
  }
}

@media (max-width: 1200px) {
  .contact-hero {
    padding: 60px 60px;
  }

  .contact-hero-content h1 {
    font-size: 75px;
  }

  .contact-hero-content p {
    font-size: 22px;
  }

  .contact-hero-image img {
    max-width: 350px;
  }

  .section-title {
    font-size: 42px;
  }

  .contact-layout {
    gap: 40px;
  }

  .contact-info,
  .form-container {
    padding: 35px;
  }

  .faq-container {
    max-width: 700px;
  }
}

@media (max-width: 992px) {
  .contact-hero {
    padding: 40px 40px;
  }

  .contact-hero-content h1 {
    font-size: 65px;
  }

  .contact-hero-content p {
    font-size: 20px;
  }

  .contact-hero-image img {
    max-width: 300px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section-title {
    font-size: 36px;
  }

  .contact-info,
  .form-container {
    padding: 30px;
  }

  .contact-info h2,
  .form-container h2 {
    font-size: 28px;
  }

  .info-items {
    gap: 25px;
  }

  .contact-form {
    gap: 18px;
  }

  .faq-container {
    max-width: 600px;
  }

  .faq-question h3 {
    font-size: 17px;
  }

  .store-hours {
    max-width: 450px;
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px 50px;
  }

  .contact-hero-content {
    margin-bottom: 30px;
  }

  .contact-hero-content h1 {
    font-size: 50px;
  }

  .contact-hero-content p {
    font-size: 18px;
  }

  .contact-hero-image img {
    max-width: 250px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .section-title {
    font-size: 32px;
  }

  .contact-info,
  .form-container {
    padding: 25px;
  }

  .contact-info h2,
  .form-container h2 {
    font-size: 24px;
  }

  .contact-info p {
    font-size: 15px;
  }

  .info-items {
    gap: 20px;
  }

  .info-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .info-content h3 {
    font-size: 16px;
  }

  .info-content p {
    font-size: 13px;
  }

  .social-links a {
    font-size: 16px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px 12px;
    font-size: 15px;
  }

  .form-group label {
    font-size: 14px;
  }

  .submit-btn {
    padding: 12px 18px;
    font-size: 16px;
  }

  .faq-container {
    max-width: 100%;
  }

  .faq-question {
    padding: 18px;
  }

  .faq-question h3 {
    font-size: 16px;
  }

  .faq-answer p {
    padding: 0 18px 18px;
    font-size: 14px;
  }

  .store-hours {
    padding: 20px;
    max-width: 100%;
  }

  .store-hours h3 {
    font-size: 20px;
  }

  .store-hours li {
    flex-direction: column;
    text-align: center;
    gap: 3px;
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .contact-hero {
    padding: 20px 15px 40px;
  }

  .contact-hero-content h1 {
    font-size: 40px;
  }

  .contact-hero-content p {
    font-size: 16px;
  }

  .contact-hero-image img {
    max-width: 200px;
  }

  .contact-info,
  .form-container {
    padding: 20px 15px;
  }

  .section-title {
    font-size: 28px;
  }

  .contact-info h2,
  .form-container h2 {
    font-size: 22px;
  }

  .contact-info p {
    font-size: 14px;
  }

  .info-items {
    gap: 18px;
  }

  .info-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .info-content h3 {
    font-size: 15px;
  }

  .info-content p {
    font-size: 12px;
  }

  .social-links {
    gap: 12px;
  }

  .social-links a {
    font-size: 15px;
  }

  .contact-form {
    gap: 12px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 9px 10px;
    font-size: 14px;
  }

  .form-group label {
    font-size: 13px;
  }

  .submit-btn {
    padding: 10px 16px;
    font-size: 15px;
  }

  .faq-question {
    padding: 15px;
  }

  .faq-question h3 {
    font-size: 15px;
  }

  .faq-icon {
    font-size: 18px;
  }

  .faq-answer p {
    padding: 0 15px 15px;
    font-size: 13px;
  }

  .store-hours {
    padding: 18px;
  }

  .store-hours h3 {
    font-size: 18px;
  }

  .store-hours li {
    font-size: 13px;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .contact-hero-content h1 {
    font-size: 35px;
  }

  .section-title {
    font-size: 24px;
  }

  .contact-info h2,
  .form-container h2 {
    font-size: 20px;
  }

  .contact-hero-image img {
    max-width: 180px;
  }
}

/* Landscape orientation for mobile devices */
@media (max-width: 768px) and (orientation: landscape) {
  .contact-hero {
    flex-direction: row;
    padding: 20px;
  }

  .contact-hero-content {
    margin-bottom: 0;
    margin-right: 20px;
  }

  .contact-hero-content h1 {
    font-size: 45px;
  }

  .contact-hero-image img {
    max-width: 220px;
  }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .contact-hero-image img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}
