/*
==========================================
        Google Font
==========================================
*/

:root {

    --primary: #0f172a;
    --secondary: #f59e0b;
    --white: #ffffff;
    --light: #f8f9fa;
    --dark: #111827;
    --text: #64748b;
    --border: #e5e7eb;

}

* {

    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

html {

    scroll-behavior: smooth;

}

body {

    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    color: var(--text);
    background: #fff;

}

h1,
h2,
h3,
h4,
h5,
h6 {

    font-family: 'Space Grotesk', sans-serif;
    color: var(--dark);

}

section {

    padding: 110px 0;

}

img {

    max-width: 100%;

}

a {

    text-decoration: none;

}

/*
==========================================
        Buttons
==========================================
*/

.btn {

    border-radius: 50px;
    padding: 14px 35px;
    transition: .4s;

}

.btn-primary {

    background: var(--secondary);
    border: none;

}

.btn-primary:hover {

    background: #d97706;
    transform: translateY(-4px);

}

/*
==========================================
        Hero
==========================================
*/

/*=========================
        HERO
==========================*/

.hero-section {

    height: 100vh;
    position: relative;

}

.hero-slider {

    position: absolute;
    inset: 0;

}

.hero-slider img {

    width: 100%;
    height: 100%;
    object-fit: cover;

}

.hero-overlay {

    position: absolute;
    inset: 0;

    background: rgba(15, 23, 42, .70);

}

.hero-title {

    color: #fff;
    font-size: 90px;
    line-height: 1;
    font-weight: 700;

}

.hero-title span {

    color: #F59E0B;

}

.hero-tag {

    color: #F59E0B;

    text-transform: uppercase;

    letter-spacing: 3px;

}

.hero-text {

    color: #ddd;

    font-size: 20px;

    margin: 35px 0;

    max-width: 650px;

}

.hero-btn .btn {

    padding: 16px 40px;

}

.scroll-down {

    position: absolute;

    bottom: 40px;

    left: 50%;

    transform: translateX(-50%);

}

.scroll-down span {

    width: 28px;

    height: 48px;

    display: block;

    border: 2px solid #fff;

    border-radius: 20px;

    position: relative;

}

.scroll-down span::before {

    content: '';

    width: 6px;

    height: 6px;

    background: #fff;

    position: absolute;

    left: 50%;

    top: 8px;

    transform: translateX(-50%);

    border-radius: 50%;

    animation: scroll 2s infinite;

}

@keyframes scroll {

    0% {

        top: 8px;
        opacity: 1;

    }

    100% {

        top: 28px;
        opacity: 0;

    }

}

/*
==========================================
        About
==========================================
*/
/*=================================
            ABOUT
=================================*/

.about-section {

    background: #fff;
    position: relative;

}

.about-images {

    position: relative;

}

.about-main {

    border-radius: 25px;

    box-shadow: 0 30px 70px rgba(0, 0, 0, .12);

}

.about-small {

    width: 240px;

    position: absolute;

    right: -30px;

    bottom: -40px;

    border-radius: 20px;

    border: 8px solid #fff;

    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);

}

.experience-box {

    position: absolute;

    left: -40px;

    bottom: 50px;

    background: #F59E0B;

    color: #fff;

    padding: 15px 20px;

    border-radius: 20px;

    text-align: center;

    box-shadow: 0 20px 50px rgba(0, 0, 0, .15);

    width: 240px;

    max-width: 90%;

    z-index: 5;

}

.experience-box h2 {

    font-size: 13px;

    color: #fff;

    margin: 0 0 5px 0;

    font-weight: 600;

    line-height: 1.4;

}

.experience-box p {

    font-size: 10px;

    margin: 0;

    opacity: 0.9;

    text-transform: uppercase;

    letter-spacing: 1px;

}

.section-tag {

    color: #F59E0B;

    letter-spacing: 3px;

    font-weight: 600;

}

.section-title {

    font-size: 55px;

    margin: 20px 0;

}

.section-title span {

    color: #F59E0B;

}

.section-description {

    line-height: 2;

    color: #64748B;

}

.feature-item {

    font-size: 18px;

    font-weight: 600;

}

.feature-item i {

    color: #F59E0B;

    margin-right: 10px;

}

@media(max-width:992px) {

    .about-small {

        display: none;

    }

    .experience-box {

        left: 20px;

        bottom: 20px;

    }

    .section-title {

        font-size: 40px;

    }

}

/*
==========================================
        Services
==========================================
*/

/*==========================================
        Services (Vrenex-style)
==========================================*/

.services-section {
    background: #f8f6f0; /* Warm beige/cream background like Vrenex */
    padding: 120px 0;
}

.services-accordion {
    margin-top: 30px;
}

.service-list-item {
    border-bottom: 1px solid rgba(15, 23, 42, 0.15);
    padding: 30px 0;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-list-item:first-child {
    border-top: 1px solid rgba(15, 23, 42, 0.15);
}

.service-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-idx {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary);
    width: 60px;
    font-family: 'Space Grotesk', sans-serif;
}

.service-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    flex-grow: 1;
    font-family: 'Space Grotesk', sans-serif;
    transition: color 0.3s ease, transform 0.3s ease;
}

.service-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(15, 23, 42, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-arrow i {
    transform: rotate(-45deg);
    transition: transform 0.4s ease;
}

/* Service Body / Expandable content */
.service-body {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding-left: 60px;
    transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.3s ease, padding-top 0.4s ease;
}

.service-body p {
    color: #4b5563;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 500px;
}

.service-link {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #d97706;
}

/* Active / Hover Accordion States */
.service-list-item:hover .service-title,
.service-list-item.active .service-title {
    color: var(--secondary);
    transform: translateX(10px);
}

.service-list-item.active {
    padding-bottom: 40px;
}

.service-list-item.active .service-body {
    max-height: 250px;
    opacity: 1;
    padding-top: 25px;
}

.service-list-item.active .service-arrow {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
    transform: scale(1.1);
}

.service-list-item.active .service-arrow i {
    transform: rotate(0deg);
}

/* Sticky Image Wrapper styles */
.sticky-image-wrapper {
    position: sticky;
    top: 130px;
    height: 580px;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    background-color: #e5e7eb;
}

.service-showcase-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.6s ease;
    transform: scale(1.05);
}

.service-showcase-img.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

/* Mobile responsive fixes */
@media (max-width: 991.98px) {
    .services-section {
        padding: 80px 0;
    }
    
    .service-title {
        font-size: 22px;
    }
    
    .service-body {
        padding-left: 0;
    }
    
    .service-idx {
        width: 40px;
    }
}

/*
==========================================
        Why Us
==========================================
*/

#why {

    background: #fff;

}

#why h3 {

    font-size: 60px;
    color: var(--secondary);

}

#why p {

    font-size: 18px;

}

/*
==========================================
        Projects
==========================================
*/

#projects img {

    border-radius: 20px;
    transition: .5s;
    cursor: pointer;

}

#projects img:hover {

    transform: scale(1.06);

}

/*
==========================================
        Contact
==========================================
*/

#contact {

    text-align: center;

}

#contact h2 {

    font-size: 55px;

}

#contact p {

    margin: 25px 0;

}

/*
==========================================
        Navbar
==========================================
*/

.custom-navbar {
    padding: 25px 0;
    transition: all 0.4s ease-in-out;
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.custom-navbar .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 600;
    font-size: 16px;
    padding: 8px 20px !important;
    transition: all 0.3s ease;
    font-family: 'Space Grotesk', sans-serif;
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active {
    color: var(--secondary) !important;
}

.custom-navbar .navbar-toggler {
    color: var(--white);
    font-size: 22px;
}

/* Scrolled State */
.custom-navbar.scrolled {
    background-color: var(--white) !important;
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid var(--border);
}

.custom-navbar.scrolled .nav-link {
    color: var(--dark) !important;
}

.custom-navbar.scrolled .nav-link:hover,
.custom-navbar.scrolled .nav-link.active {
    color: var(--secondary) !important;
}

.custom-navbar.scrolled .navbar-toggler {
    color: var(--dark);
}

/* Mobile responsive menu */
@media (max-width: 991.98px) {
    .custom-navbar .navbar-collapse {
        background-color: var(--primary);
        padding: 20px;
        border-radius: 15px;
        margin-top: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }
    
    .custom-navbar .navbar-collapse .nav-link {
        color: rgba(255, 255, 255, 0.9) !important;
        padding: 10px 15px !important;
    }
    
    .custom-navbar .navbar-collapse .nav-link:hover,
    .custom-navbar .navbar-collapse .nav-link.active {
        color: var(--secondary) !important;
    }

    .custom-navbar.scrolled .navbar-collapse {
        background-color: var(--white);
        border: 1px solid var(--border);
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }

    .custom-navbar.scrolled .navbar-collapse .nav-link {
        color: var(--dark) !important;
    }

    .custom-navbar.scrolled .navbar-collapse .nav-link:hover,
    .custom-navbar.scrolled .navbar-collapse .nav-link.active {
        color: var(--secondary) !important;
    }
}

/*
==========================================
        Footer
==========================================
*/

.footer {
    background-color: var(--primary);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px;
    font-size: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer h5 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    font-family: 'Space Grotesk', sans-serif;
}

.footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background-color: var(--secondary);
}

.footer-logo {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Space Grotesk', sans-serif;
}

.footer-text {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

.footer ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer ul li a:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
}

.footer p i {
    color: var(--secondary);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
    background-color: var(--secondary);
    color: var(--primary);
    transform: translateY(-5px);
    border-color: var(--secondary);
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 40px 0 20px;
}

.footer .copyright {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
}

.footer .text-md-end a {
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.footer .text-md-end a:hover {
    color: var(--secondary);
}

.footer .text-md-end span {
    color: rgba(255, 255, 255, 0.2);
}

/*
==========================================
        Responsive
==========================================
*/

@media(max-width:992px) {

    .hero-section h1 {

        font-size: 48px;

    }

    .hero-slider {

        position: relative !important;
        width: 100% !important;
        height: 400px;

    }

}

@media(max-width:768px) {

    section {

        padding: 80px 0;

    }

    .hero-section {

        min-height: auto !important;
        padding-top: 140px;

    }

    .hero-section .shadow {

        padding: 35px !important;

    }

    .hero-section h1 {

        font-size: 38px;

    }

    .display-5 {

        font-size: 34px;

    }

    #contact h2 {

        font-size: 36px;

    }

}

/*
==========================================
        About Us Page Styles
==========================================
*/

.about-hero {
    min-height: 60vh;
    padding: 120px 0 80px 0;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.about-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.85); /* Deep dark overlay */
}

.about-hero-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.about-hero-title span {
    color: var(--secondary);
}

.about-hero-text {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85) !important;
}

.about-story-image {
    position: relative;
    padding-right: 20px;
}

.floating-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--white);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    z-index: 2;
    border: 1px solid var(--border);
}

.badge-inner {
    text-align: center;
}

.badge-inner h5 {
    font-weight: 700;
    margin-top: 10px;
    font-size: 18px;
}

.about-stat {
    background: var(--light);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    border: 1px solid var(--border);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.about-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-color: var(--secondary);
}

.about-stat h3 {
    font-size: 40px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 5px;
}

.about-stat p {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--dark);
}

.vision-mission-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.vision-mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08) !important;
}

.card-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(245, 158, 11, 0.1);
    color: var(--secondary);
    border-radius: 15px;
}

.value-card {
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06) !important;
    border-color: var(--secondary);
}

.value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: var(--light);
    border-radius: 50%;
    margin-bottom: 20px;
}

.timeline-item {
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.timeline-item:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05) !important;
    border-color: var(--secondary);
}

.about-cta-section {
    background-color: var(--primary) !important;
}

@media (max-width: 991px) {
    .about-hero {
        min-height: 50vh;
        padding-top: 140px;
    }
    
    .about-hero-title {
        font-size: 44px;
    }
    
    .floating-badge {
        position: relative;
        bottom: 0;
        left: 0;
        margin-top: 20px;
    }
}

/*
==========================================
        Navbar Dropdown Hover & Styling
==========================================
*/

@media (min-width: 992px) {
    .navbar-nav .dropdown:hover .dropdown-menu,
    .navbar-nav .dropdown-menu.show {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .navbar-nav .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(15px);
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
}

.dropdown-item {
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: rgba(245, 158, 11, 0.08) !important;
    color: var(--secondary) !important;
    padding-left: 24px !important;
}

/*
==========================================
        Service Detail Page Styles
==========================================
*/

.service-detail-hero {
    min-height: 60vh;
    padding: 140px 0 90px 0;
}

.service-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.service-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.85);
}

.service-hero-title {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.service-hero-title span {
    color: var(--secondary);
}

.service-hero-text {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85) !important;
}

.service-overview-img {
    position: relative;
}

.service-overview-img img {
    border-radius: 25px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.badge-tag {
    background: var(--secondary) !important;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.3);
    z-index: 3;
}

.spec-highlight {
    background: var(--light);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.spec-highlight:hover {
    transform: translateY(-4px);
    border-color: var(--secondary);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
}

.spec-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 50%;
}

.feature-detail-card {
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.feature-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
    border-color: var(--secondary);
}

.feature-detail-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(245, 158, 11, 0.08) !important;
    color: var(--secondary) !important;
}

.custom-spec-table {
    border: 1px solid var(--border);
}

.custom-spec-table thead th {
    background-color: var(--primary);
    border: none;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    letter-spacing: 0.5px;
}

.custom-spec-table tbody td {
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
}

.app-card {
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.app-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
    border-color: var(--secondary);
}

.app-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(245, 158, 11, 0.08);
    border-radius: 50%;
}

@media (max-width: 991px) {
    .service-detail-hero {
        min-height: 50vh;
        padding-top: 140px;
    }
    .service-hero-title {
        font-size: 40px;
    }
    .badge-tag {
        position: relative !important;
        inset: auto !important;
        margin-top: 20px;
        display: inline-block;
    }
}

/*
==========================================
        Our Projects Page Styles
==========================================
*/

.portfolio-section {
    background-color: var(--white);
    padding: 80px 0;
}

.filter-btn-group {
    margin-bottom: 20px;
}

.filter-btn {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-color: rgba(245, 158, 11, 0.3);
    color: var(--dark);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--secondary) !important;
    border-color: var(--secondary) !important;
    color: var(--white) !important;
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.25);
    transform: translateY(-2px);
}

.project-card-wrapper {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.project-display-card {
    cursor: pointer;
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.project-img-container {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.project-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.project-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.4) 70%, rgba(15, 23, 42, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.project-display-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
    border-color: var(--secondary);
}

.project-display-card:hover .project-img-container img {
    transform: scale(1.1);
}

.project-display-card:hover .project-card-overlay {
    opacity: 1;
}

/* Lightbox styles */
#projectLightboxModal .modal-content {
    border-radius: 20px;
}

#projectLightboxModal .btn-close-white {
    background-color: var(--secondary);
    opacity: 1;
    border-radius: 50%;
    padding: 10px;
}

/*
==========================================
        Contact Us Page Styles
==========================================
*/

.contact-info-card {
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06) !important;
    border-color: var(--secondary);
}

.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(245, 158, 11, 0.08) !important;
    color: var(--secondary) !important;
}

.map-wrapper {
    border: 1px solid var(--border);
    transition: box-shadow 0.3s ease;
}

.map-wrapper:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05) !important;
}

.contact-form-wrapper {
    border: 1px solid var(--border);
}

.contact-form-wrapper .form-control {
    border-radius: 10px;
    border: 1px solid var(--border);
    font-size: 14px;
    transition: all 0.3s ease;
}

.contact-form-wrapper .form-control:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 0.2rem rgba(245, 158, 11, 0.15);
}

.contact-form-wrapper button[type="submit"]:hover {
    background-color: #157347 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(25, 135, 84, 0.3);
}