:root {
  --navy: #16324F;
  --gray-text: #6B7280;
  --peach-bg: #FCE9E4;
  --peach-text: #F0806B;
  --green-bg: #1E7F5C;
  --green-light: #4CAF7D;
  --yellow-bg: #FDF2D9;
  --yellow-text: #F4B400;
  --blue-bg: #E4F6FB;
  --blue-text: #2AAFDB;
  --orange-accent: #F0552E;
  --white: #ffffff;
}

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

.brand-font {
  font-family: 'Dancing Script', cursive;
  color: #194646;
}

.text-teal {
  color: #194646 !important;
}

.btn-teal {
  background-color: #194646 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 20px !important;
  padding: 8px 24px;
}

.btn-teal:hover,
.btn-teal:focus,
.btn-teal.active {
  background-color: #123333 !important;
  color: #ffffff !important;
  border: none !important;
}

.custom-navbar {
  width: 100%;
  padding: 15px 60px;
  background-color: white;
}

.custom-navbar .container-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo img, .logo svg {
  width: 50px;
  height: 50px;
}

.logo span {
  font-size: 33px;
  font-weight: 900;
  font-family: 'Dancing Script', cursive;
  background: linear-gradient(
      90deg,
      #27ae60 0%,
      #f39c12 50%,
      #e67e22 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.custom-navbar .nav-link {
  color: black;
  font-size: 18px;
  margin-left: 15px;
  font-weight: 500;
}

.custom-navbar .nav-link:hover,
.custom-navbar .navlink.active {
  color: #e74c3c;
}

.navbar-toggler {
  border: none;
  font-size: 25px;
  padding: 8px;
  color: #0d3b3e;
  background: transparent;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-nav .nav-link {
  position: relative;
  transition: color 0.3s ease;
  padding-bottom: 4px;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: var(--orange-accent, #F0552E);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--orange-accent, #F0552E) !important;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

.navbar-nav .nav-link.active {
  color: var(--orange-accent, #F0552E) !important;
}

.navbar-nav .nav-link.active::after {
  width: 100%;
}
.page-banner {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 350px;
}

.page-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
}

.banner-contact {
    padding-left: 60px;
    color: white;
}

.banner-contact h1 {
    font-size: 52px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    margin-bottom: 15px;
}

.breadcrumb {
    font-size: 16px;
}

.breadcrumb a {
    color: #e74c3c;
    text-decoration: none;
}

.breadcrumb span {
    color: white;
}

.get-in-touch {
    text-align: center;
    padding: 60px 20px;
}

.get-in-touch h2 {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 36px;
    color: #0d3b3e;
    margin-bottom: 20px;
}

.get-in-touch > p {
    max-width: 600px;
    margin: 0 auto 50px;
    color: #777;
    font-size: 16px;
    line-height: 1.6;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 100px;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #fdeeee;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 26px;
}

.info-item p {
    font-weight: 600;
    color: #333;
}

/****/
.contact-form-section {
    display: flex;
    min-height: 350px;
    margin: 40px 60px;
    border-radius: 12px;
    overflow: hidden;
}
.form-box {
    flex: 1;
    background-color: #fdf0eb;
    padding:40px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-box h2 {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 32px;
    color: #0d3b3e;
    text-align: center;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    flex: 1;
    font-family: inherit;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    background-color: #e67e22;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
}

.contact-form button:hover {
    background-color: #d35400;
}

.map-box {
    flex: 1;
    height:550px;
}

.footer {
    background-color: #0d3b3e;
    color: #cfd8d8;
    padding: 60px 60px 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-col {
    flex: 1 1 220px;
}

.footer-col h3 {
    color: white;
    font-size: 24px;
    margin-bottom: 20px;
}

.footer-col p {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    border: 1px solid #cfd8d8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cfd8d8;
    text-decoration: none;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cfd8d8;
    text-decoration: none;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    max-width: 320px;
}

.gallery-grid img {
    width: 100%;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;  
    font-size: 14px;
    word-break: break-word;
}

.footer-bottom a {
    color: #cfd8d8;
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: #e67e22;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    z-index: 999;
}


@media (max-width: 991px) {
    .custom-navbar {
        padding: 12px 20px;
    }

    .logo span {
        font-size: 24px;
    }

    .logo img {
        width: 45px;
        height: 45px;
    }

    .navbar-collapse {
        margin-top: 15px;
        background: white;
        padding: 15px;
        border-radius: 12px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .custom-navbar .nav-link {
        margin-left: 0;
        padding: 12px 10px;
        text-align: center;
    }

    .contact-form-section {
        margin: 30px 30px;
    }

    .form-box {
        padding: 40px 30px;
    }

    .contact-info {
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .get-in-touch {
        padding: 40px 20px;
    }

    .get-in-touch h2 {
        font-size: 28px;
    }

    .get-in-touch > p {
        font-size: 14px;
    }

    .contact-info {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .page-banner {
        height: 220px;
    }

    .banner-contact h1 {
        font-size: 32px;
    }

    .banner-contact {
        padding-left: 20px;
    }

    .contact-form-section {
        flex-direction: column;
        margin: 20px;
    }

    .form-box {
        padding: 30px 20px;
        height: auto;
    }

    .map-box {
        height: 280px;
    }

    .form-row {
        flex-direction: column;
    }

    .footer {
        padding: 40px 20px 20px;
    }

    .footer-container {
        flex-direction: column;
        gap: 30px;
    }

    .gallery-grid {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .banner-contact h1 {
        font-size: 26px;
    }

    .icon-circle {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }

    .form-box h2 {
        font-size: 26px;
    }

    .scroll-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
        font-size: 17px;
    }
}