* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #f5f7fa 0%, #f7f2ec 100%);
  min-height: 100vh;
  color: #333;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Ensure nav always on top */
.menu-toggle {
  position: fixed;
  z-index: 9999 !important;
  pointer-events: auto !important;
}

.nav-panel {
  z-index: 9998 !important;
}

.logo-container {
  position: absolute;
  top: 25px;
  left: 24px;
  z-index: 10;
}

.site-logo {
  width: 80px;
  /* adjust as needed */
  height: auto;
  object-fit: contain;
}

/* CONTACT SECTION */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  position: relative;
  z-index: 1;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-info h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.contact-info h1 span {
  display: inline-block;
  background: #a79678;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.contact-info p {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 40px;
}

.contact-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin-bottom: 30px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

/* SOCIAL ICONS */
.wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.wrapper .icon {
  position: relative;
  text-decoration: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .icon span {
  display: block;
  height: 60px;
  width: 60px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  line-height: 60px;
  font-size: 25px;
  color: #000;
  transition: 0.4s;
}

.wrapper .icon .tooltip {
  position: absolute;
  top: 0;
  background: #fff;
  color: #fff;
  padding: 10px 18px;
  font-size: 16px;
  border-radius: 25px;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
}

.wrapper .icon:hover .tooltip {
  top: -60px;
  opacity: 1;
}

.icon .tooltip::before {
  content: '';
  position: absolute;
  height: 15px;
  width: 15px;
  background: inherit;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%) rotate(45deg);
}

.wrapper .icon:hover span {
  color: #fff;
}

/* Social Colors */
.instagram:hover span,
.instagram:hover .tooltip {
  background: #E1306C;
}

.linkedin:hover span,
.linkedin:hover .tooltip {
  background: #0077B5;
}

.pinterest:hover span,
.pinterest:hover .tooltip {
  background: #BD081C;
}

.youtube:hover span,
.youtube:hover .tooltip {
  background: #DE463B;
}

.facebook:hover span,
.facebook:hover .tooltip {
  background: #3B5999;
}

/* FORM SECTION */
.contact-form {
  flex: 1;
  min-width: 300px;
}

.form-container {
  background: #fff;
  padding: 50px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}

.form-container p {
  text-align: center;
  color: #666;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 16px;
}

.form-control {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-size: 16px;
  transition: 0.3s;
}

.form-control:focus {
  outline: none;
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

textarea.form-control {
  resize: none;
  min-height: 150px;
}

.btn-submit {
  width: 100%;
  background: #a79678;
  color: white;
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(79, 70, 229, 0.3);
}

.success-message {
  display: none;
  text-align: center;
  padding: 40px 0;
}

.success-message.active {
  display: block;
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: #d9f6e8;
  color: #22c55e;
  border-radius: 50%;
  font-size: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive */
/* =========================================
   RESPONSIVE DESIGN — TABLET (<= 992px)
========================================= */
@media (max-width: 992px) {

  .container {
    padding: 30px 20px;
  }

  .contact-info h1 {
    font-size: 42px;
  }

  .contact-info p {
    font-size: 16px;
  }

  .contact-image {
    max-width: 320px;
  }

  .form-container {
    padding: 40px;
  }

  .form-control {
    padding: 14px 18px;
    font-size: 15px;
  }

}

/* =========================================
   RESPONSIVE DESIGN — MOBILE (<= 768px)
========================================= */
@media (max-width: 768px) {

  body {
    padding-top: 70px;
    /* Adds space under nav button */
  }

  .container {
    padding: 60px 25px;
  }

  .contact-container {
    flex-direction: column;
    gap: 50px;
    text-align: center;
  }

  .contact-info h1 {
    font-size: 36px;
    line-height: 1.3;
    margin-top: 20px;
  }

  .contact-info p {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .contact-form {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  /* Keep the form container wide enough */
  .form-container {
    width: 100%;
    max-width: 500px;
    /* PERFECT width on mobile/tablet */
    margin: 0 auto;
    padding: 35px 25px;
  }

  .wrapper .icon span {
    height: 50px;
    width: 50px;
    font-size: 20px;
    line-height: 50px;
  }

  .wrapper {
    justify-content: center;
    /* center horizontally */
  }

  .btn-submit {
    padding: 16px;
    font-size: 17px;
  }
}


/* =========================================
   EXTRA SMALL SCREENS — SMALL PHONES (<= 480px)
========================================= */
@media (max-width: 480px) {

  body {
    padding-top: 80px;
    /* More breathing room from nav */
  }

  .container {
    padding-top: 60px;
  }

  .contact-info h1 {
    font-size: 36px;
    margin-bottom: 18px;
  }

  .contact-info p {
    font-size: 14px;
    margin-bottom: 22px;
  }

  .form-container {
    max-width: 420px;
    width: 100%;
    padding: 28px 20px;
  }

  /* Better input spacing */
  .form-control {
    font-size: 15px;
    padding: 14px 15px;
  }

  .wrapper .icon span {
    height: 44px;
    width: 44px;
    font-size: 18px;
    line-height: 44px;
  }

  .wrapper {
    justify-content: center;
    /* center horizontally */
  }

  .btn-submit {
    padding: 14px;
    font-size: 16px;
  }
}

/* FOOTER STYLES (Copied from Global CSS) */
:root {
  /* Color Palette */
  --color-bg: #f7f2ec;
  --color-dark: #1c1917;
  --color-muted: #57534e;
  --color-accent: #ea580c;
  --color-white: #ffffff;
  --color-border: #e7e5e4;

  /* Hover Gradients/Colors for Socials */
  --color-insta: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  --color-linkedin: #0077b5;
  --color-pinterest: #bd081c;
  --color-youtube: #ff0000;
  --color-facebook: #1877f2;
  --color-green: #22c55e;
}

#page4 {
  width: 100%;
}

/* --- Main Footer Container --- */
.site-footer {
  width: 100%;
  background-color: var(--color-bg);
  color: var(--color-dark);
  padding: 5rem 0 2.5rem 0;
  border-top-left-radius: 3rem;
  border-top-right-radius: 3rem;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
  margin-top: 40px;
  /* Added spacing from previous content */
  font-family: 'Inter', sans-serif;
}

.site-footer .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* --- Grid Layout --- */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
}

/* Responsive Columns */
.col-brand {
  grid-column: span 12;
}

.col-nav {
  grid-column: span 12;
}

.col-support {
  grid-column: span 12;
}

.col-contact {
  grid-column: span 12;
}

@media (min-width: 768px) {
  .col-brand {
    grid-column: span 12;
  }

  .col-nav {
    grid-column: span 4;
  }

  .col-support {
    grid-column: span 4;
  }

  .col-contact {
    grid-column: span 4;
  }
}

@media (min-width: 1024px) {
  .col-brand {
    grid-column: span 4;
  }

  .col-nav {
    grid-column: 6 / span 2;
  }

  .col-support {
    grid-column: span 2;
  }

  .col-contact {
    grid-column: span 3;
  }
}

/* --- Column 1: Brand --- */
.brand-logo-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  cursor: pointer;
}

.brand-logo-group:hover .footer-logo {
  transform: scale(1.1);
}

.footer-logo {
  width: auto;
  height: 40px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.brand-name {
  font-family: 'Rozha One', serif;
  font-size: 1.875rem;
  color: var(--color-dark);
  margin-top: 4px;
}

.brand-desc {
  color: var(--color-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 320px;
}

/* Social Icons */
.social-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.social-btn {
  width: 40px;
  height: 40px;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  font-size: 1.125rem;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.social-btn:hover {
  color: var(--color-white);
  transform: translateY(-4px);
  border-color: transparent;
}

.social-btn.instagram:hover {
  background: var(--color-insta);
}

.social-btn.linkedin:hover {
  background-color: var(--color-linkedin);
}

.social-btn.pinterest:hover {
  background-color: var(--color-pinterest);
}

.social-btn.youtube:hover {
  background-color: var(--color-youtube);
}

.social-btn.facebook:hover {
  background-color: var(--color-facebook);
}

/* --- Columns 2 & 3: Navigation --- */
.footer-heading {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--color-dark);
  letter-spacing: -0.025em;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: var(--color-muted);
  font-size: 0.875rem;
  font-weight: 500;
  position: relative;
  display: inline-block;
}

.footer-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--color-accent);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-accent);
}

.footer-links a:hover::after {
  width: 100%;
}

.contact-desc {
  color: var(--color-muted);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--color-dark);
  padding: 0.75rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}

.contact-btn:hover {
  background-color: #292524;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.contact-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  flex: 1;
}

.contact-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: background-color 0.3s ease;
}

.contact-btn:hover .mail-icon {
  background-color: var(--color-accent);
}

.contact-btn:hover .phone-icon {
  background-color: var(--color-green);
}

.contact-text {
  min-width: 0;
}

.contact-label {
  font-size: 0.625rem;
  font-weight: 700;
  color: #a8a29e;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-value {
  color: var(--color-white);
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.contact-arrow {
  color: #78716c;
  transform: rotate(-45deg);
  transition: all 0.3s ease;
  margin-left: 0.5rem;
  flex-shrink: 0;
}

.contact-btn:hover .contact-arrow {
  color: var(--color-white);
  transform: rotate(0deg);
}

/* Success Message Animations */
.success-message.active .success-icon {
  animation: scale-in-center 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.success-message.active .fade-in-text {
  animation: fade-in-bottom 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

.success-message.active .fade-in-text.delay {
  animation-delay: 0.2s;
}

@keyframes scale-in-center {
  0% {
    transform: scale(0);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes fade-in-bottom {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}