/* Contact Page Styles */

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  box-sizing: border-box;
}

main {
  flex: 1 0 auto;
  width: 100%;
}

header {
  background: rgba(255,255,255,0);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  position: absolute;
  width: 100%;
  z-index: 10;
  top: 0;
  left: 0;
}

.contact-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: 60px 10px 40px 10px;
  background: #faf7f5;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  box-sizing: border-box;
}

.contact-section h1 {
  color: var(--maroon);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2em;
  margin-bottom: 10px;
}

.contact-section p {
  color: var(--dark);
  margin-bottom: 28px;
  text-align: center;
  max-width: 420px;
}

.contact-form {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 24px #7B2D2611;
  padding: 32px 28px 24px 28px;
  max-width: 420px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form label {
  font-weight: bold;
  color: var(--maroon);
  margin-bottom: 4px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #ccc;
  border-radius: 6px;
  font-size: 1em;
  margin-bottom: 8px;
  box-sizing: border-box;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--maroon);
  box-shadow: 0 0 8px #7B2D2633;
  background: #f6fff6;
}

.contact-form button[type="submit"] {
  width: 100%;
  padding: 14px 0;
  background: linear-gradient(90deg, var(--maroon) 60%, var(--gold) 100%);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 10px;
  box-shadow: 0 2px 8px #7B2D2622;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.contact-form button[type="submit"]:hover {
  background: linear-gradient(90deg, var(--gold) 60%, var(--maroon) 100%);
  box-shadow: 0 4px 16px #7B2D2633;
  transform: scale(1.04);
}

footer {
  flex-shrink: 0;
}

.contact-box {
  background: linear-gradient(rgba(255,255,255,0.3), rgba(255,255,255,0.3)), url('../uploads/bg1.jpg') center center/cover no-repeat;
  border-radius: 16px;
  box-shadow: 0 4px 32px #7B2D2615;
  padding: 36px 32px 28px 32px;
  max-width: 440px;
  width: 100%;
  margin: 48px auto 32px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faq-section {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 32px #7B2D2610;
  padding: 32px 24px 18px 24px;
  max-width: 540px;
  width: 100%;
  margin: 0 auto;
  margin-top: 18px;
}

.faq-section h2 {
  color: var(--maroon);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3em;
  margin-bottom: 18px;
  text-align: center;
}

.faq-box {
  border-bottom: 1px solid #eee;
  padding: 14px 0 8px 0;
  background: #fff;
  border-radius: 10px;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px #7B2D2610;
  transition: box-shadow 0.3s, background 0.3s, max-height 0.4s cubic-bezier(.23,1.01,.32,1);
  max-height: 70px;
  overflow: hidden;
}

.faq-box.open {
  background: #faf7f5;
  box-shadow: 0 6px 24px #7B2D2622;
  max-height: 300px;
}

.faq-q {
  font-weight: bold;
  color: var(--maroon);
  cursor: pointer;
  position: relative;
  padding-right: 24px;
  font-size: 1.18em;
}

.faq-q::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  color: var(--gold);
  transition: transform 0.2s;
}

.faq-box.open .faq-q::after {
  content: '-';
  transform: rotate(180deg);
}

.faq-a {
  color: var(--dark);
  margin-top: 6px;
  display: none;
  font-size: 1.08em;
  line-height: 1.6;
}

.faq-box.open .faq-a {
  display: block;
}

.blog-section {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 32px #7B2D2615;
  padding: 36px 24px 24px 24px;
  max-width: 700px;
  width: 100%;
  margin: 32px auto 0 auto;
  animation: fadeInUp 0.8s cubic-bezier(.23,1.01,.32,1) 0.1s both;
}

.blog-section h2 {
  color: var(--maroon);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.5em;
  margin-bottom: 22px;
  text-align: center;
  letter-spacing: 1px;
}

.blog-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 22px;
}

.blog-post {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px #7B2D2612;
  padding: 22px 20px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-left: 6px solid var(--maroon);
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s;
  opacity: 0;
  transform: translateY(40px);
  animation: blogFadeIn 0.8s cubic-bezier(.23,1.01,.32,1) forwards;
}

.blog-post:nth-child(2) { animation-delay: 0.15s; }
.blog-post:nth-child(3) { animation-delay: 0.3s; }

.blog-title {
  font-size: 1.18em;
  font-weight: bold;
  color: var(--maroon);
  margin-bottom: 2px;
}

.blog-date {
  font-size: 0.98em;
  color: var(--gold);
  margin-bottom: 4px;
  font-weight: 600;
}

.blog-excerpt {
  color: var(--dark);
  font-size: 1.04em;
  margin-bottom: 10px;
}

.blog-readmore {
  color: var(--maroon);
  font-weight: bold;
  text-decoration: underline;
  font-size: 1em;
  align-self: flex-start;
  transition: color 0.2s, text-shadow 0.2s;
}

.blog-readmore:hover {
  color: var(--gold);
  text-shadow: 0 2px 8px #7B2D2633;
}

.blog-post:hover {
  box-shadow: 0 8px 32px #7B2D2633, 0 2px 16px #7B2D2612;
  transform: translateY(-6px) scale(1.025);
}

@keyframes blogFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }
  
  .contact-section {
    padding: 32px 15px 24px 15px;
    min-height: auto;
    padding-top: 80px;
    max-width: 100vw;
    overflow-x: hidden;
  }
  .contact-section h1 {
    font-size: 1.6em;
    margin-bottom: 8px;
  }
  .contact-section p {
    font-size: 0.95em;
    max-width: 100%;
  }
  .contact-form {
    max-width: 98vw;
    padding: 18px 4vw 14px 4vw;
    gap: 12px;
  }
  .contact-form label {
    font-size: 0.95em;
  }
  .contact-form input,
  .contact-form textarea {
    padding: 10px 12px;
    font-size: 0.95em;
  }
  .contact-form button[type="submit"] {
    padding: 12px 0;
    font-size: 1em;
  }
  .contact-box, .faq-section {
    max-width: calc(100vw - 30px);
    padding: 16px 15px 12px 15px;
    margin: 0 15px;
  }
  .contact-box {
    margin-top: 28px;
    padding: 24px 20px 20px 20px;
  }
  .contact-box h1 {
    font-size: 1.5em;
  }
  .contact-box p {
    font-size: 0.95em;
  }
  .blog-section {
    max-width: calc(100vw - 30px);
    padding: 16px 15px 12px 15px;
    margin: 0 15px;
  }
  .blog-post {
    padding: 12px 2vw 10px 2vw;
  }
  .faq-section h2 {
    font-size: 1.2em;
  }
  .faq-q {
    font-size: 1.1em;
    padding-right: 20px;
  }
  .faq-a {
    font-size: 1em;
  }
  .blog-section h2 {
    font-size: 1.3em;
  }
  .blog-title {
    font-size: 1.1em;
  }
  .blog-excerpt {
    font-size: 0.95em;
  }
  /* Header mobile adjustments */
  header .header-inner {
    padding: 8px 4vw;
  }
  .logo img {
    width: 45px !important;
    height: 45px !important;
  }
  .logo span {
    font-size: 1.2em !important;
  }
  nav a {
    font-size: 0.9em;
    padding: 6px 10px;
  }
  
  /* Mobile menu adjustments for contact page */
  .mobile-menu-toggle {
    display: flex;
  }
  
  nav {
    display: none;
  }
}

@media (max-width: 800px) {
  .blog-list {
    grid-template-columns: 1fr;
  }
}

/* Extra small mobile devices */
@media (max-width: 400px) {
  .contact-section {
    padding: 20px 3vw 16px 3vw;
    padding-top: 70px;
  }
  .contact-section h1 {
    font-size: 1.4em;
  }
  .contact-box {
    padding: 20px 16px 16px 16px;
  }
  .contact-box h1 {
    font-size: 1.3em;
  }
  .contact-form {
    padding: 16px 3vw 12px 3vw;
    gap: 10px;
  }
  .contact-form input,
  .contact-form textarea {
    padding: 8px 10px;
    font-size: 0.9em;
  }
  .faq-section {
    padding: 20px 16px 12px 16px;
  }
  .blog-section {
    padding: 20px 16px 12px 16px;
  }
  .follow-us-section {
    padding: 20px 16px 16px 16px;
  }
  .social-icons {
    gap: 12px;
  }
  .social-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1em;
  }
  header .header-inner {
    padding: 6px 3vw;
  }
  .logo img {
    width: 40px !important;
    height: 40px !important;
  }
  .logo span {
    font-size: 1.1em !important;
  }
  nav a {
    font-size: 0.85em;
    padding: 5px 8px;
  }
}

/* Landscape mobile orientation */
@media (max-width: 768px) and (orientation: landscape) {
  .contact-section {
    padding-top: 60px;
    min-height: auto;
  }
  .follow-us-section {
    margin-top: 20px;
  }
  .contact-box {
    margin-top: 20px;
  }
}

/* Follow Us Section Styles */
.follow-us-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 16px;
  box-shadow: 0 8px 32px #7B2D2615, 0 2px 8px #7B2D2610;
  padding: 32px 24px 24px 24px;
  max-width: 400px;
  width: 100%;
  margin: 80px auto 24px auto;
  text-align: center;
  animation: fadeInUp 0.8s cubic-bezier(.23,1.01,.32,1) 0.1s both;
  border: 1px solid #e0e0e0;
  position: relative;
  overflow: hidden;
}
.follow-us-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--maroon) 0%, var(--gold) 100%);
}
.follow-us-section h2 {
  color: var(--maroon);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.4em;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
}
.follow-us-section p {
  color: var(--dark);
  font-size: 1em;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}
.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.social-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(.23,1.01,.32,1);
  position: relative;
  overflow: hidden;
}
.social-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit;
  border-radius: 50%;
  transition: transform 0.3s;
}
.social-icon:hover::before {
  transform: scale(1.1);
}
.social-icon i {
  position: relative;
  z-index: 2;
}
.social-icon.tiktok {
  background: #000;
  box-shadow: 0 4px 12px #00000033;
}
.social-icon.tiktok:hover {
  background: #333;
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 20px #00000044;
}
.social-icon.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 4px 12px #dc274333;
}
.social-icon.instagram:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 20px #dc274344;
}
.social-icon.whatsapp {
  background: #25D366;
  box-shadow: 0 4px 12px #25D36633;
}
.social-icon.whatsapp:hover {
  background: #128C7E;
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 20px #25D36644;
}
@media (max-width: 600px) {
  .follow-us-section {
    max-width: 98vw;
    padding: 20px 3vw 16px 3vw;
    margin-top: 28px;
  }
  .social-icons {
    gap: 16px;
  }
  .social-icon {
    width: 44px;
    height: 44px;
    font-size: 1.3em;
  }
} 