body {
    font-family: "Plus Jakarta Sans", serif;
    font-optical-sizing: auto;
    font-style: normal;
    --navbar-height: 72px;
}

/* default colors */
:root {
    --primary-color: #DAA14C;  /* Gold */
    --text-dark: #30373E;       /* Dark Gray */
    --text-light: #535353;      /* Muted Gray */
    --background-light: #ffffff; /* White */
}


/* Applying root colors */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.small-heading {
    color: var(--primary-color) !important;
    font-size: 14px;
    letter-spacing: 4px;
    margin: 0;
}

.main-heading {
    color: var(--text-dark) !important;
    font-size: 48px;
}

.paragraph{
    color: var( --text-light) !important;
    font-size: 16px;
}


/*topbar Styles*/
.topbar ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin:0;
}

.topbar ul li.mid-text{
    color:var(--primary-color);
}

/*Nav section Styles*/
.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
}

.btn-custom, .btn-custom:visited, .btn-custom:focus {
    background-color: #d4a256;
    color: white !important;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    border: none;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
}
.btn-custom:hover, .btn-custom:active {
    background-color: #b98b4e;
    color: white !important;
    text-decoration: none;
}

.navbar-expand-lg .navbar-nav a.nav-link {
    font-size: 14px;
    font-weight: 600;
}

.navbar-expand-lg .navbar-nav a.nav-link:hover {
    color:var(--primary-color);
    font-weight: 600;
}


/* Hero Section Styles */
.hero-section {
    background-color: #f8f9fa;
    padding: 0;
}

.carousel-item {
    height: auto; /* Set a fixed height for the carousel */
}

.carousel-item img {
    object-fit: cover; /* Ensure images cover the carousel area */
    height: 100%;
    width: 100%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    border-radius: 50%;
    padding: 10px;
}

#hero-section .carousel-control-next-icon {
    background-image: url(../images/next-aerow.png) !important;
}

#hero-section .carousel-control-prev-icon {
    background-image: url(../images/prev-aerow.png) !important;
}

#hero-section .carousel-control-prev {
    left: auto;
    right: 200px;
    opacity:1;
}

#hero-section .carousel-control-next {
    left: auto;
    right: 100px;
    opacity:1;
}

#hero-section .carousel-control-next, .carousel-control-prev {
    width: 2%;
    top: auto;
    bottom: 80px;
}




/* About Section Styles */
section#about-section{
    position: relative;
}
.about-section {
    padding: 60px 0;
    position: relative;
}
.large-text {
    font-size: 380px;
    font-weight: bold;
    color: var(--primary-color);
    position: relative;
}
.para-width{
    max-width: 400px;
}
.experience-badge {
    background: white;
    color: var(--text-dark);
    padding: 10px 20px;
    font-size: 22px;
    box-shadow: 0 12px 16px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 50%;
    left: auto;
    transform: translate(-50%, -50%);
    font-weight: 500;
    right: 0;
    width: 175px;
}
.about-title {
    font-size: 80px;
    font-weight: bold;
    color: #F1E3D3;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.floating-heading {
    border: 1px solid;
    position: absolute;
    left: -330px;
    bottom: auto;
    font-size: 150px;
    font-weight: bold;
    color: transparent;
    -webkit-text-stroke: 1px rgb(218 161 76 / 50%);
    transform: rotate(-90deg);
    right: auto;
    font-family: inherit;
    top: 40%;
}

/*Gallery Section Styles*/
.heading-block h2{
    border-right: 1px solid #c7c7c7;
    width: 100%;
}
.heading-para {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 10%;
}
.heading-para p {
    margin: 20px 0 0 0;
}
.gallery-title {
    font-size: 2rem;
    font-weight: bold;
}
/* .gallery-grid {
    column-count: 3;
    column-gap: 20px;
    margin-top: 50px;
} */
/* .gallery-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 15px;
    position: relative;
} */
.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}
.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    color: var(--background-light);
    padding: 5px 10px;
    font-size: 20px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.gallery-item:hover .gallery-caption{
    opacity: 1;
}

.gallery-grid {
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    width: calc(33.33% - 20px); /* 3 columns */
    background: white;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease-in-out;
}

.gallery-item img:hover {
    transform: scale(1.05);
}


/*Meed section style*/
.meet-us-section {
    padding-bottom: 80px;
}

.meet-us-section h2 {
    font-size: 60px;
    font-weight: 300;
}

.meet-us-section p {
    max-width: 460px;
    width: 100%;
    margin: 20px auto;
    color: var(--bs-body-color);
}

.meet-us-section button.btn {
    font-size: 16px;
    background: var(--primary-color);
    border-radius: 0;
    text-transform: uppercase;
    font-weight: 500;
    color: #fff;
    padding: 16px 32px;
}

.meet-us-section button.btn:hover , .meet-us-section button.btn.active{
    background: #ffc107;
}

/*our project */
section.our-project-section {
    background: rgb(229 229 229 / 24%);
    padding: 40px 0 0;
}

#our-project-carousel {
    margin-top: -80px;
}
.our-project-section .carousel-container {
    padding: 0;
    position: relative;
}
.our-project-section .carousel-item {
    position: relative;
    overflow: hidden;
}
.our-project-section .carousel-item img {
    width: 100%;
    transition: transform 0.3s ease;
}
.our-project-section .carousel-item:hover img {
    transform: scale(1.05);
}
.our-project-section .carousel-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    font-size: 18px;
    font-weight: 400;
}
.our-project-section .carousel-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: white;
    padding: 20px 25px;
    font-size: 16px;
    cursor: pointer;
    border: 1px solid rgb(216 216 216 / 60%);
}
/* Custom Navigation */
.our-project-section .owl-prev, .our-project-section .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #D19A3D;
}
.our-project-section .owl-prev {
    left: -40px;
}
.our-project-section .owl-next {
    right: -40px;
}

#our-project-carousel .carousel-item {
    display: block;
    transition: .5s;
}

#our-project-carousel .owl-carousel .owl-item:hover {
    transform: scale(1.2);
    transition: .5s;
    z-index: 9;
    box-shadow: 0px 30px 60px rgb(39 39 39 / 38%);
    color:var(--primary-color);
}

#our-project-carousel .owl-carousel .owl-item:hover .carousel-text{
    color:var(--primary-color);
    font-weight: bold;
}

#our-project-carousel .owl-carousel .owl-item:hover .carousel-btn{
    background-color: var(--primary-color);
}

#our-project-carousel .owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    padding: 150px 0;
}

/*testimonial Styles*/
.testimonial {
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

section.testimonials-section {
    background: url(../images/testimonial-bg.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100%;
    padding: 90px 0 130px;
}

.testimonial-head h2.main-heading {
    color: #fff !important;
}

.testimonial-slider {
    background: rgb(0 0 0 / 50%);
    padding: 20px 20px;
    border-radius: 10px;
    border: 1px solid rgb(255 255 255 / 50%);
}

.testimonial-slider.owl-carousel .testimonial-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.rating {
    color: #f39c12;
}

.testi-user-main {
    display: flex;
    gap: 20px;
    text-align: left;
}

.testimonial-content p {
    text-align: left;
    font-size: 16px;
    margin-top: 25px;
}

.quote-icon {
    position: absolute;
    z-index: 9;
    margin: -50px 0 0 30px;
}

.testimonial-content {
    padding: 90px 0 0;
}

.testimonial-user-detail h3 {
    font-size: 20px;
    margin: 0;
    color: var(--primary-color);
}

.testimonial-user-detail p {
    margin: 0;
}


/* contact styles */
.contact-section {
    padding: 50px 0;
}
.contact-form input,
.contact-form textarea {
    background: #e0e0e0;
    border: none;
    padding: 15px;
    width: 100%;
    border-radius: 0;
    font-size: 14px;
}
.contact-form textarea {
    height: 150px;
}
.btn-custom {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 20px;
    display: inline-block;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 0;
}
.btn-custom:hover {
    background-color: var(--primary-color);
}

button.btn.btn-custom {
    font-size: 12px;
    background: var(--primary-color);
    border-radius: 0;
    text-transform: uppercase;
    font-weight: 500;
    color: #fff;
    padding: 10px 16px;
    gap: 15px;
    display: flex;
    letter-spacing: 1px;
    transition: .5s;
}

button.btn.btn-custom:hover , button.btn.btn-custom.active{
    background: #ffc107;
}

section.reach-us-section iframe {
    height: 100%;
    width:95%;
}

/*subscribe styels*/
.newsletter-section {
    text-align: center;
    padding: 50px 20px;
}
.newsletter-section h6 {
    color: #d4a158;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
}
.newsletter-section h2 {
    font-weight: bold;
    color: #222;
}
.newsletter-form {
    max-width: 500px;
    margin: auto;
}
.newsletter-form input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.btn-subscribe {
    color: var(--text-dark) !important;
    padding: 12px 20px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    border: 1px solid #ddd;
    font-size: 14px;
}

.btn-subscribe:hover {
    background-color: #fff;
    border: 1px solid #ddd;
}

.newsletter-section .form-check{
    display: flex;
    gap: 10px;
    text-align: center;
    align-items: center;
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
}

.newsletter-section .form-check-input[type=checkbox] {
    border-radius: .25em;
    width: auto;
    padding:9px;
}

.newsletter-section .form-check label.form-check-label {
    font-size: 14px;
}


/*footer section*/
.footer-section {
    padding: 50px 0;
    background: #f9f9f9;
}
.footer-section h5 {
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: bold;
    font-size: 12px;
    letter-spacing: 2px;
}
.footer-section ul {
    list-style: none;
    padding: 0;
}
.footer-section ul li {
    margin-bottom: 2px;
}
.footer-section ul li a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 12px;
    background: url(../images/footer-aerow.svg);
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 15px;
    text-decoration: none;
    transition: .5s;
}
.footer-section ul li a:hover {
    color: var(--primary-color);
    padding-left: 25px;
    transition: .5s;
}
.footer-bottom {
    background: #000;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}
.social-icons a {
    margin: 0 10px;
    color: var(--primary-color);
    text-decoration: none;
    transition: .5s;
}
.social-icons a:hover {
    color: #fff;
}
.footer-top {
    margin-bottom: 70px;
}

img.footer-logo {
    margin-bottom: 30px;
}

.footer-section p {
    font-size: 12px;
    max-width: 320px;
    width: 100%;
}

.footer-bottom ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-bottom ul p {
    margin: 0;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 1px;
}


/* Responsive */

@media (min-width: 991px) {
.navbar-expand-lg .navbar-nav {
    flex-direction: row;
    gap: 20px;
}
}

@media (max-width: 1366px) {
section.testimonials-section {
    background-size: cover;
}

.main-heading {
    font-size: 40px;
}

.testimonial-head h2.main-heading {
    font-size: 40px;
}

.meet-us-section {
    padding-bottom: 50px;
}

.large-text {
    font-size: 230px;
    position: relative;
}

.main-heading {
    font-size: 30px;
}

}

@media (max-width: 991px) {
.navbar-expand-lg .navbar-nav {
    flex-direction: column;
    gap: 2px;
}

.navbar-expand-lg .navbar-nav a.nav-link {
    font-size: 11px;
}

}

@media (max-width: 1024px) {
    .gallery-item {
        width: calc(50% - 10px); /* 2 columns */
    }
}

@media (max-width: 991px) { /* Apply only for mobile */
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        z-index: 1050;
    }

    .navbar-nav li.nav-item {
        padding: 0 13px;
    }

    .nav-btn-group {
        width: 100%;
        justify-content: space-between;
        margin-top: 10px;
    }

    #hero-section .carousel-control-prev {
        left: auto;
        right: 100px;
        opacity: 1;
    }

    #hero-section .carousel-control-next, .carousel-control-prev {
        width: 2%;
        top: auto;
        bottom: 10px;
    }

    #hero-section .carousel-control-next {
        left: auto;
        right: 50px;
        opacity: 1;
    }

    .banner {
        position: relative;
        z-index: 1; /* Keeps it behind the navbar */
    }

    section.testimonials-section {
        background-size: cover;
    }

    .testimonial-head {
        text-align: center;
    }

    .testimonial-head h2.main-heading {
        margin-bottom: 80px;
        font-size: 30px;
    }

    #our-project-carousel .owl-carousel .owl-stage-outer {
        padding: 150px 0 50px;
    }

    .contact-section {
        padding: 0 20px;
    }

    section.reach-us-section iframe {
        height: 100%;
        width: 100%;
        margin-bottom: 100px;
        padding-bottom: 40px;
    }

    .main-heading {
        font-size: 30px;
    }
    
    .footer-bottom ul {
        flex-direction: column;
        gap: 18px;
    }

    .large-text {
        text-align: center;
    }

    .floating-heading {
        left: -206px;
        bottom: auto;
        font-size: 95px;
        right: auto;
        top: 30%;
    }

    .about-section {
        text-align: center;
    }

    .para-width {
        width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
.large-text {
    font-size: 280px;
    line-height: normal;
    text-align: center;
}

.heading-block {
    text-align: center;
}

.heading-para {
    padding: 0;
}

.heading-block h2 {
    font-size: 40px;
    border:none;
}

.heading-para p {
    margin: 0;
    text-align: center;
}

.main-heading {
    font-size: 40px;
}

.testimonial-head h2.main-heading {
    font-size: 40px;
}

}

@media (max-width: 600px) {
    .gallery-item {
        width: 100%; /* 1 column */
    }
}

/* Submenu background starts from navbar container, not screen edge */
.navbar .container-fluid { position: relative; }
.navbar .dropdown-menu {
  display: none !important;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  background-color: #DAA14C;
  border: none;
  border-radius: 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 0.5rem 0;
  z-index: 1050;
}

.navbar .dropdown-menu.show {
  display: flex !important;
}

.navbar .dropdown-menu .dropdown-item {
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  background: none;
  border-radius: 0.25rem;
  margin: 0 1.5rem 0 0;
  transition: background 0.2s, color 0.2s;
  padding: 0.5rem 1rem;
  text-align: left;
}

.navbar .dropdown-menu .dropdown-item:last-child {
  margin-right: 0;
}

.navbar .dropdown-menu .dropdown-item:hover,
.navbar .dropdown-menu .dropdown-item:focus {
  background-color: #fff;
  color: #DAA14C;
}

@media (max-width: 991.98px) {
  .navbar .dropdown-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    border-radius: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }
  .navbar .dropdown-menu.show {
    display: flex !important;
  }
  .navbar .dropdown-menu .dropdown-item {
    margin: 0 0 0.5rem 0;
    text-align: left;
  }
}

/* Step 2: Fixed, full-width submenu bars below navbar */
.submenu-horizontal-bar {
  display: none;
  position: fixed;
  left: 0;
  top: 120px;
  background: var(--primary-color);
  z-index: 2000;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  padding: 1.1rem 0; /* Increased height */
  border-radius: 0;
  width: 100%!important;
  left: 0 !important;
}
.submenu-horizontal-bar > .container {
  max-width: 1140px; /* Match Bootstrap container max-width */
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}
.submenu-horizontal-bar .submenu-inner {
  display: flex;
  margin-left: 0;
  width: 100%;
  justify-content: flex-start;
}
@media (max-width: 991.98px) {
  .submenu-horizontal-bar {
    left: 0 !important;
    width: 100vw !important;
    min-width: 0 !important;
    top: 56px;
    flex-direction: column;
    padding: 1rem 0.5rem;
  }
  .submenu-horizontal-bar > .container {
    max-width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
  .submenu-horizontal-bar .submenu-inner {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
}

/* Make submenu links look like main menu items, not buttons */
.submenu-horizontal-bar .dropdown-item {
  background: none;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 0;
  margin-right: 2.5rem;
  padding: 0.25rem 0;
  border: none;
  box-shadow: none;
  text-align: left;
  display: inline-block;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.submenu-horizontal-bar .dropdown-item:last-child {
  margin-right: 0;
}
.submenu-horizontal-bar .dropdown-item:hover,
.submenu-horizontal-bar .dropdown-item:focus {
  color: #30373E;
  background: none;
  text-decoration: underline;
}

/* Show About submenu bar on hover */
.submenu-parent:nth-child(2):hover ~ #submenu-bar-about,
.submenu-parent:nth-child(2):focus-within ~ #submenu-bar-about {
  display: block;
}
/* Show Cellars submenu bar on hover */
.submenu-parent:nth-child(4):hover ~ #submenu-bar-cellars,
.submenu-parent:nth-child(4):focus-within ~ #submenu-bar-cellars {
  display: block;
}

/* Remove gallery-caption hover effect for professionals page */
body:not(.gallery-page) .gallery-caption {
    display: none !important;
}

/* Image Modal Styles */
#imageModal .modal-backdrop {
    background-color: rgba(0, 0, 0, 0.9) !important;
    border: none !important;
}

#imageModal .modal-content {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

#imageModal .modal-dialog {
    max-width: 95vw !important;
    border: none !important;
}

#imageModal .btn-close {
    font-size: 1.5rem;
    opacity: 0.8;
    z-index: 1050;
}

#imageModal img {
    transition: transform 0.3s ease;
    cursor: zoom-in;
    max-height: 90vh;
    object-fit: contain;
    border: none !important;
    box-shadow: none !important;
}

#imageModal img:hover {
    transform: scale(1.02);
}

/* Gallery link cursor */
.gallery-link {
    cursor: zoom-in;
    text-decoration: none;
}

.gallery-link:hover {
    text-decoration: none;
}

/* Office Details Styles for Contact Us Section */
.office-details h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.office-info .info-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.office-info .info-item:last-child {
    border-bottom: none;
}

.office-info .info-item i {
    font-size: 1.25rem;
    min-width: 24px;
}

.office-info .info-item strong {
    color: var(--text-dark);
    font-weight: 600;
}

.office-info .info-item span {
    line-height: 1.6;
}

.office-actions .btn {
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.office-actions .btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background-color: transparent;
}

.office-actions .btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.office-map iframe {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Ensure correct layout for gallery-item */
.gallery-item {
    position: relative;
}

.professionals-hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    /* Subtle difference: add a soft gold overlay for professionals */
    position: relative;
}
.professionals-hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(120deg, rgba(218,161,76,0.07) 0%, rgba(255,255,255,0.0) 100%);
    z-index: 1;
    pointer-events: none;
}
.professionals-hero-section .container {
    position: relative;
    z-index: 2;
}
.professionals-hero-section .main-heading {
    font-size: 2.5rem;
    color: var(--text-dark);
}
.professionals-hero-section .paragraph {
    font-size: 1.1rem;
    color: var(--text-light);
}
.professionals-hero-section img {
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(218,161,76,0.10);
}

/* More space for main sections on Professionals page */
.gallery-section, .meet-us-section, .testimonials-section, .reach-us-section {
    margin-bottom: 60px;
}

/* Ready to Visit Us Section */
.ready-to-visit-section {
    background: rgba(218, 161, 76, 0.05);
    padding: 60px 0;
}

.visit-actions {
    margin-top: 2rem;
}

.visit-actions .btn {
    padding: 12px 24px;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.visit-actions .btn-custom {
    background-color: var(--primary-color);
    color: white;
    border: none;
}

.visit-actions .btn-custom:hover {
    background-color: #b8913f;
    transform: translateY(-2px);
}

.visit-actions .btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background-color: transparent;
    border-width: 2px;
}

.visit-actions .btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    /* box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4); */
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
    padding: 0;
}

.whatsapp-img {
    width: 60px;
    height: 60px;
}

.whatsapp-float:hover {
    background-color: transparent;
    transform: scale(1.1);
    /* box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5); */
    text-decoration: none;
}

.whatsapp-float:hover .whatsapp-img {
    transform: scale(1.1);
}

.whatsapp-float:active {
    transform: scale(0.95);
}

.whatsapp-float:active .whatsapp-img {
    transform: scale(0.95);
}

/* Add a bit more gap between gallery items */
.gallery-grid {
    gap: 32px;
    margin-top: 60px;
}

/* Add more padding to testimonial slider for a premium look */
.testimonial-slider {
    padding: 40px 30px;
}

/* Footer Info Section */
.footer-info-section {
    background-color: #000 !important;
    position: relative;
    overflow: hidden;
}

.footer-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(218, 161, 76, 0.1) 0%, rgba(218, 161, 76, 0.05) 100%);
    pointer-events: none;
}

.footer-column {
    position: relative;
    z-index: 1;
}

.footer-title {
    font-family: "Plus Jakarta Sans", serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.footer-links {
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 1rem;
    font-family: var(--bs-body-font-family);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
    background: #000;
    display: inline-block;
    line-height: 1.5;
}

.footer-links li a::before {
    content: '›';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.footer-links li:hover a {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-links li:hover a::before {
    color: #fff;
}

.footer-images {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.footer-logo {
    max-height: 60px;
    width: auto;
    transition: all 0.3s ease;
    filter: brightness(0.9);
}

.footer-logo:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
}

.footer-divider {
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.2), transparent);
    border-radius: 1px;
}

/* Service Cards Section */
.service-cards-section {
    background: rgba(218, 161, 76, 0.05);
}

.service-link-card {
    display: block;
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-link-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(218, 161, 76, 0.15);
    color: inherit;
    text-decoration: none;
}

.service-link-card .card-icon {
    transition: all 0.3s ease;
}

.service-link-card:hover .card-icon {
    transform: scale(1.1);
    color: var(--primary-color);
}

.service-link-card h4 {
    transition: all 0.3s ease;
}

.service-link-card:hover h4 {
    color: var(--primary-color);
}

.service-link-card p {
    transition: all 0.3s ease;
}

.service-link-card:hover p {
    color: var(--text-dark);
}

.service-link-card .btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-link-card:hover .btn {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.service-link-card .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1));
    transition: all 0.3s ease;
}

.service-link-card:hover .btn::before {
    left: 100%;
}

/* Contact Section for All Pages */
.contact-section {
    background: rgba(218, 161, 76, 0.05);
    position: relative;
}

.contact-details {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.contact-details h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.contact-info {
    margin-bottom: 1rem;
}

.contact-map {
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-actions .btn {
    padding: 12px 24px;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.contact-actions .btn-custom {
    background-color: var(--primary-color);
    color: white;
    border: none;
}

.contact-actions .btn-custom:hover {
    background-color: #b8913f;
    transform: translateY(-2px);
}

.contact-actions .btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background-color: transparent;
    border-width: 2px;
}

.contact-actions .btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 991px) {
    .footer-info-section {
        padding: 3rem 0 !important;
    }
    
    .footer-column {
        margin-bottom: 2rem;
    }
    
    .footer-title {
        font-size: 1.3rem;
    }
    
    .footer-logo {
        max-height: 50px;
    }
}

@media (max-width: 767px) {
    .footer-info-section {
        padding: 2rem 0 !important;
    }
    
    .footer-column {
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .footer-title {
        font-size: 1.2rem;
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links li a {
        font-size: 0.95rem;
    }
    
    .footer-images {
        align-items: center;
    }
    
    .footer-logo {
        max-height: 45px;
    }
}
