
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
  font-family: sans-serif;
  background: #fff;
}



/* === HEADER === */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 25px;
  border-bottom: 1px solid #eee;
  background: white;
  position: relative;
  z-index: 10;
}
.header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo {
  height: 50px;
}
.logo-text p {
  font-size: 16px;
  font-weight: bold;
  padding-left: 60px;
}
.logo-text small {
  font-size: 12px;
  color: gray;
  font-weight: bold;
}
.header-nav {
  display: flex;
  gap: 30px;
  height: 5px;
  margin-bottom: 14px;
  margin-top: 11px;
}
.header-nav a {
  font-size: 13px;
  text-transform: uppercase;
  text-decoration: none;
  color: black;
  font-weight: 500;
}
.share-btn {
  padding: 8px 20px;
  font-size: 12px;
  background: #eee;
  border: none;
  text-transform: uppercase;
  margin-right: 60px;
}
.share-btn:hover {
  background-color: #000;
  color: #fff;
  cursor: pointer;
}
.page-content {
  max-width: 1370px;
  height: 77vh;
  width: 100%;
  margin: 0 auto;
  padding: 40px;
  border-left: 1px solid #ddd;
  background-color: #fff;
  box-sizing: border-box;
  overflow-y: auto;
}

.static-content {
  color: #222;
  font-size: 16px;
}


.logo-text {
  display: flex;
  align-items: center;
  padding-left: 60px; 
}

.logo-img {
  height: 34px;         
  max-width: 100%;
  object-fit: contain;
}


@media (max-width: 768px) {
  .logo-img {
    height: 33px;
    
  }
  .logo-text {
    padding-left: 10px;
  }
}


/* === LEFT HOME BAR === */
.vertical-tab {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 99;
}
.vertical-tab span {
  display: inline-block;
  transform: rotate(-90deg);
  background-color: #333;
  color: white;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 2px;
  padding: 33px 14px;
}

.page-content {
  position: relative;
}
.vertical-tab-commercial {
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
}
.vertical-tab-commercial span {
  display: inline-block;
  transform: rotate(-90deg);
  background-color: #333;
  color: white;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 2px;
  padding: 34px 16px;
}

.main-content {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
}

/* === SLIDER === */
.hero-slider {
  position: relative;
  width: 100%;
  max-width: 1370px;
  height: 77vh;
  border: none;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
}
.slide {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.slide .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.slide-text {
  position: absolute;
  bottom: 20%;
  left: 10%;
  color: white;
  text-align: left;
  z-index: 2;
}
.slide-text .subtitle {
  font-style: italic;
  font-size: 13px;
}


.slide-text h2 {
  font-size: 40px;
  letter-spacing: 6px;
}
.view-btn {
  color: white;
  font-size: 13px;
  border-top: 1px solid white;
  padding-top: 10px;
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
}

/* === ARROWS === */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.3);
  color: white;
  font-size: 30px;
  border: none;
  padding: 10px 14px;
  cursor: pointer;
  z-index: 10;
  border-radius: 4px;
}
.arrow.left {
  left: 20px;
}
.arrow.right {
  right: 20px;
}


.dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.dot {
  width: 10px;
  height: 10px;
  background: white;
  opacity: 0.4;
  border-radius: 50%;
  cursor: pointer;
}
.dot.active {
  opacity: 1;
}

/* === FOOTER === */
.footer {
  padding: 15px 40px;
  background: #fff;
  border-top: 1px solid #ddd;
  font-size: 13px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}
.footer-info {
  flex: 1;
  min-width: 200px;
  text-align: left;
  margin-top: 15px;
  padding-left: 40px;
}
.footer-info p {
  margin: 5px 0;
  color: #444;
}
.footer-icons {
  min-width: 150px;
  text-align: right;
  margin-top: 15px;
  padding-right: 40px;
}
.footer-icons a {
  margin: 0 6px;
  text-decoration: none;
  color: #333;
  font-size: 16px;
  transition: color 0.2s ease;
}
.footer-icons a:hover {
  color: #000;
}

/* === COMMERCIAL PAGE === */
.page-content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  overflow: hidden;
  padding: 0;
}
.commercial-wrapper {
  display: flex;
  width: 100vw;
  height: calc(100vh - 100px);
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.commercial-info {
  flex: 0 0 28%;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.commercial-info h2 {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.commercial-info .divider {
  width: 0;
  height: 0;
}
.commercial-info p {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}
.commercial-gallery {
  flex: 0 0 72%;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.gallery-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease;
  gap: 3px;
  padding-right: 20px;
}
.gallery-slide {
  flex: 0 0 88%;
  height: 100%;
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0;
  margin: 0;
}
.gallery-slide::after {
  content: "INFO";
  position: absolute;
  bottom: 80px;
  left: 40px;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  padding: 8px 12px;
  border-radius: 3px;
  z-index: 2;
  cursor: pointer;
}
.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  padding: 0;
}
.zoom-icon {
  position: absolute;
  top: 40px;
  right: 20px;
  background: rgba(0, 0, 0, 0.6);
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
}
.zoom-icon i {
  color: white;
  font-size: 16px;
}
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: white;
  background: rgba(0, 0, 0, 0.4);
  border: none;
  padding: 12px 18px;
  cursor: pointer;
  z-index: 10;
}
.gallery-arrow.left {
  left: 10px;
}
.gallery-arrow.right {
  right: 10px;
}
.fullscreen-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.fullscreen-overlay.active {
  display: flex;
}
.fullscreen-overlay img {
  max-width: 90vw;
  max-height: 90vh;
}
.fullscreen-overlay .close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  color: white;
  cursor: pointer;
}
.gallery-slide {
  position: relative;
}
.info-box {
  position: absolute;
  bottom: 120px;
  left: 40px;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 14px;
  max-width: 260px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(10px);
  z-index: 1;
}
.gallery-slide:hover .info-box {
  opacity: 1;
  transform: translateY(0);
}


@media (max-width: 768px) {
  .gallery-slide {
    flex: 0 0 100vw;
    width: 100vw;
    height: 100%;
  }
  .gallery-track {
    padding-right: 0;
    gap: 0;
    transition: transform 0.5s ease !important;
  }
}

@media (max-width: 768px) {
  .main-header .share-btn,
  .main-header .hamburger {
    position: absolute;
    top: 25px;
  }

  .main-header .share-btn {
    right: 45px;
  }

  .main-header .hamburger {
    right: 10px;
  }
}

 @media (max-width: 768px) {
  .nav-wrapper {
    width: 100%;
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 0;
  }

  .nav-wrapper.active {
    display: flex;
    padding:  0;
  }

  .header-nav {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0;
    margin: 0;
  }
.header-nav a {
  display: block;
  width: 100%;
  padding: 0;          
  font-size: 16px;
  text-decoration: none;
  color: black;
  margin: 0;
  border: none;                
  border-bottom: none;         
  line-height: 1.1;
  box-sizing: border-box;
  background-color: white;     
}


  .header-nav a:last-child {
    border-bottom: none;
  }

  /* ===== SLIDER FIXES ===== */
  .hero-slider {
    height: 100vh;
    width: 100%;
    border: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .slide {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
  }


  .divider {
    width: 40px;
    height: 2px;
    background: #fff;
    margin: 5px auto;
  }

  @media (max-width: 768px) {
  .slide-text {
    bottom: 50%; 
    left: 6%;
    right: 6%;
    text-align: center;
  }

  .slide-text h2 {
    font-size: 28px;
    letter-spacing: 2px;
  }

  .slide-text .subtitle {
    font-size: 12px;
  }

  .view-btn {
    font-size: 12px;
    padding-top: 8px;
  }
}


  .share-btn {
    position: absolute;
    right: 50px; 
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    padding: 10px 14px;
  }

 
  .logo-text p {
    padding-left: 0;
  }


@media (max-width: 768px) {
  .main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 16px;
    position: relative;
  }

  .header-left {
    flex: 1;
  }

  .share-btn {
    font-size: 12px;
    padding: 6px 14px;
    margin-right: 12px;
    background-color: #eee;
    border: none;
    height: auto;
    align-self: center;
    margin-top: 6px;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
   
    cursor: pointer;
    align-self: center;
    margin-top: 6px;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 10px;
    width: 25px;
    height: 20px;
  justify-content: space-between;
 
  }

  .hamburger span {
    width: 22px;
    height: 2px;
    background: white;
  }

  .logo-text p {
    padding-left: 0;
  }
}


@media (max-width: 768px) {
  .share-btn,
  .hamburger {
    position: relative;
    top: 0; 
  }
}

  /* Arrows */
  .arrow {
    font-size: 22px;
    padding: 8px 10px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    z-index: 10;
  }

  .arrow.left {
    left: 10px;
  }

  .arrow.right {
    right: 10px;
  }

  .dots {
    bottom: 10px;
    gap: 8px;
  }

  .dot {
    width: 8px;
    height: 8px;
  }

  .vertical-tab {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-wrapper.active {
    background-color: white; 
  }
}


@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .footer-info,
  .footer-icons {
    padding: 0;
    margin-top: 10px;
    text-align: center;
  }
}

  @media (max-width: 768px) {
  .main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid #ddd;
  }
   .footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
    border-top: 1px solid #ddd;
  }
  
  .page-content {
    padding-top: 80px;
    padding-bottom: 80px;
    overflow-y: auto;
    height: auto;
    box-sizing: border-box;
  }

  
@media (max-width: 768px) {
  .commercial-wrapper {
    flex-direction: column;
    height: auto;
  }

  .commercial-info {
    width: 100%;
    text-align: center;
    padding: 20px;
  }

  .commercial-gallery {
    width: 100vw;
    height: 400px;
    overflow: hidden;
    position: relative;
  }

  .gallery-track {
    display: flex;
    
    width: max-content;
    padding: 0;
    gap: 0;
  }

  .gallery-slide {
    flex: 0 0 100vw;
    width: 100vw;
    height: 100%;
    position: relative;
  }

  .gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .gallery-arrow {
    font-size: 20px;
    padding: 10px;
  }
}

  
  .info-box {
    display: block;
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
    max-width: 260px;
    z-index: 2;
  }

  @media (max-width: 768px) {
  .arrow {
    font-size: 22px;
    padding: 8px 10px;
  }

  .arrow.left {
    left: 10px;
  }

  .arrow.right {
    right: 10px;
  }
}
}

/* Hamburger*/
.hamburger {
  width: 25px;
  height: 20px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  margin-left: 15px;
}

.hamburger span {
  height: 3px;
  width: 100%;
  background: #000;
  display: block;
  border-radius: 2px;
}


@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-wrapper {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background: #fff;
  }

  .nav-wrapper.active {
    display: flex;
  }

  .header-nav {
    flex-direction: column;
    gap: 10px;
  }
}


@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-wrapper {
    display: none;
    flex-direction: column;
    position: fixed; 
    top: 60px; 
    left: 0;
    width: 100%;
    height: calc(100vh - 60px); 
    background: white;
    z-index: 999;
    overflow-y: auto;
    padding: 0;
    margin: 0;
  }

  .nav-wrapper.active {
    display: flex;
  }

  .header-nav {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: white;
    padding: 0;
    margin: 0;
  }

  .header-nav a {
    padding: 16px 20px;
    font-size: 16px;
    color: #000;
    text-decoration: none;
    display: block;
    width: 100%;
    margin: 0;
    background-color: white;
    border-bottom: 1px solid #ddd;
    text-align: left;
    box-sizing: border-box;
  }

  .header-nav a:last-child {
    border-bottom: none;
  }
}


/* === WEDDING PAGE === */
.wedding-wrapper {
  display: flex;
  width: 100vw;
  height: calc(100vh - 100px);
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.wedding-info {
  flex: 0 0 28%;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.wedding-info h2 {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.wedding-info .divider {
  width: 0;
  height: 0;
}
.wedding-info p {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}
.wedding-gallery {
  flex: 0 0 72%;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}


.vertical-tab-wedding {
  position: absolute;
  left: -70px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
}

.vertical-tab-wedding span {
  display: inline-block;
  transform: rotate(-90deg);
  background-color: #333;
  color: white;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 2px;
  padding: 34px 14px;
}


@media (max-width: 1024px) {
  .wedding-wrapper {
    flex-direction: column;
    height: auto;
  }

  .wedding-info {
    flex: none;
    width: 100%;
    padding: 30px 20px;
    text-align: center;
    order: 1;
  }

  .wedding-gallery {
    flex: none;
    width: 100%;
    height: auto;
    order: 2;
    margin-top: 20px;
  }

  .gallery-track {
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 10px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .gallery-slide {
    flex: 0 0 90%;
    scroll-snap-align: center;
    height: auto;
    min-height: 300px;
  }

  .gallery-slide img {
    height: 300px;
    object-fit: cover;
  }

  .zoom-icon {
    top: 10px;
    right: 10px;
    padding: 8px;
  }

  .gallery-arrow {
    display: none;
  }

  .info-box {
    font-size: 13px;
    bottom: 100px;
    max-width: 90%;
  }
}

@media (max-width: 600px) {
  .wedding-info h2 {
    font-size: 22px;
  }

  .wedding-info p {
    font-size: 14px;
  }

  .info-box {
    font-size: 12px;
    padding: 10px 14px;
  }

  .gallery-slide::after {
    font-size: 12px;
    bottom: 60px;
    left: 10px;
  }

  .fullscreen-overlay img {
    max-width: 95vw;
    max-height: 85vh;
  }

  .fullscreen-overlay .close-btn {
    top: 10px;
    right: 15px;
    font-size: 26px;
  }
 
}

@media (max-width: 768px) {
  .gallery-slide:last-child {
    display: none;
  }
}


@media (max-width: 768px) {
  .nav-wrapper {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    z-index: 999;
    
  }

  .nav-wrapper.active {
    display: flex;
  }

  .header-nav {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
  }
.header-nav a {
  padding: 14px 20px;
  color: black;
  background-color: white;
  font-size: 16px;
  text-decoration: none;
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  line-height: 1.1;
  border: none;                  
}

  .header-nav a:not(:last-child) {
  border-bottom: 1px solid #ddd;  
}
}

/* === ABOUT PAGE === */
.about-wrapper {
  display: flex;
  width: 100vw;
  height: calc(100vh - 100px);
  overflow: hidden;
  margin: 0;
  padding: 0;
  background: #fff;
}

.about-info {
  flex: 0 0 50%;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #fff;
}

.about-info h2 {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.about-info .divider {
  width: 0;
  height: 0;
}

.about-info p {
  font-size: 15px;
  color: #333;
  line-height: 1.8;
}

.about-image {
  flex: 0 0 50%;
  height: 100%;
  overflow: hidden;
}

.vertical-tab-about {
  position: absolute;
  left: -22px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
}

.vertical-tab-about span {
  display: inline-block;
  transform: rotate(-90deg);
  background-color: #333;
  color: white;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 2px;
  padding: 33px 13px;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


@media (max-width: 768px) {
  .about-wrapper {
    flex-direction: column;
    height: auto;
  }

  .about-info,
  .about-image {
    flex: 0 0 auto;
    width: 100%;
    height: auto;
  }

  .about-info {
    padding: 20px;
  }

  .about-info h2 {
    font-size: 24px;
    text-align: center;
  }

  .about-info p {
    font-size: 14px;
  }
}

/* === CONTACT PAGE === */
.contact-wrapper {
  display: flex;
  width: 100vw;
  height: calc(100vh - 100px);
  overflow: hidden;
  margin: 0;
  padding: 0;
  background: #fff;
  align-items: stretch; 
}

.contact-image {
  flex: 0 0 50%;
  height: 100%;
  overflow: hidden;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-form-section {
  flex: 0 0 50%;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #fff;
}

.contact-form-section h2 {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-align: center;
}

.contact-form-section .divider {
  height: 0;
  margin-bottom: 20px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px 15px;
  font-size: 15px;
  border: 1px solid #ccc;
  outline: none;
  resize: none;
}

.contact-form button {
  padding: 10px;
  background-color: #333;
  color: white;
  border: none;
  font-weight: bold;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #000;
}

.contact-bottom {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 40px;
}
.contact-map {
  flex: 0 0 50%;
  height: 400px;
  padding-right: 15px;
  box-sizing: border-box;
  padding-left: 75px;
  margin-bottom: 70px;
  padding-bottom: 20px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus {
  background-color: #fff !important;
  -webkit-box-shadow: 0 0 0px 1000px white inset !important;
  transition: background-color 5000s ease-in-out 0s;
  color: #000 !important;
}


.contact-cards {
  flex: 0 0 50%;
  padding-left: 30px;
  padding-right: 74px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: -80px;
  width: 300px;
}


.contact-cards .card {
  background: #f5f5f5;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  height: 130px;
}


.contact-cards .row-2 {
  display: flex;
  gap: 20px;
  width: 100%;
  justify-content: center;
  margin-top: 20px;
}

.contact-cards .row-2 .card {
  flex: 1;
}

/* VERTICAL TAB */
.vertical-tab-contact {
  position: absolute;
  left: -37px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
}

.vertical-tab-contact span {
  display: inline-block;
  transform: rotate(-90deg);
  background-color: #333;
  color: white;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 2px;
  padding: 30px 13px;
}

@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
    height: auto;
    margin-top: 0;
    padding-top: 0;
  }

  .contact-image,
  .contact-form-section {
    width: 100%;
    height: auto;
  }

  .contact-image img {
    margin-top: 0;
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
  }


  .contact-form-section {
    padding: 20px;
    margin-bottom: 10px;
  }

  .contact-form-section h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form button {
    width: 100%;
    font-size: 14px;
    padding: 10px;
    box-sizing: border-box;
  }

  .contact-form button {
    margin-top: 10px;
    
  }

 
  .contact-bottom {
    flex-direction: column;
    margin-top: 10px;
    padding: 0 20px;
  }

  .contact-map {
    width: 100%;
    height: 300px;
    padding: 0;
    margin-top: 10px;
    margin-bottom: 70px;
  }

 
  .contact-cards {
    width: 100%;
    padding: 0;
    margin-top: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 80px;
  }

  .contact-cards .card {
    width: 100%;
    max-width: 100%;
    margin-bottom: 12px;
    text-align: center;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }


  .contact-cards .row-2 {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .contact-cards .row-2 .card {
    flex: 1;
  }

  .contact-page .social-icons {
    justify-content: center;
    margin-top: 10px;
    gap: 16px;
  }

  .contact-page .social-icons a {
    font-size: 18px;
  }
}


.scrollable-main {
  position: fixed;
  top: 100px;
  bottom: 60px;
  left: 0;
  right: 0;
  overflow-y: auto;
  overflow-x: hidden;
}

.main-inner-container {
  padding: 0 60px;
  box-sizing: border-box;
  height: 100%;
}

.contact-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.contact-page header,
.contact-page footer {
  position: fixed;
  width: 100%;
}

.contact-page main {
  margin-top: 0;
  margin-bottom: 0;
}


@media screen and (max-width: 767px) {
  body.contact-page .main-header {
    position: fixed;
    height: auto;
    padding: 16px 16px;
  }

  body.contact-page .footer {
    position: fixed;
    height: auto;
    padding: 15px 20px;
    font-size: 14px;
  }

  body.contact-page main.scrollable-contact-content {
    margin-top: 0;
    margin-bottom: 0;
    max-height: none;
    overflow: visible;
  }

  body.contact-page .contact-wrapper {
    flex-direction: column;
    height: auto;
    padding: 0;
  }

  .contact-map {
  flex: 0 0 50%;
  height: 400px;
  padding-right: 15px;
  box-sizing: border-box;
  padding-left: 75px;
  margin-bottom: 70px;
  padding-bottom: 20px;
}

  .contact-image,
  .contact-form-section {
    width: 100%;
    margin-bottom: 0;
    
  }

  .contact-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    padding-top:0;
    margin-top:0;
  }

  .contact-form-section {
    padding: 20px;
   
     margin-bottom: 0 !important;
  }

  .contact-bottom {
    flex-direction: column;
    padding-bottom:  40px;
  }

  .contact-map {
    padding: 0;
    margin: 0;
    
  }
 
  .contact-cards {
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    margin-bottom: 80px;
    align-items: center;
    padding-top: 5px;
    margin-top: -60px;
  }

  .contact-cards .card {
    width: 100%;
    margin-bottom: 12px;
    text-align: center;
    padding: 20px;
  }

  .contact-cards .row-2 {
    flex-direction: column;
    gap: 12px;
  }
}


@media screen and (min-width: 768px) {
  body.contact-page .footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: #fff;
    padding: 15px 40px;
    font-size: 14px;
    z-index: 1000;
    width: 100%;
  }

  body.contact-page main {
    margin-bottom: 10px; 
  }

  .contact-wrapper {
    height: calc(100vh - 160px); 
    overflow: hidden;
  }

  .contact-image {
    height: 100%;
    margin-top: 0;
    padding-top: 0;
  }

  .contact-image img {
    height: 100%;
    object-fit: cover;
    padding-bottom: -50px;  
  }

  .contact-form-section {
    height: 100%;
    overflow-y: auto;
    margin-top: 50px;
  } 
}

.contact-map {
  width: 100%;
  padding-left: -60px;
  margin: 0;
  margin-bottom: 70px;
}

.contact-map iframe {
  width: 100%;
  height: 400px; 
  border: 0;
  display: block;
  padding-bottom: 10px;
  
}

@media (max-width: 768px) {
  .scrollable-contact-content .page-content {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  .contact-wrapper {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  .contact-form-section {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  .contact-form {
    margin-bottom: 0 !important;
  }

  .contact-form button {
    margin-bottom: 0 !important;
  }

  .contact-bottom {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  .contact-map {
    margin-top: 20px !important;
    padding-top: 0 !important;
  }

  
  main.scrollable-contact-content {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }
}

@media (max-width: 768px) {
  .contact-page .contact-wrapper {
    margin-top: -80px !important; 
  }

  .contact-page .contact-image img {
    display: block;
    width: 100%;
    height: 50vh;
    object-fit: cover;
    
  }
  .contact-page .contact-form-section {
    padding-top: 100px !important;
  }
}

@media (max-width: 768px) {
  .contact-page .contact-image {
    margin-bottom: -5px; 
  }

  .contact-page .contact-form-section {
    padding-top: 20px !important; 
    margin-top: 0 !important;
  }
}
