/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: "Open Sans", sans-serif;
    color: #555555;
}

/* Sticky Footer */
body.sticky-footer {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body.sticky-footer main.flex-grow-1 {
    flex: 1;
}

body.sticky-footer footer.mt-auto {
    margin-top: auto;
}

/* Performance optimizations */
* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

/* GPU acceleration for animations */
.hero-logo,
.btn-get-started,
.whatsapp-button,
.back-to-top {
    transform: translateZ(0);
    will-change: transform;
}

/* Optimize video performance */
video {
    object-fit: cover;
    transform: translateZ(0);
}

/* Reduce layout shifts */
.hero-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Optimize font loading */
@font-face {
    font-family: 'Open Sans';
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    font-display: swap;
}

a {
    text-decoration: none;
    color: #F6B850;
}

a:hover {
    color: #f9d496;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", sans-serif;
}

/*--------------------------------------------------------------
  # Back to top button
  --------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: linear-gradient(135deg, #F6B850 0%, #F9D496 100%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 25px rgba(246, 184, 80, 0.3),
        0 4px 12px rgba(246, 184, 80, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.back-to-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.back-to-top:hover {
    background: linear-gradient(135deg, #F9D496 0%, #F6B850 100%);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 
        0 12px 35px rgba(246, 184, 80, 0.4),
        0 6px 20px rgba(246, 184, 80, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.back-to-top:active {
    transform: translateY(0) scale(0.98);
    transition: all 0.1s ease;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
  # WhatsApp button
  --------------------------------------------------------------*/
.whatsapp-button {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 75px;
    bottom: 15px;
    z-index: 996;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    width: auto;
    height: 50px;
    border-radius: 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    box-shadow: 
        0 8px 25px rgba(37, 211, 102, 0.3),
        0 4px 12px rgba(37, 211, 102, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    font-family: "Montserrat", sans-serif;
}

.whatsapp-button i {
    font-size: 22px;
    color: #fff;
    line-height: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.whatsapp-button span {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.5px;
}

.whatsapp-button:hover {
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 
        0 12px 35px rgba(37, 211, 102, 0.4),
        0 6px 20px rgba(37, 211, 102, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.whatsapp-button:active {
    transform: translateY(0) scale(0.98);
    transition: all 0.1s ease;
}

.whatsapp-button.active {
    visibility: visible;
    opacity: 1;
}

/* Premium button animations and effects */
@keyframes pulse-glow {
    0% {
        box-shadow: 
            0 8px 25px rgba(37, 211, 102, 0.3),
            0 4px 12px rgba(37, 211, 102, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 
            0 8px 25px rgba(37, 211, 102, 0.4),
            0 4px 12px rgba(37, 211, 102, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.3),
            0 0 20px rgba(37, 211, 102, 0.3);
    }
    100% {
        box-shadow: 
            0 8px 25px rgba(37, 211, 102, 0.3),
            0 4px 12px rgba(37, 211, 102, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
}

@keyframes pulse-glow-back-to-top {
    0% {
        box-shadow: 
            0 8px 25px rgba(246, 184, 80, 0.3),
            0 4px 12px rgba(246, 184, 80, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 
            0 8px 25px rgba(246, 184, 80, 0.4),
            0 4px 12px rgba(246, 184, 80, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.3),
            0 0 20px rgba(246, 184, 80, 0.3);
    }
    100% {
        box-shadow: 
            0 8px 25px rgba(246, 184, 80, 0.3),
            0 4px 12px rgba(246, 184, 80, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
}

/* Subtle pulse animation for WhatsApp button */
.whatsapp-button.active {
    animation: pulse-glow 3s ease-in-out infinite;
}

/* Subtle pulse animation for back-to-top button */
.back-to-top.active {
    animation: pulse-glow-back-to-top 3s ease-in-out infinite;
}

/* Responsive design for mobile devices */
@media screen and (max-width: 768px) {
    .back-to-top {
        width: 45px;
        height: 45px;
        right: 10px;
        bottom: 10px;
    }
    
    .back-to-top i {
        font-size: 20px;
    }
    
    .whatsapp-button {
        height: 45px;
        padding: 0 16px;
        right: 65px;
        bottom: 10px;
        gap: 8px;
    }
    
    .whatsapp-button i {
        font-size: 20px;
    }
    
    .whatsapp-button span {
        font-size: 13px;
    }
}

@media screen and (max-width: 480px) {
    .whatsapp-button span {
        display: none;
    }
    
    .whatsapp-button {
        width: 45px;
        height: 45px;
        padding: 0;
        border-radius: 50%;
        right: 65px;
        bottom: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .whatsapp-button i {
        font-size: 22px;
        margin: 0;
    }
}

/*--------------------------------------------------------------
  # Disable AOS delay on mobile
  --------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
#header {
    height: 90px;
    transition: all 0.5s;
    z-index: 997;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1f1f1f 100%);
    backdrop-filter: blur(20px);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(246, 184, 80, 0.2);
    /* Initially hide the header */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
}

/* Show header when not in hero section */
#header.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Hide header when over hero section */
#header.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
}

#header .logo h1 {
    font-size: 28px;
    margin: 0;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
}

#header .logo h1 a,
#header .logo h1 a:hover {
    color: #fff;
    text-decoration: none;
}

#header .logo img {
    padding: 0;
    margin: 0;
    max-height: 40px;
}

@media (max-width: 992px) {
    #header {
        height: 70px;
    }
}

.scrolled-offset {
    margin-top: 90px;
}

@media (max-width: 992px) {
    .scrolled-offset {
        margin-top: 70px;
    }
    
    section {
        scroll-margin-top: 90px; /* Reduced margin for mobile */
    }
}

/*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
/**
  * Desktop Navigation 
  */
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-size: 15px;
    color: #ffffff;
    text-transform: uppercase;
    white-space: nowrap;
    transition: 0.3s;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: #F6B850;
    text-shadow: 0 0 8px rgba(246, 184, 80, 0.5);
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.navbar .dropdown ul li {
    min-width: 20px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 600;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: #F6B850;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1640px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}

/**
  * Mobile Navigation 
  */
.mobile-nav-toggle {
    color: #ffffff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    position: relative;
}

.mobile-nav-toggle:hover {
    color: #F6B850;
    text-shadow: 0 0 8px rgba(246, 184, 80, 0.5);
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    transition: all 0.3s ease;
    z-index: 9999;
    display: block !important;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.navbar-mobile .mobile-nav-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.navbar-mobile ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 400px;
    padding: 40px 20px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    list-style: none;
    margin: 0;
    animation: slideInUp 0.4s ease-out;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    display: block;
    padding: 15px 25px;
    font-size: 18px;
    font-weight: 600;
    color: #151515;
    text-decoration: none;
    text-align: center;
    width: 100%;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin: 5px 0;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: #fff;
    background: linear-gradient(135deg, #F6B850 0%, #e8a847 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(246, 184, 80, 0.3);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40%;
}

.navbar-mobile .dropdown > a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.navbar-mobile .dropdown ul {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    width: 100px;
    flex-direction: column;
    align-items: center;
    border-radius: 8px;
}

.navbar-mobile .dropdown ul li {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.navbar-mobile .dropdown ul a {
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 40px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a .flag-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: #F6B850;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}

/* Mobile menu responsive improvements */
@media (max-width: 480px) {
    .navbar-mobile ul {
        width: 95%;
        padding: 30px 15px;
    }
    
    .navbar-mobile a,
    .navbar-mobile a:focus {
        padding: 12px 20px;
        font-size: 16px;
    }
    
    .navbar-mobile .mobile-nav-toggle {
        top: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
    }
}

/*--------------------------------------------------------------
  # Hero Section
  --------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

#hero .video-background {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    z-index: -1;
}

#hero .video-background video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(10px);
}

#hero .overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
    /* Adjust opacity here (0.5 for 50% darkness) */
    z-index: 0;
}

#hero .hero-container {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 0 15px;
}

#hero .hero-logo {
    width: 450px;
    height: auto;
    padding-bottom: 24px;
}

@media (max-width: 768px) {
    #hero .hero-logo {
        max-width: 50%;
    }
}

#hero .hero-subtitle {
    font-size: 26px;
    font-weight: 600;
    margin-top: 30px;
    color: #99A3A4;
}

#hero h1 {
    margin: 0 0 30px 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 36px;
    color: #fff;
    padding-top: 20px;
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 20px;
        line-height: 36px;
    }
}

#hero .btn-get-started {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 8px;
    margin: 20px 10px;
    color: #ffffff;
    background: transparent;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.8);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    min-width: 160px;
}

#hero .btn-get-started::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(246, 184, 80, 0.8) 0%,
            rgba(232, 168, 71, 0.6) 25%,
            rgba(221, 165, 72, 0.4) 50%,
            rgba(246, 184, 80, 0.2) 75%,
            rgba(246, 184, 80, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

#hero .btn-get-started::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    border-radius: 50%;
    z-index: 2;
}

#hero .btn-get-started:hover::before {
    opacity: 1;
}

#hero .btn-get-started:hover::after {
    width: 300px;
    height: 300px;
}

#hero .btn-get-started .btn-text {
    position: relative;
    z-index: 3;
    transition: all 0.4s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

#hero .btn-get-started .btn-icon {
    position: relative;
    z-index: 3;
    font-size: 14px;
    transition: all 0.4s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

#hero .btn-get-started:hover {
    transform: translateY(-4px);
    background: linear-gradient(135deg, rgba(246, 184, 80, 0.7) 0%, rgba(232, 168, 71, 0.6) 100%);
    border-color: rgba(246, 184, 80, 0.8);
    color: #fff;
    box-shadow:
        0 20px 40px rgba(246, 184, 80, 0.3),
        0 8px 16px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-decoration: none;
}

#hero .btn-get-started:hover .btn-text {
    transform: translateY(-1px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

#hero .btn-get-started:hover .btn-icon {
    transform: translateY(2px);
    animation: bounce 1.5s infinite;
}

#hero .btn-get-started:active {
    transform: translateY(-2px);
    transition: all 0.2s ease;
    box-shadow:
        0 12px 24px rgba(246, 184, 80, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(2px);
    }

    40% {
        transform: translateY(-2px);
    }

    60% {
        transform: translateY(-1px);
    }
}

/*--------------------------------------------------------------
  # Premium Instagram Button
  --------------------------------------------------------------*/
.btn-instagram {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #e4405f 0%, #c13584 50%, #833ab4 100%);
    border: 2px solid rgba(228, 64, 95, 0.3);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow:
        0 8px 25px rgba(228, 64, 95, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    min-width: 150px;
}

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

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

.btn-instagram:hover {
    transform: translateY(-3px) scale(1.02);
    background: linear-gradient(135deg, #c13584 0%, #e4405f 50%, #833ab4 100%);
    border-color: rgba(228, 64, 95, 0.6);
    box-shadow:
        0 15px 35px rgba(228, 64, 95, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    color: white;
    text-decoration: none;
}

.btn-instagram:active {
    transform: translateY(-1px) scale(1.01);
    transition: all 0.2s ease;
}

.btn-instagram i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.btn-instagram:hover i {
    transform: scale(1.1);
}

/* Responsive Instagram Button */
@media (max-width: 768px) {
    .btn-instagram {
        padding: 10px 20px;
        font-size: 12px;
        min-width: 130px;
    }

    .btn-instagram i {
        font-size: 14px;
    }
}

/*--------------------------------------------------------------
  # Premium Cookie Accept Button
  --------------------------------------------------------------*/
.acceptcookies {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #F6B850 0%, #e8a847 50%, #dda548 100%);
    border: 2px solid rgba(246, 184, 80, 0.3);
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow:
        0 4px 15px rgba(246, 184, 80, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

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

.acceptcookies:hover::before {
    left: 100%;
}

.acceptcookies:hover {
    transform: translateY(-2px) scale(1.02);
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 50%, #e9ecef 100%);
    color: #F6B850;
    border-color: rgba(246, 184, 80, 0.6);
    box-shadow:
        0 8px 25px rgba(246, 184, 80, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/*--------------------------------------------------------------
  # General Premium Button Styles
  --------------------------------------------------------------*/
.btn {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.btn-primary {
    background: linear-gradient(135deg, #F6B850 0%, #e8a847 50%, #dda548 100%);
    border: 2px solid rgba(246, 184, 80, 0.3);
    color: #fff;
    box-shadow:
        0 4px 15px rgba(246, 184, 80, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 50%, #e9ecef 100%);
    color: #F6B850;
    border-color: rgba(246, 184, 80, 0.6);
    box-shadow:
        0 8px 25px rgba(246, 184, 80, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 12px;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

/* Animated Gradient Keyframes */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes gradientFlow {
    0% {
        transform: translateX(-50%) translateY(-50%) rotate(0deg);
    }

    100% {
        transform: translateX(-50%) translateY(-50%) rotate(360deg);
    }
}

@keyframes radialPulse {
    0% {
        transform: scale(1) rotate(0deg);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.2) rotate(180deg);
        opacity: 0.1;
    }

    100% {
        transform: scale(1) rotate(360deg);
        opacity: 0.3;
    }
}

@media (min-width: 1024px) {
    #hero {
        background-attachment: fixed;
    }
}

/*--------------------------------------------------------------
  # Sections General
  --------------------------------------------------------------*/
section {
    padding: 60px 0;
    overflow: hidden;
    position: relative;
    scroll-margin-top: 110px; /* Ensure proper spacing when scrolled to */
}

.section-bg {
    background: linear-gradient(135deg,
            rgba(230, 232, 235, 0.95) 0%,
            rgba(220, 224, 230, 0.9) 25%,
            rgba(210, 216, 225, 0.85) 50%,
            rgba(220, 224, 230, 0.9) 75%,
            rgba(230, 232, 235, 0.95) 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease-in-out infinite;
    backdrop-filter: blur(10px);
    position: relative;
}

.section-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(246, 184, 80, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(246, 184, 80, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(246, 184, 80, 0.02) 0%, transparent 50%);
    animation: radialPulse 12s ease-in-out infinite;
    pointer-events: none;
}

.section-title {
    text-align: center;
    padding-bottom: 00px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
    padding-bottom: 0;
    color: #151515;
}

.section-title p {
    margin-bottom: 0;
    font-weight: 400;
    color: #6e6e6e;
}

/*--------------------------------------------------------------
  # About Us
  --------------------------------------------------------------*/
.about .image {
    padding: 2px;
    border-radius: 15px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg,
            rgba(240, 242, 245, 0.1) 0%,
            rgba(220, 225, 230, 0.05) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about .content h3 {
    padding-bottom: 25px;
    font-weight: 400;
    font-size: 26px;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    padding-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.about .content ul i {
    font-size: 24px;
    padding: 2px 6px 0 0;
    color: #F6B850;
}

.about .content p {
    margin-bottom: 20;
    text-align: justify;
}

/*--------------------------------------------------------------
  # Services
  --------------------------------------------------------------*/
.services {
    padding: 60px 0;
    scroll-margin-top: 110px; /* Ensure proper spacing when scrolled to */
}

.services .service-item {
    position: relative;
    padding: 40px;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.services .service-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Adjust opacity as needed */
    transition: opacity 0.3s ease;
    opacity: 0;
    /* Initially hidden */
}

.services .service-item:hover::before {
    opacity: 1;
    /* Show overlay on hover */
}

.services .service-item .service-title {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 75%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
    /* Adjust the values as needed */
    z-index: 1;
    /* Ensure text is above the overlay */
}

.services .service-item h3.service-title {
    font-size: 32px;
    /* Adjust the value as needed */
}

.services .service-item .service-description {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 75%;
    transform: translate(-50%, -50%);
    color: #fff;
    z-index: 1;
    /* Ensure text is above the overlay */
}

.services .service-item .service-description {
    display: none;
    /* Initially hide the description */
}

.services .service-item:hover .service-description {
    display: block;
    /* Display the description on hover */
}

.services .service-item:hover .service-title {
    display: none;
    /* Hide the title on hover */
}

.services .service-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 8px 16px rgba(246, 184, 80, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(246, 184, 80, 0.3);
}

/* Individual background images for each service-item */
.services .col-lg-4:nth-child(1) .service-item {
    background-image: url('../img/services/1.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.services .col-lg-4:nth-child(2) .service-item {
    background-image: url('../img/services/2.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.services .col-lg-4:nth-child(3) .service-item {
    background-image: url('../img/services/3.png');
}

.services .col-lg-4:nth-child(4) .service-item {
    background-image: url('../img/services/4.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.services .col-lg-4:nth-child(5) .service-item {
    background-image: url('../img/services/5.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.services .col-lg-4:nth-child(6) .service-item {
    background-image: url('../img/services/6.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

/*--------------------------------------------------------------
  # Portfolio
  --------------------------------------------------------------*/
.portfolio {
    padding: 60px 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(250, 250, 250, 0.9) 25%,
            rgba(245, 245, 245, 0.85) 50%,
            rgba(250, 250, 250, 0.9) 75%,
            rgba(255, 255, 255, 0.95) 100%);
    background-size: 200% 200%;
    animation: gradientShift 12s ease-in-out infinite;
    backdrop-filter: blur(10px);
    position: relative;
    box-shadow:
        inset 0 20px 40px rgba(0, 0, 0, 0.1),
        inset 0 -20px 40px rgba(0, 0, 0, 0.1);
}

.portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    animation: radialPulse 18s ease-in-out infinite;
    pointer-events: none;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin: 3rem 0;
    position: relative;
    z-index: 2;
}

.portfolio-item {
    position: relative;
    background: linear-gradient(135deg,
            rgba(240, 242, 245, 0.95) 0%,
            rgba(230, 235, 240, 0.9) 100%);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    overflow: hidden;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    aspect-ratio: 4/3;
}

.portfolio-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 8px 16px rgba(246, 184, 80, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    border-radius: 0px;
}

.portfolio-item:hover img {
    transform: scale(1.05);
    filter: brightness(1.1) contrast(1.1);
}

/* Service Split Items with Modern Dark Backgrounds and Staggered Layout */
.service-split-item:nth-child(1) {
    background: linear-gradient(135deg,
            rgba(35, 35, 35, 0.95) 0%,
            rgba(45, 45, 45, 0.9) 50%,
            rgba(35, 35, 35, 0.95) 100%);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 20px;
    margin-left: -120px;
    margin-right: 120px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(52, 152, 219, 0.2);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    color: #ffffff;
    position: relative;
    overflow: hidden;
    z-index: 3;
}

.service-split-item:nth-child(1)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(52, 152, 219, 0.1) 0%,
            rgba(41, 128, 185, 0.05) 50%,
            rgba(52, 152, 219, 0.1) 100%);
    pointer-events: none;
    z-index: 1;
}

.service-split-item:nth-child(1) h3,
.service-split-item:nth-child(1) p,
.service-split-item:nth-child(1) li {
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.service-split-item:nth-child(2) {
    background: linear-gradient(135deg,
            rgba(35, 35, 35, 0.95) 0%,
            rgba(45, 45, 45, 0.9) 50%,
            rgba(35, 35, 35, 0.95) 100%);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 20px;
    margin-left: 120px;
    margin-right: -120px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(52, 152, 219, 0.2);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    color: #ffffff;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.service-split-item:nth-child(2)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(52, 152, 219, 0.1) 0%,
            rgba(41, 128, 185, 0.05) 50%,
            rgba(52, 152, 219, 0.1) 100%);
    pointer-events: none;
    z-index: 1;
}

.service-split-item:nth-child(2) h3,
.service-split-item:nth-child(2) p,
.service-split-item:nth-child(2) li {
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.service-split-item:nth-child(3) {
    background: linear-gradient(135deg,
            rgba(35, 35, 35, 0.95) 0%,
            rgba(45, 45, 45, 0.9) 50%,
            rgba(35, 35, 35, 0.95) 100%);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 20px;
    margin-left: -120px;
    margin-right: 120px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(52, 152, 219, 0.2);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    color: #ffffff;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-split-item:nth-child(3)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(52, 152, 219, 0.1) 0%,
            rgba(41, 128, 185, 0.05) 50%,
            rgba(52, 152, 219, 0.1) 100%);
    pointer-events: none;
    z-index: 1;
}

.service-split-item:nth-child(3) h3,
.service-split-item:nth-child(3) p,
.service-split-item:nth-child(3) li {
    color: #ffffff;
    position: relative;
    z-index: 2;
}

/* Responsive adjustments for staggered layout */
@media (max-width: 1200px) {
    .service-split-item:nth-child(1) {
        margin-left: -40px;
        margin-right: 40px;
    }

    .service-split-item:nth-child(2) {
        margin-left: 40px;
        margin-right: -40px;
    }

    .service-split-item:nth-child(3) {
        margin-left: -40px;
        margin-right: 40px;
    }
}

@media (max-width: 768px) {

    .service-split-item:nth-child(1),
    .service-split-item:nth-child(2),
    .service-split-item:nth-child(3) {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 30px;
        z-index: 1;
    }
}

/* Scroll-triggered gradient effects */
.services .service-item.scroll-animate {
    background: linear-gradient(135deg,
            rgba(240, 242, 245, 0.95) 0%,
            rgba(230, 235, 240, 0.9) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(246, 184, 80, 0.2);
    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.12),
        0 4px 8px rgba(246, 184, 80, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.contact .info.scroll-animate,
.contact .php-email-form.scroll-animate {
    background: linear-gradient(135deg,
            rgba(240, 242, 245, 0.95) 0%,
            rgba(230, 235, 240, 0.9) 100%);
    border: 1px solid rgba(246, 184, 80, 0.2);
    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.12),
        0 4px 8px rgba(246, 184, 80, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/*--------------------------------------------------------------
  # Contact
  --------------------------------------------------------------*/
.contact .info {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(240, 242, 245, 0.95) 0%,
            rgba(230, 235, 240, 0.9) 100%);
    backdrop-filter: blur(20px);
    padding: 20px;
    border-radius: 15px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact .section-title {
    padding-bottom: 24px;
}

.contact .info i {
    font-size: 20px;
    color: #fff;
    float: left;
    width: 44px;
    height: 44px;
    background: #F6B850;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

.contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #151515;
}

.contact .info p {
    padding: 0 0 0 60px;
    margin-bottom: 0;
    font-size: 14px;
    color: #484848;
}

.contact .info .email,
.contact .info .phone {
    margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
    background: #dda548;
    color: #fff;
}

.contact .php-email-form {
    width: 100%;
    background: linear-gradient(135deg,
            rgba(240, 242, 245, 0.95) 0%,
            rgba(230, 235, 240, 0.9) 100%);
    backdrop-filter: blur(20px);
    padding: 20px;
    border-radius: 15px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact .php-email-form .form-group {
    padding-bottom: 8px;
}

.contact .php-email-form .error-message {
    display: none;
    color: #000;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .error-message br+br {
    margin-top: 25px;
}

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #F9D496;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #F9D496;
    border-top-color: #eee;
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
}

.contact .php-email-form input {
    height: 44px;
}

.contact .php-email-form textarea {
    padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #F6B850 0%, #e8a847 50%, #dda548 100%);
    border: 2px solid rgba(246, 184, 80, 0.3);
    padding: 14px 32px;
    color: #fff;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 6px 20px rgba(246, 184, 80, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    min-width: 160px;
}

.contact .php-email-form button[type=submit]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.contact .php-email-form button[type=submit]:hover::before {
    left: 100%;
}

.contact .php-email-form button[type=submit]:hover {
    transform: translateY(-2px) scale(1.02);
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 50%, #e9ecef 100%);
    color: #F6B850;
    border-color: rgba(246, 184, 80, 0.6);
    box-shadow:
        0 12px 30px rgba(246, 184, 80, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.contact .php-email-form button[type=submit]:active {
    transform: translateY(-1px) scale(1.01);
    transition: all 0.2s ease;
}

.contact .captcha-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    /* Optional: Adjust as needed */
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

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

/*--------------------------------------------------------------
  # Breadcrumbs
  --------------------------------------------------------------*/
.breadcrumbs {
    padding: 40px 0;
}

.breadcrumbs h2 {
    font-size: 26px;
    font-weight: 550;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 15px;
}

.breadcrumbs ol li+li {
    padding-left: 10px;
}

.breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #2f2f2f;
    content: "/";
}

@media (max-width: 768px) {
    .breadcrumbs .d-flex {
        display: block !important;
    }

    .breadcrumbs ol {
        display: block;
    }

    .breadcrumbs ol li {
        display: inline-block;
    }
}

/*--------------------------------------------------------------
  # Language Selector
  --------------------------------------------------------------*/

.flag-icon-background,
.flag-icon {
    background-size: contain;
    background-position: 50%;
    background-repeat: no-repeat;
}

.flag-icon {
    position: relative;
    display: inline-block;
    width: 1.3333333333em;
    line-height: 1em;
}

.flag-icon:before {
    content: " ";
}

.flag-icon-gbr {
    background-image: url(../img/flags/gbr.svg);
}

.flag-icon-prt {
    background-image: url(../img/flags/prt.svg);
}

/*--------------------------------------------------------------
  # Footer
  --------------------------------------------------------------*/
#footer {
    background:
        linear-gradient(135deg,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(20, 20, 20, 0.85) 25%,
            rgba(0, 0, 0, 0.8) 50%,
            rgba(15, 15, 15, 0.85) 75%,
            rgba(0, 0, 0, 0.9) 100%),
        url("../img/footer-bg.webp") center center no-repeat;
    background-size: cover;
    color: #fff;
    font-size: 14px;
    position: relative;
    backdrop-filter: blur(5px);
}

#footer::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(246, 184, 80, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(246, 184, 80, 0.05) 0%, transparent 50%);
    z-index: 1;
}

#footer .footer-top {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 0;
    padding-bottom: 50px;

}

#footer .footer-top .footer-logo img {
    height: 80px;
}

#footer .footer-top h3 {
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    position: relative;
    font-family: "Poppins", sans-serif;
    padding: 30px 0 0 0;
    margin-bottom: 0;
}

#footer .footer-top p {
    font-size: 15;
    font-style: italic;
    margin: 30px 0 0 0;
    padding: 0;
}

#footer .footer-top .footer-newsletter {
    text-align: center;
    font-size: 15px;
    margin-top: 30px;
}

#footer .footer-top .footer-newsletter form {
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 50px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
}

#footer .footer-top .footer-newsletter form input[type=email] {
    border: 0;
    padding: 4px 8px;
    width: calc(100% - 100px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
    position: absolute;
    top: 0;
    right: -1px;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    background: #F6B850;
    color: #fff;
    transition: 0.3s;
    border-radius: 50px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
    background: #5ab652;
}

#footer .footer-top .social-links {
    margin-top: 30px;
}

#footer .footer-top .social-links a {
    font-size: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F6B850 0%, #e8a847 50%, #dda548 100%);
    color: #fff;
    line-height: 1;
    padding: 0;
    margin-right: 8px;
    margin-left: 8px;
    border-radius: 50%;
    text-align: center;
    width: 60px;
    height: 60px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 6px 20px rgba(246, 184, 80, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(246, 184, 80, 0.3);
}

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

#footer .footer-top .social-links a:hover::before {
    left: 100%;
}

#footer .footer-top .social-links a:hover {
    transform: translateY(-4px) scale(1.1);
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 50%, #e9ecef 100%);
    color: #F6B850;
    border-color: rgba(246, 184, 80, 0.6);
    box-shadow:
        0 12px 30px rgba(246, 184, 80, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-decoration: none;
}

#footer .footer-top .social-links a:active {
    transform: translateY(-2px) scale(1.05);
    transition: all 0.2s ease;
}

#footer .footer-bottom {
    border-top: 1px solid #222222;
    z-index: 2;
    position: relative;
    padding-top: 30px;
    padding-bottom: 30px;
}

#footer .copyright {
    text-align: center;
}

/*--------------------------------------------------------------
  # Service Toggle Button
  --------------------------------------------------------------*/
.service-toggle-btn {
    background: linear-gradient(135deg, #F6B850 0%, #f9d496 100%);
    border: none;
    border-radius: 25px;
    padding: 12px 24px;
    color: #333;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 15px 0;
    box-shadow: 0 4px 15px rgba(246, 184, 80, 0.3);
}

.service-toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(246, 184, 80, 0.4);
    background: linear-gradient(135deg, #f9d496 0%, #F6B850 100%);
}

.service-toggle-btn.active {
    background: linear-gradient(135deg, #333 0%, #555 100%);
    color: #F6B850;
}

.service-toggle-btn.active:hover {
    background: linear-gradient(135deg, #555 0%, #333 100%);
}

.toggle-icon {
    font-size: 18px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.service-toggle-btn.active .toggle-icon {
    transform: rotate(180deg);
}

.service-features {
    margin-top: 15px;
    padding-left: 20px;
    transition: all 0.3s ease;
}

.service-features li {
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
}

/* Mobile responsive styles for about section */
@media (max-width: 768px) {
    .service-features li {
        text-align: left;
        justify-content: flex-start;
    }
   
}

/* Service content side alignment */
.service-content-side {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    height: 100%;
    padding-top: 0;
}

/* Portfolio Grid Container */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
    margin: 3rem 0;
}

/* Portfolio Items */
.portfolio-item {
    position: relative;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    aspect-ratio: 4/3;
}

.portfolio-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

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

/* Responsive Design */
@media (max-width: 1200px) {
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 10px;
        margin: 2rem 0;
    }
}

@media (max-width: 480px) {
    .portfolio-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .portfolio-item {
        aspect-ratio: 1;
    }
}

/* Loading state */
.portfolio-item.loading {
    background: #f8f9fa;
}

.portfolio-item img {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item img.loaded {
    opacity: 1;
}

/* Instagram Button */
.btn-instagram {
    background: linear-gradient(135deg, #e4405f, #c13584, #833ab4);
    border: none;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(228, 64, 95, 0.3);
}

.btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(228, 64, 95, 0.4);
    background: linear-gradient(135deg, #c13584, #e4405f, #833ab4);
    color: white;
    text-decoration: none;
}

.btn-instagram i {
    font-size: 1.3rem;
}

/* Responsive Instagram Button */
@media (max-width: 768px) {
    .btn-instagram {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .btn-instagram i {
        font-size: 1.2rem;
    }
}

/* Services Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

/* Service Cards */
.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #e31e24, #bc1888);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(227, 30, 36, 0.1);
}

/* Service Icons */
.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e31e24, #bc1888);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.service-icon i {
    font-size: 2.5rem;
    color: white;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(227, 30, 36, 0.3);
}

/* Service Content */
.service-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-content p {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Service Features List */
.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: #495057;
    transition: all 0.3s ease;
}

.service-features li i {
    color: #28a745;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.service-card:hover .service-features li {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }

    .service-card {
        padding: 2rem;
    }

    .service-icon {
        width: 70px;
        height: 70px;
    }

    .service-icon i {
        font-size: 2rem;
    }

    .service-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon i {
        font-size: 1.8rem;
    }
}

/* Services Split Layout */
.services-split-container {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.service-split-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 2rem;
    padding: 2rem 0;
}

.service-split-item.reverse {
    direction: rtl;
}

.service-split-item.reverse>* {
    direction: ltr;
}

.service-image-side {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-image-side:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-image-side img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.service-image-side:hover img {
    transform: scale(1.02);
}

.service-content-side {
    padding: 1rem;
}

.service-content-side h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.service-content-side p {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    position: relative;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}

.service-features li::before {
    content: '•';
    color: #e31e24;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: 0.5rem;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-split-container {
        padding: 0 1rem;
    }

    .service-split-item {
        gap: 3rem;
        margin-bottom: 1.5rem;
        padding: 1.5rem 0;
    }

    .service-content-side h3 {
        font-size: 1.8rem;
    }

    .service-content-side p {
        font-size: 1rem;
    }

    .service-features li {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .services-split-container {
        margin: 2rem auto;
        padding: 0 1rem;
    }

    .service-split-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 1.5rem;
        padding: 1rem 0;
    }

    .service-split-item.reverse {
        direction: ltr;
    }

    .service-content-side {
        padding: 1rem;
        text-align: center;
    }

    .service-content-side h3 {
        font-size: 1.6rem;
    }

    .service-content-side p {
        font-size: 0.95rem;
    }

    .service-features li {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .services-split-container {
        margin: 1.5rem auto;
        padding: 0 0.5rem;
    }

    .service-split-item {
        margin-bottom: 1rem;
        padding: 0.5rem 0;
    }

    .service-content-side {
        padding: 0.5rem;
    }

    .service-content-side h3 {
        font-size: 1.4rem;
    }

    .service-content-side p {
        font-size: 0.9rem;
    }

    .service-features li {
        font-size: 0.85rem;
    }
}

/* Form improvements */
.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
}

.alert-success i {
    color: #28a745;
    margin-right: 0.5rem;
}

.form-text {
    font-size: 0.875rem;
    color: #6c757d;
}

.form-text i {
    color: #28a745;
    margin-right: 0.25rem;
}