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

/* Premium Global Styles - M.M. Binder Premium Theme */
:root {
    --premium-primary: #c34331; /* Premium Red/Burgundy - Primary brand color */
    --premium-primary-dark: #a03526; /* Darker Red for depth */
    --premium-primary-light: #d65a47; /* Lighter Red for highlights */
    --premium-secondary: #373737; /* Premium Dark Gray - Sophisticated base */
    --premium-accent: #c34331; /* Red accent matching primary */
    --premium-accent-light: #e85d4a; /* Lighter accent for hover states */
    --premium-dark: #1a1a1a; /* Deep charcoal for backgrounds */
    --premium-dark-light: #2d2d2d; /* Lighter charcoal */
    --premium-gray: #373737; /* Premium dark gray */
    --premium-gray-light: #4a4a4a; /* Lighter gray variant - kept for gradients */
    --premium-shadow: rgba(55, 55, 55, 0.15);
    --premium-shadow-lg: rgba(55, 55, 55, 0.25);
    --premium-red-shadow: rgba(195, 67, 49, 0.2);
    --premium-red-shadow-lg: rgba(195, 67, 49, 0.3);
    
    /* Override Bootstrap primary color to match premium theme */
    --bs-primary: #c34331;
    --bs-primary-rgb: 195, 67, 49;
}

/* Text color utilities for premium theme */
.text-primary {
    color: var(--premium-primary) !important;
}

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

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

* {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.01em;
    line-height: 1.7;
    font-weight: 400;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    background-color: #ffffff;
    position: relative;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

/* Remove white space after footer on all pages */
body > *:last-child {
    margin-bottom: 0 !important;
}

.copyright:last-child,
.copyright:last-of-type {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Ensure copyright is the absolute last element with no spacing */
body > .copyright {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
    box-shadow: 0 8px 25px rgba(55, 55, 55, 0.3);
    backdrop-filter: blur(10px);
    background: linear-gradient(135deg, var(--premium-primary) 0%, var(--premium-primary-dark) 100%);
    border: 2px solid rgba(195, 67, 49, 0.3);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: white;
    overflow: hidden;
}

.back-to-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--premium-primary-dark) 0%, var(--premium-accent) 100%);
    transition: left 0.4s ease;
    z-index: -1;
}

.back-to-top:hover::before {
    left: 0;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(26, 35, 126, 0.4);
    border-color: rgba(195, 67, 49, 0.6);
}

.back-to-top i {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.2rem;
}

.back-to-top:hover i {
    transform: translateY(-3px);
}

.fw-medium {
    font-weight: 600;
}

.mt-6 {
    margin-top: 5rem;
}

.mb-6 {
    margin-bottom: 5rem;
}

.pt-6 {
    padding-top: 5rem;
}

.pb-6 {
    padding-bottom: 5rem;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease-out, visibility 0s linear .3s;
    z-index: 99999;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.98) 100%);
    backdrop-filter: blur(10px);
    pointer-events: none;
}

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

#spinner .spinner-border {
    border-width: 4px;
    border-top-color: var(--premium-primary);
    border-right-color: var(--premium-accent);
    box-shadow: 0 0 20px rgba(195, 67, 49, 0.4);
}


/*** Button ***/
.btn {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: linear-gradient(135deg, var(--premium-primary) 0%, var(--premium-primary-dark) 100%);
    border: none;
    color: var(--bs-light);
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(55, 55, 55, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--premium-primary-dark) 0%, var(--premium-secondary) 100%);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    color: var(--bs-light);
}

.btn-outline-primary:hover {
    color: var(--bs-light);
    background: linear-gradient(135deg, var(--premium-primary) 0%, var(--premium-primary-dark) 100%);
    box-shadow: 0 4px 15px rgba(55, 55, 55, 0.3);
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--bs-dark);
}

.btn-light {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-light:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

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

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

.btn-xl-square {
    width: 60px;
    height: 60px;
}

.btn-xxl-square {
    width: 75px;
    height: 75px;
}

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

/*** Navbar ***/
.sticky-top {
    top: 0px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    z-index: 1020;
    position: sticky;
    background: transparent;
}

.sticky-top.scrolled {
    background: var(--premium-dark);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
}

.navbar-shell {
    background: var(--premium-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1020;
    width: 100%;
    transition: all 0.3s ease;
}

.navbar-shell.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.navbar-shell .container {
    padding-left: 15px;
    padding-right: 15px;
}

.sleek-navbar {
    background: transparent !important;
    border-bottom: none;
    padding-top: 0;
    padding-bottom: 0;
    min-height: 110px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 22px 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 600;
    outline: none;
    position: relative;
    letter-spacing: 0.08em;
    transition: color 0.3s ease, transform 0.3s ease;
}

.navbar .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--premium-primary) 0%, var(--premium-accent) 100%);
    transition: width 0.3s ease;
}

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

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--premium-primary);
    transform: translateY(-2px);
}

.navbar-brand-stack {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.navbar-brand-stack .navbar-logo {
    height: 62px;
    width: auto;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #d62828;
}

.brand-tagline {
    font-size: 0.75rem;
    letter-spacing: 0.4em;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 700;
    text-transform: uppercase;
}

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

/* Navbar toggler icon for dark background */
.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991.98px) {
    .navbar-shell {
        position: sticky;
        top: 0;
        z-index: 1020;
    }

    .sleek-navbar {
        min-height: 80px;
        padding: 0.75rem 0;
        width: 100%;
    }

    .navbar-brand.d-lg-none {
        display: flex !important;
        align-items: center;
        padding: 0;
        margin-right: auto;
        flex-shrink: 0;
    }

    .navbar-brand.d-lg-none .navbar-logo {
        height: 50px;
        width: auto;
        max-width: 150px;
        object-fit: contain;
    }

    .navbar-toggler {
        padding: 0.5rem 0.75rem;
        font-size: 1.25rem;
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 4px;
        margin-left: auto;
        flex-shrink: 0;
        order: 2;
    }

    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
    }

    .navbar-toggler.me-0 {
        margin-right: 0;
    }

    .navbar-collapse {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        order: 3;
    }

    .navbar .navbar-nav {
        margin-top: 0;
        padding: 0;
        width: 100%;
    }

    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 12px 0;
        font-size: 14px;
        text-align: left;
        width: 100%;
        display: block;
    }
    
    .navbar .navbar-nav .nav-link::after {
        bottom: 5px;
    }
    
    .brand-text {
        display: none;
    }
}

@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;
    }
}

@media (min-width: 1200px) {
    .sleek-navbar .navbar-nav {
        margin-left: auto;
    }

    .sleek-navbar .navbar-nav .nav-link {
        padding: 35px 0;
        margin-right: 45px;
        font-size: 14px;
    }

    .sleek-navbar .navbar-nav .nav-link::after {
        bottom: 18px;
    }

    .sleek-navbar .navbar-nav .nav-link + .nav-link::before {
        content: '';
        position: absolute;
        left: -22px;
        top: 50%;
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.45);
        transform: translateY(-50%);
    }

    .brand-text {
        display: flex;
    }
}


/*** Header - Modern Split-Screen Carousel Styling ***/
#header-carousel {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

#header-carousel .carousel-item {
    height: 600px;
    position: relative;
}

#header-carousel.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    transform: none;
}

#header-carousel.carousel-fade .carousel-item.active {
    opacity: 1;
}

/* Split Container */
.carousel-split-container {
    display: flex;
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
}

/* Left Section - Gradient Background with Content */
.carousel-left-section {
    flex: 0 0 50%;
    position: relative;
    background: linear-gradient(135deg, 
        #373737 0%, 
        #4a4a4a 30%,
        #c34331 60%,
        #a03526 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 3.5rem;
    overflow: hidden;
    border-radius: 20px 0 0 20px;
}

/* Decorative Shapes */
.carousel-decorative-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    pointer-events: none;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.shape-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    right: 15%;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    right: 10%;
    animation: float 8s ease-in-out infinite reverse;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    right: 25%;
    animation: float 7s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Content Wrapper */
.carousel-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 600px;
    color: #ffffff;
}

.carousel-headline {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.carousel-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

/* Carousel Buttons */
.carousel-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-carousel-primary {
    background: #ffffff;
    color: #c34331;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-carousel-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    background: #f5f5f5;
    color: #c34331;
}

.btn-carousel-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.8);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-carousel-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-2px);
    color: #ffffff;
}

/* Right Section - Image Area */
.carousel-right-section {
    flex: 0 0 50%;
    background: #ffffff;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    padding: 0;
    position: relative;
    border-radius: 0 20px 20px 0;
    overflow: hidden;
}

.carousel-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    overflow: hidden;
    border-radius: 0 20px 20px 0;
    min-height: 100%;
}

.carousel-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0 20px 20px 0;
    display: block;
}

/* Floating Elements */
.image-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(55, 55, 55, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(55, 55, 55, 0.3);
    animation: floatElement 3s ease-in-out infinite;
}

.element-1 {
    top: 15%;
    right: 10%;
    animation-delay: 0s;
}

.element-2 {
    bottom: 25%;
    right: 15%;
    animation-delay: 1s;
}

.element-3 {
    top: 50%;
    right: 5%;
    animation-delay: 2s;
}

@keyframes floatElement {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-15px) scale(1.1); }
}

/* Custom Carousel Indicators */
.carousel-indicators-custom {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
    margin: 0;
    padding: 0;
    list-style: none;
}

.carousel-indicators-custom button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    margin: 0;
}

.carousel-indicators-custom button.active {
    background: #ffffff;
    width: 32px;
    border-radius: 6px;
}

.carousel-indicators-custom button:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Old indicators - hide them */
.carousel .carousel-indicators {
    display: none;
}

.carousel .carousel-indicators [data-bs-target] {
    width: 80px;
    height: 80px;
    text-indent: 0;
    margin: 0;
    border: 3px solid rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    overflow: hidden;
    opacity: 0.6;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
}

.carousel .carousel-indicators [data-bs-target]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(55, 55, 55, 0.3) 0%, rgba(195, 67, 49, 0.2) 100%);
    z-index: 1;
    transition: opacity 0.3s;
}

.carousel .carousel-indicators [data-bs-target].active {
    opacity: 1;
    border-color: var(--premium-accent);
    border-width: 4px;
    box-shadow: 0 6px 25px rgba(195, 67, 49, 0.5), 0 4px 15px rgba(55, 55, 55, 0.4);
    transform: scale(1.1);
}

.carousel .carousel-indicators [data-bs-target].active::before {
    opacity: 0;
}

.carousel .carousel-indicators [data-bs-target]:hover {
    opacity: 0.9;
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 1);
}

.carousel .carousel-indicators [data-bs-target] img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 0;
}


/* Premium Carousel Controls */
#header-carousel .carousel-control-prev,
#header-carousel .carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    background: linear-gradient(135deg, var(--premium-primary) 0%, var(--premium-primary-dark) 100%);
    border: 3px solid var(--premium-accent);
    border-radius: 50%;
    opacity: 0.95;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    margin: 0 2rem;
    box-shadow: 0 8px 25px rgba(55, 55, 55, 0.4), 0 4px 15px rgba(195, 67, 49, 0.3);
    backdrop-filter: blur(10px);
}

#header-carousel .carousel-control-prev {
    left: 1rem;
}

#header-carousel .carousel-control-next {
    right: 1rem;
}

#header-carousel .carousel-control-prev:hover,
#header-carousel .carousel-control-next:hover {
    opacity: 1;
    background: linear-gradient(135deg, var(--premium-primary-dark) 0%, var(--premium-primary) 100%);
    border-color: var(--premium-accent-light);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 12px 35px rgba(55, 55, 55, 0.5), 0 6px 20px rgba(195, 67, 49, 0.4);
}

#header-carousel .carousel-control-prev:active,
#header-carousel .carousel-control-next:active {
    transform: translateY(-50%) scale(1.05);
}

#header-carousel .carousel-control-prev-icon,
#header-carousel .carousel-control-next-icon {
    width: 24px;
    height: 24px;
    background-size: 100% 100%;
    filter: brightness(0) invert(1);
    opacity: 1;
    transition: all 0.3s ease;
}

#header-carousel .carousel-control-prev:hover .carousel-control-prev-icon,
#header-carousel .carousel-control-next:hover .carousel-control-next-icon {
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(195, 67, 49, 0.8));
}

@media (max-width: 992px) {
    #header-carousel .carousel-item {
        height: 500px;
    }

    .carousel-split-container {
        flex-direction: column;
    }

    .carousel-left-section {
        flex: 0 0 60%;
        padding: 3rem 3rem;
    }

    .carousel-right-section {
        flex: 0 0 40%;
        padding: 0;
    }

    .carousel-headline {
        font-size: 2.5rem;
    }

    .carousel-description {
        font-size: 1rem;
    }

    .carousel-buttons {
        flex-direction: column;
    }

    .btn-carousel-primary,
    .btn-carousel-secondary {
        width: 100%;
        justify-content: center;
    }

    #header-carousel .carousel-control-prev,
    #header-carousel .carousel-control-next {
        width: 55px;
        height: 55px;
        margin: 0 1rem;
    }
    
    #header-carousel .carousel-control-prev-icon,
    #header-carousel .carousel-control-next-icon {
        width: 22px;
        height: 22px;
    }

    .floating-element {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    #header-carousel {
        margin: 1rem 0;
        border-radius: 16px;
    }

    #header-carousel .carousel-item {
        height: auto;
        min-height: auto;
    }

    .carousel-split-container {
        flex-direction: column;
        gap: 0;
    }

    .carousel-left-section {
        flex: 0 0 auto;
        padding: 2.5rem 1.5rem;
        display: flex;
        min-height: auto;
        border-radius: 16px 16px 0 0;
        order: 1;
    }

    .carousel-right-section {
        flex: 0 0 auto;
        padding: 0;
        min-height: auto;
        display: flex;
        order: 2;
        border-radius: 0 0 16px 16px;
    }

    .carousel-content-wrapper {
        text-align: center;
        max-width: 100%;
    }

    .carousel-headline {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
        line-height: 1.3;
    }

    .carousel-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
        padding: 0 0.5rem;
    }

    .btn-carousel-primary,
    .btn-carousel-secondary {
        padding: 0.875rem 1.75rem;
        font-size: 0.875rem;
        width: auto;
        display: inline-flex;
    }

    .carousel-image-wrapper {
        border-radius: 0 0 16px 16px;
        min-height: 250px;
    }

    .carousel-main-image {
        height: 250px;
        min-height: 250px;
        border-radius: 0 0 16px 16px;
        object-fit: cover;
    }

    .floating-element {
        display: none;
    }

    .shape {
        display: none;
    }

    #header-carousel .carousel-control-prev,
    #header-carousel .carousel-control-next {
        width: 45px;
        height: 45px;
        margin: 0 0.5rem;
        left: 0.25rem;
        right: 0.25rem;
    }

    #header-carousel .carousel-control-prev-icon,
    #header-carousel .carousel-control-next-icon {
        width: 18px;
        height: 18px;
    }

    .carousel-indicators-custom {
        bottom: 1rem;
    }
}

@media (min-width: 1200px) {
    .carousel .carousel-item .display-1 {
        font-size: 7rem;
    }
}

.page-header {
    background: linear-gradient(135deg, 
        rgba(26, 26, 26, 0.92) 0%, 
        rgba(55, 55, 55, 0.88) 30%,
        rgba(195, 67, 49, 0.25) 60%,
        rgba(26, 26, 26, 0.90) 100%), 
        url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    padding: 6rem 0 5rem;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(195, 67, 49, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(55, 55, 55, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, rgba(55, 55, 55, 0.25) 0%, rgba(0, 0, 0, 0.45) 100%);
    z-index: 0;
    animation: subtleShift 20s ease-in-out infinite;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.02) 2px,
            rgba(255, 255, 255, 0.02) 4px
        );
    z-index: 0;
    pointer-events: none;
}

@keyframes subtleShift {
    0%, 100% { 
        background-position: 0% 0%, 100% 100%, 0% 0%;
    }
    50% { 
        background-position: 20% 30%, 80% 70%, 0% 0%;
    }
}

.page-header .bg-white {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(255, 255, 255, 0.95) 100%) !important;
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset,
        0 8px 32px rgba(195, 67, 49, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 24px;
    position: relative;
    z-index: 1;
    padding: 3.5rem 3rem !important;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-header .bg-white::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(195, 67, 49, 0.08) 0%,
        transparent 70%
    );
    animation: rotate 15s linear infinite;
    pointer-events: none;
}

.page-header .bg-white::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 50%,
        rgba(195, 67, 49, 0.05) 100%
    );
    border-radius: 24px;
    pointer-events: none;
    z-index: 0;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.page-header .bg-white > * {
    position: relative;
    z-index: 1;
}

.page-header h1,
.page-header .display-6 {
    font-size: 3.5rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.1em !important;
    color: var(--premium-primary) !important;
    background: linear-gradient(135deg, 
        var(--premium-primary) 0%, 
        var(--premium-secondary) 50%,
        var(--premium-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(195, 67, 49, 0.2);
    margin-bottom: 1.5rem !important;
    position: relative;
    display: inline-block;
    line-height: 1.2 !important;
}

.page-header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--premium-primary) 50%, 
        transparent 100%);
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(195, 67, 49, 0.4);
}

.page-header .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 500;
}

.page-header .breadcrumb-item {
    position: relative;
    padding: 0 0.75rem;
}

.page-header .breadcrumb-item:not(:last-child)::after {
    content: '/';
    position: absolute;
    right: -0.5rem;
    color: rgba(195, 67, 49, 0.4);
    font-weight: 300;
}

.page-header .breadcrumb-item a {
    color: var(--premium-primary);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
}

.page-header .breadcrumb-item a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, 
        var(--premium-primary) 0%, 
        var(--premium-accent) 100%);
    transition: transform 0.3s ease;
    border-radius: 1px;
}

.page-header .breadcrumb-item a:hover {
    color: var(--premium-accent);
    background: rgba(195, 67, 49, 0.08);
    transform: translateY(-2px);
}

.page-header .breadcrumb-item a:hover::before {
    transform: translateX(-50%) scaleX(1);
}

.page-header .breadcrumb-item.active {
    color: var(--premium-secondary);
    font-weight: 600;
}

@media (max-width: 991.98px) {
    .page-header {
        padding: 4rem 0 3.5rem;
    }
    
    .page-header .bg-white {
        padding: 2.5rem 2rem !important;
        border-radius: 20px;
    }
    
    .page-header h1,
    .page-header .display-6 {
        font-size: 2.5rem !important;
    }
}

@media (max-width: 767.98px) {
    .page-header {
        padding: 3rem 0 2.5rem;
    }
    
    .page-header .bg-white {
        padding: 2rem 1.5rem !important;
        border-radius: 18px;
    }
    
    .page-header h1,
    .page-header .display-6 {
        font-size: 2rem !important;
        letter-spacing: 0.05em !important;
    }
    
    .page-header h1::after,
    .page-header .display-6::after {
        width: 60px;
        height: 3px;
    }
}


/*** About ***/
.about-img {
    position: relative;
    padding-left: 45px;
}

.about-img img {
    border-radius: 10px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease;
}

.about-img:hover img {
    transform: scale(1.02);
}

.about-img::before {
    position: absolute;
    content: "";
    width: 200px;
    height: 300px;
    top: 0;
    left: 0;
    border: 5px solid var(--premium-primary);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(55, 55, 55, 0.4), 0 0 20px rgba(195, 67, 49, 0.2);
    animation: animateUpDown 3s ease-in-out infinite;
    z-index: -1;
    background: linear-gradient(135deg, rgba(55, 55, 55, 0.1) 0%, rgba(195, 67, 49, 0.05) 100%);
}

@keyframes animateUpDown { 
    0% { 
        top: -25px;
    }
    50% { 
        top: -45px;
    }
    100% { 
        top: -25px;
    } 
}


/*** Service ***/
.service {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.service .service-item {
    position: relative;
    margin-top: 0;
}

.service .service-inner {
    position: relative;
    height: 100%;
    margin-top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.service .service-inner:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service .service-inner::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    left: 0;
    bottom: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, var(--premium-primary) 0%, var(--premium-secondary) 100%);
    opacity: 0.95;
}

.service .service-inner:hover::before {
    height: 100%;
    top: 0;
}

.service .service-media {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.service .service-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.55) 100%);
    opacity: 0.6;
    transition: opacity 0.4s ease;
}

.service .service-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service .service-item:hover .service-media img {
    transform: scale(1.08);
}

.service .service-item:hover .service-media::after {
    opacity: 0.8;
}

.service .service-tag {
    position: absolute;
    bottom: 18px;
    left: 18px;
    padding: 0.45rem 1.15rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.service .service-body {
    flex: 1;
    padding: 1.75rem;
}

.service .service-item * {
    position: relative;
    transition: all 0.4s ease;
    z-index: 1;
}

.service .service-item:hover h5,
.service .service-item:hover p {
    color: var(--bs-white);
}

.service .service-item:hover a {
    padding-left: 45px !important;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}


/*** Team ***/
.team {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.team .team-item {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team .team-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.team .team-item img {
    transition: transform 0.5s ease;
}

.team .team-item:hover img {
    transform: scale(1.1);
}

.team .team-item .team-social {
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, rgba(55, 55, 55, 0.95) 0%, rgba(195, 67, 49, 0.9) 100%);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team .team-item:hover .team-social {
    width: 100%;
    left: 0;
}

.team .team-item .team-social .btn {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s ease 0.1s;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.team .team-item:hover .team-social .btn {
    opacity: 1;
    transform: scale(1);
}

.team .team-item:hover .team-social .btn:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}


/*** Contact ***/
.contact {
    background: linear-gradient(135deg, 
        rgba(26, 26, 26, 0.95) 0%, 
        rgba(55, 55, 55, 0.90) 30%,
        rgba(26, 26, 26, 0.92) 60%,
        rgba(0, 0, 0, 0.88) 100%), 
        url(../img/carousel-3.jpg) center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(195, 67, 49, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(55, 55, 55, 0.25) 0%, transparent 50%),
        linear-gradient(135deg, rgba(55, 55, 55, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 0;
    animation: contactGradientShift 15s ease-in-out infinite;
}

@keyframes contactGradientShift {
    0%, 100% { 
        background-position: 0% 0%, 100% 100%, 0% 0%;
        opacity: 1;
    }
    50% { 
        background-position: 20% 30%, 80% 70%, 0% 0%;
        opacity: 0.9;
    }
}

.contact::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.015) 2px,
            rgba(255, 255, 255, 0.015) 4px
        );
    z-index: 0;
    pointer-events: none;
}

/* Contact Title & Subtitle */
.contact-title {
    font-size: 2.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    position: relative;
    padding-bottom: 1rem;
}

.contact-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--premium-primary) 0%, 
        var(--premium-accent) 100%);
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(195, 67, 49, 0.6);
}

.contact-subtitle {
    font-size: 1.15rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

/* Contact Info Cards */
.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.75rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        transparent 100%);
    transition: left 0.6s ease;
}

.contact-info-card:hover::before {
    left: 100%;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(195, 67, 49, 0.4);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(195, 67, 49, 0.2) inset,
        0 8px 25px rgba(195, 67, 49, 0.2);
}

.contact-icon-wrapper {
    flex-shrink: 0;
}

.contact-icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, 
        var(--premium-primary) 0%, 
        var(--premium-primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 8px 25px rgba(195, 67, 49, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-icon-circle::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.4s ease, height 0.4s ease;
}

.contact-info-card:hover .contact-icon-circle::before {
    width: 120%;
    height: 120%;
}

.contact-icon-circle i {
    font-size: 1.75rem;
    color: #ffffff;
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.contact-info-card:hover .contact-icon-circle {
    transform: rotate(5deg) scale(1.05);
    box-shadow: 
        0 12px 35px rgba(195, 67, 49, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.contact-info-card:hover .contact-icon-circle i {
    transform: scale(1.1);
}

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

.contact-info-label {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

.contact-info-link {
    display: inline-block;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 2px;
}

.contact-info-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        var(--premium-primary) 0%, 
        var(--premium-accent) 100%);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.contact-info-link:hover {
    color: #ffffff;
    transform: translateX(3px);
}

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

/* Premium Form Card */
.contact-form-wrapper {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(255, 255, 255, 0.95) 100%) !important;
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset,
        0 10px 40px rgba(195, 67, 49, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(195, 67, 49, 0.08) 0%,
        transparent 70%
    );
    animation: formRotate 20s linear infinite;
    pointer-events: none;
}

@keyframes formRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.contact-form-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 50%,
        rgba(195, 67, 49, 0.05) 100%
    );
    border-radius: 24px;
    pointer-events: none;
    z-index: 0;
}

.form-header {
    position: relative;
    z-index: 1;
}

.form-title {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--premium-primary);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.form-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--premium-primary) 0%, 
        var(--premium-accent) 100%);
    border-radius: 2px;
}

.form-subtitle {
    color: rgba(55, 55, 55, 0.7);
    font-size: 0.95rem;
    margin: 0;
    font-weight: 400;
}

.premium-contact-form {
    position: relative;
    z-index: 1;
}

.premium-form-group {
    position: relative;
    margin-bottom: 0;
}

.premium-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--premium-secondary);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.premium-input {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    color: var(--premium-secondary);
    background: rgba(248, 249, 250, 0.8);
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
    position: relative;
    z-index: 1;
}

.premium-input::placeholder {
    color: rgba(55, 55, 55, 0.4);
    font-weight: 400;
}

.premium-input:focus {
    outline: none;
    background: #ffffff;
    border-color: var(--premium-primary);
    box-shadow: 
        0 0 0 4px rgba(195, 67, 49, 0.1),
        0 8px 25px rgba(195, 67, 49, 0.15);
    transform: translateY(-2px);
}

.premium-input:focus + .form-line {
    width: 100%;
    opacity: 1;
}

.premium-textarea {
    min-height: 130px;
    resize: vertical;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

.form-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        var(--premium-primary) 0%, 
        var(--premium-accent) 100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1px;
    opacity: 0;
    z-index: 2;
}

.premium-input:focus ~ .form-line {
    width: calc(100% - 2.5rem);
    opacity: 1;
}

.premium-submit-btn {
    padding: 1.25rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 25px rgba(195, 67, 49, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.premium-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.2) 50%, 
        transparent 100%);
    transition: left 0.6s ease;
}

.premium-submit-btn:hover::before {
    left: 100%;
}

.premium-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 35px rgba(195, 67, 49, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.btn-text {
    position: relative;
    z-index: 1;
}

.btn-icon {
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.premium-submit-btn:hover .btn-icon {
    transform: translateX(5px);
}

/* Success Popup */
.success-popup {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: transparent;
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.success-popup.active {
    opacity: 1;
    visibility: visible;
}

.success-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 7, 18, 0.65);
    backdrop-filter: blur(8px);
    cursor: pointer;
}

.success-popup-card {
    position: relative;
    width: min(420px, 100%);
    padding: 2.25rem 2rem;
    border-radius: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #fdf4f2 100%);
    box-shadow:
        0 25px 60px rgba(18, 23, 39, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.3) inset;
    overflow: hidden;
    transform: translateY(20px) scale(0.98);
    opacity: 0;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
    z-index: 1;
}

.success-popup.active .success-popup-card {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.success-popup-glow {
    position: absolute;
    top: -40%;
    right: -30%;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, rgba(195, 67, 49, 0.45), transparent 60%);
    filter: blur(12px);
    opacity: 0.8;
    pointer-events: none;
}

.success-popup-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #fff;
    background: linear-gradient(135deg, var(--premium-primary), var(--premium-accent));
    box-shadow:
        0 15px 30px rgba(195, 67, 49, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.success-popup-title {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 1.1rem;
    color: var(--premium-secondary);
    margin-bottom: 0.75rem;
}

.success-popup-text {
    text-align: center;
    color: rgba(33, 37, 41, 0.85);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.success-popup-cta {
    gap: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.success-popup-close {
    position: absolute;
    top: 1.1rem;
    right: 1.1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.05);
    color: var(--premium-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
    z-index: 2;
}

.success-popup-close:hover {
    background: rgba(195, 67, 49, 0.15);
    color: var(--premium-primary);
}

.success-popup-card::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 121, 97, 0.15);
    filter: blur(20px);
    pointer-events: none;
}

.success-popup .btn i {
    transition: transform 0.3s ease;
}

.success-popup .btn:hover i {
    transform: translateX(4px);
}

.success-popup-card:focus {
    outline: none;
    box-shadow:
        0 25px 60px rgba(18, 23, 39, 0.25),
        0 0 0 2px rgba(195, 67, 49, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.3) inset;
}

/* Map Wrapper */
.map-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.premium-map {
    width: 100%;
    min-height: 500px;
    border: none;
    display: block;
    filter: grayscale(20%) brightness(0.95);
    transition: filter 0.4s ease;
}

.map-wrapper:hover .premium-map {
    filter: grayscale(0%) brightness(1);
}

.contact .bg-white {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    position: relative;
    z-index: 1;
}

.contact .form-control {
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact .form-control:focus {
    border-color: var(--premium-primary);
    box-shadow: 0 0 0 0.2rem rgba(195, 67, 49, 0.2);
    transform: translateY(-2px);
}

@media (min-width: 992px) {
    .contact-info::after {
        position: absolute;
        content: "";
        width: 0px;
        height: 100%;
        top: 0;
        left: 50%;
        border-left: 1px dashed rgba(255, 255, 255, .2);
    }
}

@media (max-width: 991.98px) {
    .contact-info::after {
        position: absolute;
        content: "";
        width: 100%;
        height: 0px;
        top: 50%;
        left: 0;
        border-top: 1px dashed rgba(255, 255, 255, .2);
    }
}


/*** Footer ***/
.footer {
    background: linear-gradient(135deg, var(--premium-dark) 0%, var(--premium-dark-light) 100%) !important;
    position: relative;
    margin-bottom: 0;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--premium-primary) 0%, var(--premium-accent) 100%);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: rgba(255, 255, 255, 0.8);
    font-weight: normal;
    text-transform: capitalize;
    transition: all 0.3s ease;
    position: relative;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--premium-accent);
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.footer .btn.btn-link:hover {
    color: var(--premium-accent);
    letter-spacing: 1px;
    box-shadow: none;
    transform: translateX(5px);
}

.footer .btn.btn-link:hover::before {
    transform: translateX(-3px);
}

.footer img {
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.footer img:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(55, 55, 55, 0.4);
}

.premium-footer {
    background: radial-gradient(circle at 30% 20%, rgba(195, 67, 49, 0.25), transparent 45%), radial-gradient(circle at 70% 0%, rgba(26, 35, 126, 0.35), transparent 40%), linear-gradient(135deg, #050608 0%, #0d1220 40%, #050608 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.premium-footer::after {
    content: '';
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 30px;
    pointer-events: none;
}

.footer-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 1.5rem;
    height: 100%;
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    position: relative;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.footer-card::after {
    content: '';
    position: absolute;
    inset: 10px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    pointer-events: none;
}

.footer-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.45);
}

.footer-logo-wrap {
    display: flex;
    align-items: center;
}

.footer-logo {
    height: 56px;
    width: 56px;
    object-fit: contain;
    filter: brightness(1.2);
}

.footer-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--premium-accent) 0%, var(--premium-primary) 100%);
    border-radius: 999px;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact-item {
    display: flex;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.footer-contact-item i {
    color: var(--premium-accent);
    margin-top: 4px;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.footer-contact-item a:hover {
    color: var(--premium-accent);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    transition: all 0.3s ease;
}

.social-circle:hover {
    background: linear-gradient(135deg, var(--premium-primary) 0%, var(--premium-accent) 100%);
    border-color: transparent;
    transform: translateY(-3px);
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.75);
}

.footer-hours li:last-child {
    border-bottom: none;
}

.footer-hours strong {
    color: #fff;
    font-weight: 600;
}

.footer-highlight {
    padding: 1.5rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(135deg, rgba(195, 67, 49, 0.2), rgba(26, 35, 126, 0.25));
    color: #fff;
    box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.05);
}

.footer-highlight small {
    color: rgba(255, 255, 255, 0.8);
}

.footer-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.footer-gallery-grid img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.footer-gallery-grid img:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.4);
}

.badge.bg-gradient-primary {
    background: linear-gradient(135deg, var(--premium-primary) 0%, var(--premium-accent) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 0.9rem;
    letter-spacing: 0.08em;
}

.footer-cta-bar {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 2.5rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.footer-cta-bar .btn {
    border-width: 2px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/*** Responsive Layout Adjustments ***/
@media (max-width: 1399.98px) {
    #header-carousel .carousel-item {
        height: 560px;
    }

    .carousel-headline {
        font-size: 3.1rem;
    }
}

@media (max-width: 1199.98px) {
    #header-carousel .carousel-item {
        height: 520px;
    }

    .carousel-left-section {
        padding: 3rem 2.25rem;
    }
    
    .carousel-right-section {
        padding: 0;
    }

    .carousel-content-wrapper {
        max-width: 520px;
    }

    .carousel-headline {
        font-size: 2.7rem;
    }

    .carousel-description {
        font-size: 1rem;
    }

    .about-img {
        padding-left: 25px;
    }

    .about-img::before {
        width: 140px;
        height: 220px;
    }

    .highlight-item {
        padding: 2.25rem !important;
    }
}

@media (max-width: 991.98px) {
    #header-carousel {
        margin: 1.25rem 0;
        border-radius: 18px;
    }

    #header-carousel .carousel-item {
        height: auto;
        min-height: auto;
    }

    .carousel-split-container {
        flex-direction: column;
        display: flex;
        gap: 0;
    }

    .carousel-left-section,
    .carousel-right-section {
        flex: 0 0 auto;
        display: flex;
    }

    .carousel-left-section {
        border-radius: 18px 18px 0 0;
        padding: 3rem 2.5rem;
    }

    .carousel-right-section {
        border-radius: 0 0 18px 18px;
        padding: 0;
    }

    .carousel-content-wrapper {
        text-align: center;
        max-width: 100%;
    }

    .carousel-headline {
        font-size: 2.25rem;
        margin-bottom: 1.5rem;
    }

    .carousel-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
        line-height: 1.7;
    }

    .carousel-main-image {
        height: 300px;
        min-height: 300px;
        border-radius: 0 0 18px 18px;
        object-fit: cover;
    }
    
    .carousel-image-wrapper {
        border-radius: 0 0 18px 18px;
        min-height: 300px;
    }

    .about-img {
        padding-left: 0;
        margin-bottom: 2rem;
    }

    .about-img::before {
        display: none;
    }

    .service .service-inner {
        margin-top: 0;
    }

    .service .service-media {
        height: 200px;
    }

    .highlight-item {
        padding: 2rem !important;
    }

    .team .team-item {
        margin-bottom: 1.5rem;
    }

    .contact .bg-white {
        padding: 2rem;
    }

    .contact-title {
        font-size: 2rem;
    }

    .contact-subtitle {
        font-size: 1rem;
    }

    .contact-info-card {
        padding: 1.5rem;
        gap: 1rem;
    }

    .contact-icon-circle {
        width: 56px;
        height: 56px;
    }

    .contact-icon-circle i {
        font-size: 1.5rem;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }

    .form-title {
        font-size: 1.75rem;
    }

    .premium-input {
        padding: 0.875rem 1rem;
    }

    .footer-cta-bar {
        flex-direction: column;
        text-align: center;
    }

    .footer-cta-bar .btn {
        width: 100%;
    }

    .footer-card {
        padding: 1.75rem;
    }
}

@media (max-width: 767.98px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
        min-height: 100vh;
        min-height: -webkit-fill-available;
    }
    
    .container-fluid {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .container {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    body {
        font-size: 0.98rem;
        position: relative;
        background-color: #ffffff;
    }
    
    /* Ensure spinner doesn't block content on mobile */
    #spinner {
        transition: opacity .2s ease-out, visibility 0s linear .2s;
    }
    
    #spinner.show {
        transition: opacity .2s ease-out, visibility 0s linear 0s;
    }
    
    /* Ensure content is visible from start on mobile */
    .navbar-shell,
    .container-fluid,
    .container {
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Prevent white screen on initial load */
    body > *:not(#spinner) {
        opacity: 1;
        visibility: visible;
    }

    /* Mobile navbar fixes */
    .navbar-shell {
        position: sticky;
        top: 0;
        z-index: 1020;
    }

    .sleek-navbar {
        min-height: 70px;
        padding: 0.5rem 0;
    }

    .navbar-brand.d-lg-none .navbar-logo {
        height: 45px;
        max-width: 130px;
    }

    .navbar-toggler {
        padding: 0.4rem 0.6rem;
        font-size: 1.1rem;
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    }

    .navbar-collapse {
        margin-top: 0.75rem;
        padding-top: 0.75rem;
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px 0;
        font-size: 13px;
    }

    .carousel-headline {
        font-size: 2.2rem;
    }

    .carousel-description {
        font-size: 0.95rem;
    }

    .carousel-left-section {
        padding: 2rem 1.5rem;
    }
    
    .carousel-right-section {
        padding: 0;
    }

    .carousel-main-image {
        height: 260px;
        border-radius: 0 0 20px 20px;
    }
    
    .carousel-image-wrapper {
        border-radius: 0 0 20px 20px;
    }

    .carousel-content-wrapper {
        text-align: center;
    }

    .about-img {
        margin-bottom: 1.5rem;
    }

    .display-5,
    h1.display-5 {
        font-size: 2rem !important;
    }

    .display-6,
    h1.display-6 {
        font-size: 1.75rem !important;
    }

    .highlight-item {
        text-align: center;
        padding: 1.75rem !important;
    }

    .highlight-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .service .service-text {
        padding: 1.5rem 1rem 0 !important;
        text-align: center;
    }

    .team .team-item {
        text-align: center;
    }

    .contact .bg-white {
        padding: 1.5rem;
    }

    .contact-title {
        font-size: 1.75rem;
        padding-bottom: 0.75rem;
    }

    .contact-title::after {
        width: 60px;
        height: 3px;
    }

    .contact-subtitle {
        font-size: 0.95rem;
    }

    .contact-info-card {
        padding: 1.25rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .contact-icon-circle {
        width: 52px;
        height: 52px;
        margin: 0 auto;
    }

    .contact-icon-circle i {
        font-size: 1.4rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .form-title {
        font-size: 1.5rem;
    }

    .form-subtitle {
        font-size: 0.875rem;
    }

    .premium-input {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }

    .premium-submit-btn {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }

    .map-wrapper {
        border-radius: 16px;
    }

    .premium-map {
        min-height: 400px;
    }

    .footer-logo-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .footer-contact-item {
        flex-direction: column;
    }
}

@media (max-width: 575.98px) {
    #header-carousel {
        border-radius: 12px;
        margin: 0.75rem 0;
    }

    .carousel-left-section {
        border-radius: 12px 12px 0 0;
        padding: 2rem 1.25rem;
    }
    
    .carousel-right-section {
        border-radius: 0 0 12px 12px;
        padding: 0;
    }

    .carousel-headline {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        line-height: 1.25;
    }

    .carousel-description {
        font-size: 0.85rem;
        margin-bottom: 1.25rem;
        padding: 0;
        line-height: 1.5;
    }

    .carousel-main-image {
        height: 220px;
        min-height: 220px;
        border-radius: 0 0 12px 12px;
    }
    
    .carousel-image-wrapper {
        border-radius: 0 0 12px 12px;
        min-height: 220px;
    }

    .carousel-content-wrapper {
        padding: 0;
    }

    #header-carousel .carousel-control-prev,
    #header-carousel .carousel-control-next {
        width: 40px;
        height: 40px;
        margin: 0 0.25rem;
    }

    #header-carousel .carousel-control-prev-icon,
    #header-carousel .carousel-control-next-icon {
        width: 16px;
        height: 16px;
    }

    .mt-6,
    .mb-6 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }

    .pt-6,
    .pb-6 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .service .service-inner {
        margin-top: 0;
    }

    .service .service-item a.btn {
        width: 100%;
        justify-content: center;
    }

    .footer-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-cta-bar {
        padding: 1.25rem;
    }

    .footer-cta-bar .btn {
        width: 100%;
    }

    .social-media-card {
        gap: 0.5rem;
    }

    .social-btn {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
        border-radius: 8px;
    }
}

.copyright {
    background: linear-gradient(135deg, #111111 0%, var(--premium-dark) 100%);
    border-top: 1px solid rgba(195, 67, 49, 0.2);
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Override Bootstrap py-4 padding on copyright */
.copyright.py-4 {
    padding-top: 1rem !important;
    padding-bottom: 0 !important;
}

.copyright .container {
    margin-bottom: 0;
    padding-bottom: 0;
}

.copyright .container-fluid {
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Remove any margin from back-to-top button that might cause spacing */
.back-to-top {
    margin-bottom: 0;
    position: fixed;
    bottom: 30px;
    right: 30px;
}

.copyright a {
    color: var(--bs-white);
    transition: all 0.3s ease;
}

.copyright a:hover {
    color: var(--premium-accent);
    text-shadow: 0 0 10px rgba(195, 67, 49, 0.6);
}

/* Premium Topbar */
.container-fluid.bg-primary {
    background: linear-gradient(135deg, var(--premium-primary) 0%, var(--premium-primary-dark) 100%) !important;
    box-shadow: 0 2px 10px rgba(55, 55, 55, 0.2);
    border-bottom: 2px solid rgba(195, 67, 49, 0.3);
}

/* Premium Border Effect */
.border-primary {
    border-color: var(--premium-primary) !important;
    box-shadow: 0 5px 20px rgba(55, 55, 55, 0.3);
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(55, 55, 55, 0.05) 0%, rgba(195, 67, 49, 0.05) 100%);
}

/* Enhanced Images */
img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Premium Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--premium-primary) 0%, var(--premium-primary-dark) 100%);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--premium-primary-dark) 0%, var(--premium-accent-light) 100%);
}

/* Highlighted Service Items */
.service-highlight {
    position: relative;
    background: linear-gradient(135deg, rgba(195, 67, 49, 0.08) 0%, rgba(195, 67, 49, 0.03) 100%) !important;
    border: 2px solid var(--premium-primary) !important;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(195, 67, 49, 0.25) !important;
    transform: translateY(-2px);
}

.service-highlight::before {
    content: 'Featured';
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--premium-primary) 0%, var(--premium-primary-dark) 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(195, 67, 49, 0.4);
}

.service-highlight li.highlighted-service {
    position: relative;
    padding-left: 25px;
    font-weight: 600;
    color: var(--premium-primary);
}

.service-highlight li.highlighted-service::before {
    content: '★';
    position: absolute;
    left: 0;
    color: var(--premium-primary);
    font-size: 1.1rem;
}

/* Premium Form Controls */
.form-control {
    transition: all 0.3s ease;
    border-radius: 8px;
}

.form-control:focus {
    border-color: var(--premium-primary);
    box-shadow: 0 0 0 0.2rem rgba(195, 67, 49, 0.2);
    transform: translateY(-1px);
}

/* Premium Dropdown */
.dropdown-menu {
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.98);
}

.dropdown-item {
    transition: all 0.3s ease;
    border-radius: 5px;
    margin: 2px 5px;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, rgba(55, 55, 55, 0.1) 0%, rgba(195, 67, 49, 0.05) 100%);
    transform: translateX(5px);
}

/* Premium Breadcrumb */
.breadcrumb {
    background: transparent;
}

.breadcrumb-item a {
    color: var(--premium-primary);
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    text-shadow: 0 0 5px rgba(195, 67, 49, 0.4);
    color: var(--premium-accent);
}

/* Premium Social Buttons */
.btn-square, .btn-sm-square, .btn-lg-square {
    transition: all 0.3s ease;
}

.btn-square:hover, .btn-sm-square:hover, .btn-lg-square:hover {
    transform: translateY(-3px) rotate(5deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Premium Carousel Indicators */
.carousel-indicators [data-bs-target] {
    border-radius: 8px;
    transition: all 0.3s ease;
}

.carousel-indicators [data-bs-target]:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Premium Star Ratings */
.fa-star, .far.fa-star {
    transition: all 0.3s ease;
    color: var(--premium-accent) !important;
}

.fa-star:hover, .far.fa-star:hover {
    transform: scale(1.2) rotate(15deg);
    color: var(--premium-accent-light) !important;
    text-shadow: 0 0 10px rgba(195, 67, 49, 0.6);
}

/* Premium Icon Colors */
.fa-check-square.text-primary,
.fa-users-cog.text-primary,
.fa-tachometer-alt.text-primary,
.fa-map-marker-alt.text-primary,
.fa-phone-alt.text-primary,
.fa-envelope.text-primary,
.fa-envelope-open.text-primary {
    color: var(--premium-primary) !important;
}

/* Premium Highlight Items */
.highlight-item {
    position: relative;
    overflow: hidden;
}

.highlight-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(55, 55, 55, 0.05) 0%, rgba(195, 67, 49, 0.05) 100%);
    transition: left 0.5s ease;
    z-index: 0;
}

.highlight-item:hover::before {
    left: 0;
}

.highlight-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(55, 55, 55, 0.15) !important;
    border-color: rgba(195, 67, 49, 0.2) !important;
}

.highlight-item:hover .highlight-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(55, 55, 55, 0.4) !important;
}

.highlight-item * {
    position: relative;
    z-index: 1;
}

.highlight-icon {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Premium Social Media - Individual Rounded Boxes */
.social-media-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.social-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(55, 55, 55, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(55, 55, 55, 0.5);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2),
                0 0 0 1px rgba(55, 55, 55, 0.3) inset;
}

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

.social-btn:hover::before {
    left: 100%;
}

.social-btn:hover {
    transform: translateY(-4px) scale(1.05);
    background: rgba(26, 26, 26, 0.95);
    border-color: rgba(55, 55, 55, 0.8);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(55, 55, 55, 0.4) inset,
                0 4px 20px rgba(0, 0, 0, 0.2);
    color: #ffffff;
}

.social-btn i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.social-btn:hover i {
    transform: scale(1.15) rotate(5deg);
}

/* Dark hover effect for all social buttons */
.social-btn:nth-child(1):hover,
.social-btn:nth-child(2):hover,
.social-btn:nth-child(3):hover {
    background: rgba(26, 26, 26, 0.95);
    border-color: rgba(55, 55, 55, 0.8);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(55, 55, 55, 0.4) inset,
                0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Social media icons in navbar */
.navbar .social-media-card {
    margin-left: auto;
    padding-left: 1rem;
}

@media (max-width: 991.98px) {
    .navbar .social-media-card {
        margin-left: 0;
        padding-left: 0;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .social-media-card {
        gap: 0.6rem;
    }
    
    .social-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        border-radius: 10px;
    }
}

/* Gallery Styles */
.gallery-item {
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    box-shadow: 0 8px 25px rgba(26, 35, 126, 0.3);
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.gallery-overlay {
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1 !important;
}

/* Partners Slider Styles */
.partners-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
    margin: 0 auto;
}

.partners-slider-track {
    display: flex;
    animation: slidePartners 20s linear infinite;
    width: fit-content;
    gap: 4rem;
}

.partners-slide {
    flex-shrink: 0;
    width: 220px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.partner-logo-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--premium-primary);
}

.partner-logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.4s ease;
}

.partner-logo-wrapper:hover .partner-logo {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Text-only partner names (no logos) */
.partner-text-only {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.partner-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--premium-secondary);
    margin: 0;
    line-height: 1.4;
    letter-spacing: 0.02em;
    transition: all 0.4s ease;
}

.partner-text-only:hover .partner-name {
    color: var(--premium-primary);
    transform: scale(1.05);
}

@keyframes slidePartners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.partners-slider-container:hover .partners-slider-track {
    animation-play-state: paused;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .partners-slide {
        width: 180px;
        height: 100px;
    }
    
    .partner-name {
        font-size: 0.85rem;
    }
    
    .partners-slider-track {
        gap: 3rem;
    }
}

@media (max-width: 767.98px) {
    .partners-slide {
        width: 160px;
        height: 90px;
    }
    
    .partner-logo-wrapper {
        padding: 1rem;
    }
    
    .partner-name {
        font-size: 0.75rem;
    }
    
    .partners-slider-track {
        gap: 2rem;
    }
}