/********** Template CSS **********/

/*** Custom Color Variables ***/
:root {
    --bs-primary: #B07C2B;
    --bs-primary-rgb: 176, 124, 43;
    --bs-secondary: #B07C2B;
    --bs-secondary-rgb: 176, 124, 43;
    --bs-dark: #1A1A1A;
    --bs-dark-card: #2F2F2F;
    --bs-light: #F8F8F8;
    --bs-body-color: #2F2F2F;
    --bs-muted: #6E6E6E;
    --bs-text-light: #C9C9C9;
    --gold: #B07C2B;
    --dark-bg: #1A1A1A;
    --dark-card: #2F2F2F;
}

/* Primary Color Overrides */
.bg-primary {
    background-color: var(--gold) !important;
}

.text-primary {
    color: var(--gold) !important;
}

.btn-primary {
    background-color: transparent !important;
    border: 2px solid #7B1315 !important;
    color: #B07C2B !important;
}

.btn-primary:hover {
    background-color: #7B1315 !important;
    border-color: #7B1315 !important;
    color: #FFFFFF !important;
}

.btn-dark {
    background-color: var(--dark-bg) !important;
    border: 2px solid var(--gold) !important;
    color: #FFFFFF !important;
}

.btn-dark:hover {
    background-color: var(--gold) !important;
    color: #1A1A1A !important;
}

.border-primary {
    border-color: var(--gold) !important;
}

/* Dark Background Sections */
.bg-dark {
    background-color: var(--dark-bg) !important;
}

/* Light Sections */
.bg-light {
    background-color: var(--bs-light) !important;
}

/* Body and Typography */
body {
    color: var(--bs-body-color);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--dark-bg);
}

.text-muted {
    color: var(--bs-muted) !important;
}

/*** Navbar Logo ***/
.navbar-brand {
    background-color: transparent !important;
    box-shadow: none;
}

.navbar-brand img {
    object-fit: contain;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed !important;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

/*** Fonts ***/
body {
  font-family: "Plus Jakarta Sans", sans-serif;
}

.font-work-sans {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.font-playfair-display {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.font-dancing-script {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

/* Main Headings - Plus Jakarta Sans */
h1, h2, h3, h4, h5, h6 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 600;
}

/* Section Titles (About Us, Our Services, etc.) - Plus Jakarta Sans Regular */
h1.font-dancing-script,
.text-center h1.font-dancing-script,
.font-dancing-script {
    font-family: "Plus Jakarta Sans", sans-serif !important;
    font-weight: 400 !important;
    letter-spacing: 2px;
    text-transform: uppercase !important;
    font-size: 1.2rem !important;
    color: #B07C2B !important;
}

/* Display headings */
.display-1, .display-2, .display-3, .display-4, .display-5 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 700;
}

/* Banner headline */
.banner-headline {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 700;
}


/*** Button ***/
.btn {
    position: relative;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn-dark,
.btn-primary {
    margin: 10px;
}

.btn-primary::before,
.btn-primary::after {
    display: none;
}

.btn-dark::before,
.btn-dark::after {
    display: none;
}


/*** Navbar ***/
.sticky-top {
    top: -150px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin: 0 12px;
    padding: 0;
    outline: none;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--bs-dark);
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary)
}

.navbar .navbar-nav .disabled-link {
    color: var(--bs-dark) !important;
    cursor: default !important;
    pointer-events: none;
}

.navbar .navbar-nav .disabled-link:hover {
    color: var(--bs-dark) !important;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .dropdown-menu .dropdown-item:hover,
.navbar .dropdown-menu .dropdown-item.active {
    color: var(--bs-white);
    background: var(--bs-primary);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-left: 0;
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.navbar .btn-primary {
    border-width: 2px;
    background: transparent !important;
    border-color: #7B1315 !important;
    color: #B07C2B !important;
}

.navbar .btn-primary:hover {
    background: #7B1315 !important;
    border-color: #7B1315 !important;
    color: #FFFFFF !important;
}


/*** Hero Header ***/
.hero-header {
    background: url(../img/hero-bg.jpg) top left no-repeat;
    background-size: cover;
}

@media (min-width: 992px) {
    .hero-header .container {
        max-width: 100% !important;
    }

    .hero-header .hero-header-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .hero-header .hero-header-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .hero-header .hero-header-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}

.header-carousel .owl-nav {
    position: absolute;
    right: 0;
    bottom: 0;
    text-align: center;
    display: flex;
    justify-content: center;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next{
    position: relative;
    margin-left: 2px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-dark);
    background: var(--bs-primary);
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    color: var(--bs-white);
}

.page-header {
    background: url(../img/page-header.jpg) center center no-repeat;
    background-size: contain;
}


/*** Service ***/
@media (max-width: 768px) {
    .service .service-item {
        border: none !important;
        box-shadow: 0 0 45px rgba(0, 0, 0, .05);
    }
}

@media (min-width: 992px) {
    .service .service-item.border-lg-end {
        border-right: 1px solid #dee2e6;
    }

    .service .service-item.border-lg-end-0 {
        border-right: none !important;
    }

    .service .service-item.border-lg-bottom-0 {
        border-bottom: none !important;
    }
}

/* Modern Service Cards */
.modern-service-card {
    padding: 40px 30px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    background: #F8F8F8 !important;
}

.modern-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(176, 124, 43, 0.1), transparent);
    transition: all 0.6s ease;
}

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

.modern-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
    border-color: #7B1315;
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(176, 124, 43, 0.2) 0%, rgba(176, 124, 43, 0.1) 100%);
    border-radius: 50%;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.modern-service-card:hover .service-icon-wrapper {
    background: linear-gradient(135deg, rgba(176, 124, 43, 0.3) 0%, rgba(176, 124, 43, 0.2) 100%);
    transform: scale(1.1) rotate(5deg);
}

.service-icon-wrapper i {
    transition: all 0.4s ease;
    color: #B07C2B !important;
}

.modern-service-card:hover .service-icon-wrapper i {
    transform: scale(1.1);
}

.service-content {
    text-align: center;
}

.service-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.modern-service-card:hover .service-content h3 {
    color: #B07C2B;
}

.service-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #6E6E6E;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: #B07C2B;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.service-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -3px;
    left: 0;
    background-color: #B07C2B;
    transition: width 0.3s ease;
}

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

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: #B07C2B;
    gap: 5px;
}

.service-link:hover i {
    transform: translateX(5px);
}

@media (max-width: 991px) {
    .modern-service-card {
        padding: 35px 25px;
    }
}

.service .service-item .btn-primary {
    border-width: 2px;
    background: var(--bs-white);
}

.service .service-item .btn-primary:hover {
    background: var(--bs-primary);
}

.service .service-item img {
    width: 70px;
    margin-bottom: 20px;
}


/*** Why Choose Us ***/
.why-choose-card {
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.why-choose-card:hover {
    transform: translateY(-10px);
    border-color: var(--bs-primary);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.why-choose-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(184, 135, 62, 0.1) 0%, rgba(184, 135, 62, 0.05) 100%);
    border-radius: 50%;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.why-choose-card:hover .why-choose-icon {
    background: linear-gradient(135deg, rgba(184, 135, 62, 0.2) 0%, rgba(184, 135, 62, 0.1) 100%);
    transform: scale(1.1);
}

.why-choose-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    transition: color 0.3s ease;
}

.why-choose-card:hover h4 {
    color: var(--bs-primary);
}

.why-choose-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}


/*** Pricing ***/
.price .price-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, .05);
}

/* Decorative Line */
.decorative-line {
    width: 120px;
    height: 2px;
    background: #7B1315;
    position: relative;
}

.decorative-line::after {
    content: '';
    position: absolute;
    right: -10px;
    top: -3px;
    width: 8px;
    height: 8px;
    background: #7B1315;
    border-radius: 50%;
}

/* Feature Items in Pricing Section */
.feature-item {
    padding: 20px;
    background: rgba(176, 124, 43, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 3px solid #7B1315;
}

.feature-item:hover {
    background: rgba(176, 124, 43, 0.2);
    transform: translateX(10px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    color: #B07C2B !important;
}

.feature-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFFFFF;
}

.feature-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #C9C9C9;
}


/*** Blog ***/
.blog .btn-dark {
    border-width: 2px;
    background: var(--bs-primary);
    color: var(--bs-dark);
}

.blog .btn-dark:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}


/*** Gallery ***/
.gallery .gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery .gallery-item img {
    transition: .5s;
}

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

.gallery .gallery-icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, .7);
    transition: .5s;
    z-index: 1;
}

.gallery .gallery-item:hover .gallery-icon {
    width: 100%;
    height: 100%;
}

.gallery .gallery-icon .btn {
    opacity: 0;
    transition: .5s;
}

.gallery .gallery-item:hover .gallery-icon .btn {
    opacity: 1;
    transition-delay: .5s;
}


/*** Team ***/
.team {
    position: relative;
}

.team::before {
    position: absolute;
    content: "";
    width: 200%;
    height: 200px;
    top: 50%;
    left: -50%;
    transform: translateY(-50%);
    margin-top: 1rem;
    background: #1A1A1A;
}

/* 5 Column Layout */
@media (min-width: 992px) {
    .team-5-cols .col-lg-custom-5 {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

@media (max-width: 991px) {
    .team-5-cols .col-lg-custom-5 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

.team-item {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.team-item img {
    transition: .5s;
    width: 100%;
    height: 300px;
    object-fit: cover;
}
  
.team-item:hover img {
    transform: scale(1.2);
}
  
.team-overlay {
    position: absolute;
    padding: 20px;
    right: 20px;
    bottom: 20px;
    left: 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.75);
    transition: .5s;
    z-index: 1;
    border-bottom: 3px solid #7B1315;
}

.team-item:hover .team-overlay {
    background: rgba(255, 255, 255, 1);
}

.team-overlay h5 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #1A1A1A;
}

.team-overlay p {
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    color: #B07C2B !important;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.5s ease;
}

.team-item:hover .team-overlay p {
    max-height: 100px;
    opacity: 1;
    margin-top: 10px;
}

.team-overlay .btn-dark {
    border-width: 2px;
    color: #1A1A1A;
    background: transparent;
    border-color: #1A1A1A;
}

.team-overlay .btn-dark:hover {
    color: #FFFFFF;
    background: #1A1A1A;
    border-color: #1A1A1A;
}


/*** Clients Logos ***/
.clients-carousel {
    padding: 30px 0;
}

.client-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: all 0.3s ease;
}

.client-logo-item img {
    max-height: 80px;
    max-width: 180px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
    object-fit: contain;
}

.client-logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}




/*** Footer ***/
.footer {
    background-color: #1A1A1A !important;
}

.footer .navbar-brand {
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.footer-logo-img {
    height: auto;
    max-height: 200px;
    width: auto;
    max-width: 400px;
    object-fit: contain;
    background: transparent !important;
}

.footer p,
.footer span {
    color: #C9C9C9;
}

.footer h5 {
    color: #FFFFFF;
}

.footer i {
    color: #B07C2B;
}

    @media (min-width: 992px) {
        .footer::after {
            position: absolute;
            content: "";
            width: 2px;
            height: 100%;
            top: 0;
            left: 50%;
            background: #7B1315;
        }
    }

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #C9C9C9;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link:hover {
    color: #B07C2B;
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .disabled-footer-link {
    color: #C9C9C9 !important;
    cursor: default !important;
    pointer-events: none;
}

.footer .disabled-footer-link:hover {
    color: #C9C9C9 !important;
    letter-spacing: 0 !important;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: rgba(255, 255, 255, .5);
    margin-right: 10px;
}

.footer-social-link {
    color: #C9C9C9;
    text-decoration: none;
    font-size: 1rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    color: #B07C2B;
    padding-left: 10px;
}

.footer-social-link i {
    color: #B07C2B;
    font-size: 1.2rem;
    width: 30px;
    transition: all 0.3s ease;
}

.footer-social-link:hover i {
    transform: scale(1.2);
}

.footer .btn-outline-primary {
    border: 2px solid #B07C2B;
    color: #B07C2B;
    background: transparent;
}

.footer .btn-outline-primary:hover {
    background: #B07C2B;
    color: #1A1A1A;
    border-color: #B07C2B;
}


/*** Main Banner Carousel ***/
.main-banner-carousel {
    position: relative;
    width: 100%;
}

.main-banner-carousel .owl-nav {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.main-banner-carousel .owl-nav .owl-prev,
.main-banner-carousel .owl-nav .owl-next {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-white);
    background: rgba(0, 0, 0, 0.5);
    font-size: 24px;
    border-radius: 5px;
    transition: .3s;
}

.main-banner-carousel .owl-nav .owl-prev:hover,
.main-banner-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
    color: var(--bs-dark);
}

.main-banner-carousel .owl-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
}

.main-banner-carousel .owl-dots .owl-dot {
    display: inline-block;
    margin: 0 5px;
}

.main-banner-carousel .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: block;
    transition: .3s;
}

.main-banner-carousel .owl-dots .owl-dot.active span,
.main-banner-carousel .owl-dots .owl-dot:hover span {
    background: var(--bs-primary);
    width: 30px;
    border-radius: 10px;
}

.banner-slide {
    position: relative;
}

.banner-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}


/*** Banner Text Overlay ***/
.banner-text-overlay {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 5;
    padding: 20px;
    pointer-events: none;
}

.banner-headline {
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    line-height: 1.3;
    font-weight: 700;
    color: #FFFFFF !important;
}

.banner-subheadline {
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 400;
    color: #C9C9C9 !important;
}

@media (max-width: 768px) {
    .banner-headline {
        font-size: 2rem !important;
    }
    
    .banner-subheadline {
        font-size: 1rem !important;
    }
}


/*** Service Images Carousel ***/
.service-images-carousel {
    padding: 10px 0;
}

.service-image-item {
    transition: transform .3s;
}

.service-image-item:hover {
    transform: scale(1.05);
}

.service-image-item img {
    border: 3px solid transparent;
    transition: .3s;
}

.service-image-item:hover img {
    border-color: var(--bs-primary);
}


/*** Contact Form Section ***/
.contact-form-section {
    margin-bottom: 80px;
}

/*** Contact Form ***/
.form-floating > .form-select {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
}

.form-floating > .form-select ~ label {
    opacity: 0.65;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.form-select:focus ~ label,
.form-select:not(:placeholder-shown) ~ label {
    opacity: 0.65;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.form-select option:first-child {
    color: #6c757d;
}

/* Enhanced Send Message Button */
.btn-send-message {
    position: relative;
    overflow: hidden;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: 10px !important;
    background-color: transparent !important;
    border: 2px solid #7B1315 !important;
    color: #B07C2B !important;
    box-shadow: 0 5px 20px rgba(123, 19, 21, 0.4);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-send-message::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-send-message:hover::before {
    width: 300px;
    height: 300px;
}

.btn-send-message .btn-text,
.btn-send-message i {
    position: relative;
    z-index: 2;
    color: #B07C2B;
}

.btn-send-message i {
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-send-message:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(123, 19, 21, 0.5);
    background-color: #7B1315 !important;
    border-color: #7B1315 !important;
    color: #FFFFFF !important;
}

.btn-send-message:hover .btn-text,
.btn-send-message:hover i {
    color: #FFFFFF !important;
}

.btn-send-message:hover i {
    transform: translateX(5px);
}

.btn-send-message:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 20px rgba(123, 19, 21, 0.4);
}


/*** Contact Info Cards - Dark Design ***/
.contact-card-dark {
    background: #2F2F2F;
    padding: 35px 30px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    border-left: 5px solid #B07C2B;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-card-dark::after {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(176, 124, 43, 0.1), transparent);
    transition: right 0.6s ease;
}

.contact-card-dark:hover {
    background: #3A3A3A;
    border-left-width: 8px;
    transform: translateX(5px);
    box-shadow: -5px 10px 30px rgba(176, 124, 43, 0.3);
}

.contact-card-dark:hover::after {
    right: 100%;
}

.contact-icon-left {
    flex-shrink: 0;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #B07C2B, #D4A056);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
}

.contact-icon-left::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transform: scale(0);
    transition: transform 0.4s ease;
}

.contact-card-dark:hover .contact-icon-left {
    transform: rotate(-10deg) scale(1.1);
}

.contact-card-dark:hover .contact-icon-left::before {
    transform: scale(1);
}

.contact-icon-left i {
    font-size: 1.8rem;
    color: #FFFFFF;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.contact-card-dark:hover .contact-icon-left i {
    transform: scale(1.2);
}

.contact-content {
    flex: 1;
}

.contact-content h5 {
    color: #FFFFFF;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 1.3rem;
    letter-spacing: 0.5px;
}

.contact-content p {
    color: #C9C9C9;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 5px;
}

.contact-content a {
    color: #B07C2B;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.contact-content a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #B07C2B;
    transition: width 0.3s ease;
}

.contact-content a:hover {
    color: #D4A056;
    padding-left: 5px;
}

.contact-content a:hover::after {
    width: 100%;
}

.contact-time {
    color: #6E6E6E !important;
    font-size: 0.85rem !important;
    font-style: italic;
    margin-bottom: 0 !important;
}


/*** Map Container ***/
.map-container {
    position: relative;
    width: 100%;
    height: 600px;
    filter: grayscale(20%);
    transition: filter 0.5s ease;
}

.map-container:hover {
    filter: grayscale(0%);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/*** Overlapping Horizontal Contact Box ***/
.contact-box-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 100;
    padding: 0 15px;
}

.contact-horizontal-box {
    position: relative;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F8F8 100%);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 10px 30px rgba(123, 19, 21, 0.2),
        0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(123, 19, 21, 0.2);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.contact-horizontal-box::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 20px;
    padding: 3px;
    background: linear-gradient(135deg, 
        rgba(123, 19, 21, 0.8) 0%, 
        transparent 30%, 
        transparent 70%, 
        rgba(123, 19, 21, 0.8) 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.contact-horizontal-box:hover::before {
    opacity: 1;
}

.contact-horizontal-box:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.2),
        0 15px 40px rgba(123, 19, 21, 0.3),
        0 8px 20px rgba(0, 0, 0, 0.15);
    border-color: rgba(123, 19, 21, 0.5);
}

/* Glow Effects */
.box-glow-top {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 100px;
    background: radial-gradient(ellipse at center, rgba(123, 19, 21, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.box-glow-bottom {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 100px;
    background: radial-gradient(ellipse at center, rgba(123, 19, 21, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.contact-horizontal-box:hover .box-glow-top,
.contact-horizontal-box:hover .box-glow-bottom {
    opacity: 1;
}

/* Shine Effect */
.box-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(123, 19, 21, 0.1) 50%, 
        transparent 100%
    );
    transform: skewX(-20deg);
    transition: left 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    pointer-events: none;
}

.contact-horizontal-box:hover .box-shine {
    left: 150%;
}

/* Contact Info Items - Simplified Design */
.contact-info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px;
    transition: all 0.4s ease;
}

.contact-info-item:hover {
    transform: translateX(5px);
}

.contact-info-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(176, 124, 43, 0.15), rgba(176, 124, 43, 0.05));
    border: 2px solid #7B1315;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

.contact-info-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(123, 19, 21, 0.2);
    transform: scale(1.2);
    transition: all 0.4s ease;
}

.contact-info-item:hover .contact-info-icon {
    background: linear-gradient(135deg, #7B1315, #A41E34);
    border-color: #7B1315;
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 0 20px rgba(123, 19, 21, 0.5);
}

.contact-info-item:hover .contact-info-icon::before {
    transform: scale(1.3);
    opacity: 0;
}

.contact-info-icon i {
    font-size: 1.5rem;
    color: #B07C2B;
    transition: all 0.4s ease;
}

.contact-info-item:hover .contact-info-icon i {
    color: #FFFFFF;
    transform: scale(1.1);
}

.contact-info-text {
    flex: 1;
}

.contact-info-heading {
    font-size: 1.2rem;
    font-weight: 700;
    color: #B07C2B;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.contact-info-item:hover .contact-info-heading {
    color: #8A5E1F;
    letter-spacing: 1.5px;
}

.contact-info-text p {
    font-size: 0.95rem;
    font-weight: 500;
    color: #1A1A1A;
    line-height: 1.8;
    transition: all 0.3s ease;
}

.contact-info-text a {
    color: #1A1A1A;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.contact-info-text a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background: #B07C2B;
    transition: width 0.3s ease;
}

.contact-info-text a:hover {
    color: #B07C2B;
}

.contact-info-text a:hover::after {
    width: 100%;
}


/* Responsive Design */
@media (max-width: 991px) {
    .contact-form-section {
        margin-bottom: 60px;
    }
    
    .map-container {
        height: 500px;
    }
    
    .contact-box-overlay {
        position: relative;
        top: auto;
        transform: none;
        margin-top: -60px;
        z-index: 100;
    }
    
    .contact-horizontal-box {
        padding: 40px 30px;
    }
    
    .contact-info-item {
        justify-content: center;
        padding: 15px;
    }
    
    .contact-info-icon {
        width: 55px;
        height: 55px;
    }
    
    .contact-info-icon i {
        font-size: 1.3rem;
    }
    
    .contact-info-heading {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .contact-info-text p {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .contact-form-section {
        margin-bottom: 40px;
    }
    
    .map-container {
        height: 450px;
    }
    
    .contact-box-overlay {
        margin-top: -50px;
    }
    
    .contact-horizontal-box {
        padding: 30px 20px;
        border-radius: 15px;
    }
    
    .contact-info-item {
        flex-direction: column;
        text-align: center;
        padding: 20px 10px;
    }
    
    .contact-info-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }
    
    .contact-info-icon i {
        font-size: 1.2rem;
    }
    
    .contact-info-heading {
        font-size: 1rem;
        margin-bottom: 8px;
        letter-spacing: 0.8px;
    }
    
    .contact-info-text p {
        font-size: 0.85rem;
    }
}