/* Base Styles and Variables */
:root {
    /* Colors */
    --primary: #d65a31;
    --primary-rgb: 214, 90, 49;
    --primary-dark: #b44a28;
    --secondary: #f9a8b9;
    --accent: #c6a963;
    --accent-rgb: 198, 169, 99;
    --accent-light: #eadcb7;
    --dark: #1a1a1a;
    --dark-rgb: 26, 26, 26;
    --light: #ffffff;
    --light-rgb: 255, 255, 255;

    /* Gradients */
    --gold-gradient: linear-gradient(135deg, #c6a963 0%, #eadcb7 50%, #c6a963 100%);
    --dark-gradient: linear-gradient(180deg, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.85) 100%);
    --overlay-gradient: linear-gradient(to right, rgba(26, 26, 26, 0.85), rgba(26, 26, 26, 0.6));

    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Cormorant Garamond', serif;
    --font-script: 'Great Vibes', cursive;
    --font-display: 'Italiana', serif;

    /* Animations */
    --transition-fast: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-medium: 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-slow: 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    --animation-timing: cubic-bezier(0.25, 1, 0.5, 1);

    /* Shadows & Effects */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 15px 50px rgba(0, 0, 0, 0.3);
    --text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    --glow-accent: 0 0 20px rgba(var(--accent-rgb), 0.5);
    --glow-primary: 0 0 20px rgba(var(--primary-rgb), 0.5);
}

/* Reset and Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-secondary);
    color: var(--dark-color);
    overflow-x: hidden;
    background-color: var(--light-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-medium);
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.3;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Luxury Gold Accents */
.gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -text-fill-color: transparent;
    display: inline-block;
}

.gold-border {
    border: 2px solid transparent;
    background: var(--gold-gradient);
    background-clip: padding-box;
    position: relative;
}

.gold-border::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: -2px;
    background: var(--gold-gradient);
    z-index: -1;
}

.gold-icon {
    color: var(--gold-color);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2.5rem;
    border-radius: 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
    font-size: 0.875rem;
    cursor: pointer;
    border: none;
    font-family: var(--font-secondary);
    text-align: center;
    min-width: 180px;
    /* Ensure consistent button width */
    box-shadow: var(--shadow-medium);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    transform: skewX(-20deg);
}

.btn:hover::before {
    left: 100%;
}

.btn-text {
    position: relative;
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-icon {
    position: relative;
    z-index: 2;
    margin-left: 8px;
    opacity: 0;
    transform: translateX(-15px);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn:hover .btn-text {
    transform: translateX(-8px);
}

.btn:hover .btn-icon {
    opacity: 1;
    transform: translateX(0);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.btn-primary:hover {
    background-color: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-dark);
    color: #2a2a2a;
}

.btn-outline {
    background-color: transparent;
    color: var(--light-color);
    border: 1px solid var(--light-color);
}

.btn-outline:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--light-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.6s ease-out, visibility 0.6s ease-out;
}

.preloader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo-preloader {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.logo-animation {
    margin-bottom: 1.5rem;
}

.circle-animation {
    stroke-dasharray: 226;
    stroke-dashoffset: 226;
    animation: circle-animation 2s ease-in-out forwards;
}

@keyframes circle-animation {
    to {
        stroke-dashoffset: 0;
    }
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards 0.3s;
}

.logo-part {
    opacity: 0;
}

.logo-part:first-child {
    animation: fadeIn 1s forwards 0.5s;
}

.logo-part.highlight {
    animation: fadeIn 1s forwards 0.8s;
}

.tagline {
    font-family: var(--font-secondary);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 0.5rem;
    opacity: 0;
    animation: fadeIn 1s forwards 1.2s;
}

.loading-bar {
    width: 300px;
    height: 4px;
    background-color: var(--grey-medium);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
    box-shadow: var(--shadow-light);
}

.loading-progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: var(--gold-gradient);
    animation: loading 2s ease-in-out forwards;
}

@keyframes loading {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.highlight {
    color: var(--primary-color);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: var(--blur-effect);
    -webkit-backdrop-filter: var(--blur-effect);
    box-shadow: var(--shadow-light);
}

.header-top {
    padding: 0.5rem 0;
    background-color: var(--dark-color);
    color: var(--grey-light);
    font-size: 0.8125rem;
}

.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-item i {
    color: var(--gold-color);
}

.header-main {
    padding: 1rem 0;
    transition: padding 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.header.scrolled .header-main {
    padding: 0.75rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 92%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-container {
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards 0.6s;
}

.logo-script {
    font-family: var(--font-script);
    font-size: 2rem;
    font-weight: 400;
    color: white;
}

.logo-divider {
    font-size: 1rem;
    margin: 0 0.3rem;
}

.logo-bold {
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 2px;
}

.nav-container {
    display: flex;
    align-items: center;
}

.nav-menu {
    margin-right: 2rem;
}

.nav-list {
    display: flex;
    gap: 2.5rem;
}

.nav-item {
    opacity: 0;
    transform: translateY(20px);
}

.nav-item:nth-child(1) {
    animation: fadeInUp 1s forwards 0.7s;
}

.nav-item:nth-child(2) {
    animation: fadeInUp 1s forwards 0.8s;
}

.nav-item:nth-child(3) {
    animation: fadeInUp 1s forwards 0.9s;
}

.nav-item:nth-child(4) {
    animation: fadeInUp 1s forwards 1s;
}

.nav-item:nth-child(5) {
    animation: fadeInUp 1s forwards 1.1s;
}

.nav-link {
    font-weight: 500;
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 0.5rem 0;
    display: block;
    color: #ffffff;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-link:hover::before,
.nav-link.active::before,
.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.contact-btn {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards 1.2s;
}

.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 10;
}

.mobile-menu-toggle span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--dark-color);
    transition: var(--transition-medium);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--light-color);
    z-index: 1000;
    box-shadow: var(--shadow-dark);
    transition: right 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-container {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--grey-medium);
}

.close-menu {
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--grey-light);
}

.close-menu:hover {
    color: var(--primary-color);
    background-color: var(--grey-medium);
}

.mobile-nav-list {
    margin-bottom: 2rem;
}

.mobile-nav-item {
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateX(20px);
}

.mobile-menu.active .mobile-nav-item:nth-child(1) {
    animation: fadeInRight 0.5s forwards 0.2s;
}

.mobile-menu.active .mobile-nav-item:nth-child(2) {
    animation: fadeInRight 0.5s forwards 0.3s;
}

.mobile-menu.active .mobile-nav-item:nth-child(3) {
    animation: fadeInRight 0.5s forwards 0.4s;
}

.mobile-menu.active .mobile-nav-item:nth-child(4) {
    animation: fadeInRight 0.5s forwards 0.5s;
}

.mobile-menu.active .mobile-nav-item:nth-child(5) {
    animation: fadeInRight 0.5s forwards 0.6s;
}

.mobile-menu.active .mobile-nav-item:nth-child(6) {
    animation: fadeInRight 0.5s forwards 0.7s;
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mobile-nav-link {
    font-size: 1.125rem;
    font-weight: 500;
    display: block;
    padding: 0.5rem 0;
    transition: var(--transition-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.mobile-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: width 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--primary-color);
    transform: translateX(10px);
}

.mobile-nav-link:hover::after {
    width: 30px;
}

.mobile-contact-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--grey-medium);
    margin-bottom: 2rem;
}

.mobile-contact-info .contact-item {
    margin-bottom: 1rem;
}

.mobile-menu-footer {
    margin-top: auto;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--grey-light);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    color: #2a2a2a;
}

.social-link:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

/* Overlay@media (max-width: 576px) {
    .header-container {
        width: 95%;
    }
    
    .mobile-menu {
        width: 100%;
        max-width: none;
    }
}/* Base Styles and Variables */
:root {
    --primary-color: #d65a31;
    /* Brand orange from the PDF */
    --secondary-color: #f9a8b9;
    /* Brand pink from the PDF */
    --gold-color: #c6a963;
    /* Luxury gold accent */
    --dark-color: #2a2a2a;
    --light-color: #ffffff;
    --grey-light: #f8f8f8;
    --grey-medium: #e0e0e0;
    --transition-slow: 0.5s ease;
    --transition-medium: 0.3s ease;
    --transition-fast: 0.2s ease;
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Poppins', sans-serif;
    --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.1);
    --shadow-dark: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Reset and Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-secondary);
    color: var(--dark-color);
    overflow-x: hidden;
    background-color: var(--light-color);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-medium);
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.3;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2.5rem;
    border-radius: 2px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-size: 0.875rem;
    cursor: pointer;
    border: none;
    font-family: var(--font-secondary);
    text-align: center;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.6s ease;
    transform: skewX(-15deg);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-color);
    box-shadow: 0 5px 15px rgba(214, 90, 49, 0.3);
}

.btn-primary:hover {
    background-color: darken(var(--primary-color), 10%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(214, 90, 49, 0.4);
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--light-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.6s ease-out, visibility 0.6s ease-out;
}

.preloader-content {
    text-align: center;
}

.logo-preloader {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards 0.3s;
}

.loading-bar {
    width: 300px;
    height: 4px;
    background-color: var(--grey-medium);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
}

.loading-progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background-color: var(--primary-color);
    animation: loading 2s ease-in-out forwards;
}

@keyframes loading {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.highlight {
    color: var(--primary-color);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    padding: 0 0;
    background-color: transparent;
}

.header.scrolled {
    background-color: black;
    box-shadow: var(--shadow-light);
    padding: 0rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 92%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-container {
    z-index: 10;
}

.logo {
    font-family: var(--font-primary);
    font-size: 1.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards 0.6s;
}

.nav-container {
    display: flex;
    align-items: center;
}

.nav-menu {
    margin-right: 2rem;
}

.nav-list {
    display: flex;
    gap: 2.5rem;
}

.nav-item {
    opacity: 0;
    transform: translateY(20px);
}

.nav-item:nth-child(1) {
    animation: fadeInUp 1s forwards 0.7s;
}

.nav-item:nth-child(2) {
    animation: fadeInUp 1s forwards 0.8s;
}

.nav-item:nth-child(3) {
    animation: fadeInUp 1s forwards 0.9s;
}

.nav-item:nth-child(4) {
    animation: fadeInUp 1s forwards 1s;
}

.nav-item:nth-child(5) {
    animation: fadeInUp 1s forwards 1.1s;
}

.nav-link {
    font-weight: 500;
    font-size: 0.9375rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.contact-btn {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards 1.2s;
}

.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 10;
}

.mobile-menu-toggle span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--dark-color);
    transition: var(--transition-medium);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--light-color);
    z-index: 1000;
    box-shadow: var(--shadow-dark);
    transition: right 0.4s ease-in-out;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-container {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.close-menu {
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.close-menu:hover {
    color: var(--primary-color);
}

.mobile-nav-list {
    margin-bottom: 2rem;
}

.mobile-nav-item {
    margin-bottom: 1.5rem;
}

.mobile-nav-link {
    font-size: 1.125rem;
    font-weight: 500;
    display: block;
    padding: 0.5rem 0;
    transition: var(--transition-medium);
}

.mobile-nav-link:hover {
    color: var(--primary-color);
    transform: translateX(10px);
}

.mobile-menu-footer {
    margin-top: auto;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--grey-light);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    transition: var(--transition-medium);
}

.social-link:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-3px);
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: var(--blur-effect);
    -webkit-backdrop-filter: var(--blur-effect);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Shine Effect */
.shine-effect {
    position: relative;
    overflow: hidden;
}

.shine-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-25deg);
    animation: shine 4s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20%,
    100% {
        left: 100%;
    }
}

/* Parallax Background */
.parallax-bg {
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.float-animation {
    animation: float 4s ease-in-out infinite;
}

.pulse-animation {
    animation: pulse 2s ease-in-out infinite;
}

.spin-animation {
    animation: spin 10s linear infinite;
}

/* Pulse Circle Animation */
.pulse-circle {
    animation: pulsate 2s ease-out infinite;
    transform-origin: center;
}

@keyframes pulsate {
    0% {
        transform: scale(0.9);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }

    100% {
        transform: scale(0.9);
        opacity: 0.5;
    }
}

/* Logo Badge */
.logo-badge {
    font-family: var(--font-secondary);
    font-size: 0.625rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 2px 6px;
    border-radius: 2px;
    margin-left: 0.5rem;
    position: relative;
    top: -10px;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 1s forwards 1s;
}

/* Header Decoration */
.header-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    overflow: hidden;
}

.decoration-line {
    height: 100%;
    width: 100%;
    background: linear-gradient(to right, transparent, var(--gold-color), transparent);
    transform: translateX(-100%);
    animation: slideLine 3s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes slideLine {
    to {
        transform: translateX(100%);
    }
}

/* Enhanced Tagline in Preloader */
.tagline {
    font-family: var(--font-secondary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 0.5rem;
    opacity: 0;
    animation: fadeIn 1s forwards 1.2s;
    color: var(--dark-color);
    position: relative;
}

.tagline::before,
.tagline::after {
    content: '';
    position: absolute;
    height: 1px;
    width: 30px;
    background: var(--gold-color);
    top: 50%;
    transform: translateY(-50%);
}

.tagline::before {
    left: -40px;
}

.tagline::after {
    right: -40px;
}

/* Enhanced Contact Item */
.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.contact-item i {
    color: var(--gold-color);
    font-size: 0.85rem;
}

.contact-item span {
    font-size: 0.8125rem;
    letter-spacing: 0.5px;
}

.contact-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -0.75rem;
    top: 50%;
    transform: translateY(-50%);
    height: 12px;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.3);
}

/* Custom Cursor - Fixed CSS */

/* Base cursor styles */
.cursor-outer,
.cursor-inner {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    left: 0;
    top: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Make cursor visible when active */
body.cursor-active .cursor-outer,
body.cursor-active .cursor-inner {
    opacity: 1;
}

.cursor-outer {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--primary);
    margin-left: -20px;
    margin-top: -20px;
    transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, margin 0.3s ease;
}

.cursor-inner {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary);
    margin-left: -3px;
    margin-top: -3px;
    transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease, margin 0.3s ease;
}

/* Hover state */
.cursor-hover.cursor-outer {
    width: 60px;
    height: 60px;
    margin-left: -30px;
    margin-top: -30px;
    border-color: var(--accent);
    background-color: rgba(198, 169, 99, 0.05);
}

.cursor-hover.cursor-inner {
    width: 8px;
    height: 8px;
    margin-left: -4px;
    margin-top: -4px;
    background-color: var(--accent);
}

/* Click state */
.cursor-click.cursor-outer {
    transform: scale(0.9);
}

.cursor-click.cursor-inner {
    transform: scale(0.9);
}

/* Text state for buttons */
.cursor-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--light);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cursor-text-active .cursor-text {
    opacity: 1;
}

.cursor-text-active.cursor-outer {
    width: 70px;
    height: auto;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background-color: var(--accent);
    border-color: transparent;
    margin-left: 0;
    margin-top: 0;
    transform: translate(-50%, -50%);
}

.cursor-text-active.cursor-inner {
    opacity: 0;
}

/* Hide default cursor */
body.cursor-active {
    cursor: none !important;
}

body.cursor-active a,
body.cursor-active button,
body.cursor-active .btn,
body.cursor-active .nav-link,
body.cursor-active .logo,
body.cursor-active .mobile-menu-toggle,
body.cursor-active .social-link,
body.cursor-active .dot,
body.cursor-active .slide-arrow,
body.cursor-active input,
body.cursor-active textarea,
body.cursor-active select {
    cursor: none !important;
}

/* Media Queries */
@media (max-width: 1200px) {
    .nav-list {
        gap: 1.5rem;
    }

    .logo-script {
        font-size: 1.8rem;
    }

    .logo-bold {
        font-size: 1.1rem;
    }

    .logo-badge {
        display: none;
    }
}

@media (max-width: 992px) {
    .header-top {
        display: none;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .contact-btn {
        display: none;
    }

    .logo-script {
        font-size: 1.6rem;
        color: #2a2a2a;
    }

    .header.scrolled {
        background-color: white;
        box-shadow: var(--shadow-light);
        padding: 0rem 0;
    }

    .custom-cursor,
    .cursor-dot {
        display: none;
    }
}

@media (max-width: 768px) {
    .header-container {
        width: 90%;
    }

    .logo {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .header-container {
        width: 95%;
    }

    .mobile-menu {
        width: 100%;
        max-width: none;
    }

    .logo-script {
        font-size: 1.4rem;
    }
}

/* Hero Banner Basic Styles */
.hero-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 800px;
    overflow: hidden;
    background-color: var(--dark);
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Individual Slides */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    transition: opacity 1.2s var(--animation-timing), visibility 1.2s var(--animation-timing);
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Slide Background */
.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 7s ease;
}

.hero-slide.active .slide-bg {
    transform: scale(1);
}

/* Slide Overlay */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-gradient);
}

.gradient-overlay {
    background: linear-gradient(to right, rgba(var(--dark-rgb), 0.85), rgba(var(--dark-rgb), 0.6), rgba(var(--primary-rgb), 0.3));
}

/* Slide Content Container */
.slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 10%;
    z-index: 2;
    color: var(--light);
    max-width: 1500px;
    margin: 0 auto;
}

/* Slide Subtitle */
.slide-subtitle {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--animation-timing), transform 0.8s var(--animation-timing);
}

.hero-slide.active [data-animation="fade-up"] {
    opacity: 1;
    transform: translateY(0);
}

.hero-slide.active [data-animation="fade-right"] {
    opacity: 1;
    transform: translateX(0);
}

.hero-slide.active [data-animation="fade-left"] {
    opacity: 1;
    transform: translateX(0);
}

.hero-slide.active [data-delay="200"] {
    transition-delay: 0.2s;
}

.hero-slide.active [data-delay="400"] {
    transition-delay: 0.4s;
}

.hero-slide.active [data-delay="600"] {
    transition-delay: 0.6s;
}

.hero-slide.active [data-delay="800"] {
    transition-delay: 0.8s;
}

.hero-slide.active [data-delay="1000"] {
    transition-delay: 1s;
}

.hero-slide.active [data-delay="1200"] {
    transition-delay: 1.2s;
}

.slide-subtitle h3 {
    font-family: var(--font-script);
    font-size: 3.5rem;
    font-weight: 400;
    margin: 0 1.5rem;
    color: var(--accent);
    text-shadow: var(--text-shadow);
}

.subtitle-line {
    flex: 1;
    height: 1px;
    background: var(--gold-gradient);
    max-width: 120px;
    position: relative;
    overflow: hidden;
}

.subtitle-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--light-rgb), 0.3);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 100%;
    }
}

/* Slide Title */
.slide-title {
    font-family: var(--font-secondary);
    margin-bottom: 2rem;
    max-width: 900px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--animation-timing), transform 0.8s var(--animation-timing);
    line-height: 1.2;
}

.title-top {
    display: block;
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: rgba(var(--light-rgb), 0.9);
    letter-spacing: 1px;
}

.title-bottom {
    display: block;
    font-size: 4.5rem;
    font-weight: 700;
    text-shadow: var(--text-shadow);
}

.title-bottom .highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.title-bottom .highlight::after {
    content: '';
    position: absolute;
    bottom: 0.3rem;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--gold-gradient);
    opacity: 0.5;
    border-radius: 4px;
}

/* Slide Description */
.slide-description {
    max-width: 650px;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--animation-timing), transform 0.8s var(--animation-timing);
}

.slide-description p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(var(--light-rgb), 0.85);
}

/* Slide Buttons */
.slide-buttons {
    display: flex;
    gap: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--animation-timing), transform 0.8s var(--animation-timing);
}

/* Button Styles */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0;
    overflow: hidden;
    transition: all var(--transition-medium);
    z-index: 1;
    cursor: pointer;
    min-width: 200px;
    height: 60px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(var(--light-rgb), 0.15);
    transition: all 0.6s var(--animation-timing);
    transform: skewX(-15deg);
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-text {
    position: relative;
    z-index: 2;
    transition: transform var(--transition-medium);
}

.btn-icon {
    position: relative;
    z-index: 2;
    margin-left: 8px;
    opacity: 0;
    transform: translateX(-15px);
    transition: all var(--transition-medium);
}

.btn:hover .btn-text {
    transform: translateX(-8px);
}

.btn:hover .btn-icon {
    opacity: 1;
    transform: translateX(0);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--light);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    color: var(--light);
    border: 1px solid rgba(var(--light-rgb), 0.3);
}

.btn-outline:hover {
    border-color: var(--light);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

/* Slide Decorations */
.slide-decor {
    position: absolute;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.8s var(--animation-timing), transform 0.8s var(--animation-timing);
}

.decor-1 {
    top: 20%;
    right: 5%;
    transform: translateX(50px);
    max-width: 300px;
}

.decor-2 {
    bottom: 15%;
    right: 25%;
    transform: translateX(-50px);
    max-width: 250px;
}

.slide-decor img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    border: 5px solid rgba(var(--light-rgb), 0.1);
    transform: rotate(5deg);
    transition: all var(--transition-medium);
}

.decor-1 img:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: var(--shadow-xl), var(--glow-accent);
    border-color: rgba(var(--accent-rgb), 0.3);
}

.decor-2 img:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: var(--shadow-xl), var(--glow-primary);
    border-color: rgba(var(--primary-rgb), 0.3);
}

/* Banner Controls */
.banner-controls {
    position: absolute;
    bottom: 50px;
    left: 10%;
    right: 10%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
}

/* Slide Counter */
.slide-counter {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-secondary);
    color: var(--light);
}

.current-slide {
    font-size: 3rem;
    font-weight: 600;
}

.slide-divider {
    position: relative;
    width: 40px;
    height: 1px;
    background-color: rgba(var(--light-rgb), 0.5);
}

.slide-divider::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 10px;
    height: 5px;
    background-color: var(--primary);
}

.total-slides {
    font-size: 1.5rem;
    color: rgba(var(--light-rgb), 0.7);
}

/* Slider Dots */
.slider-dots {
    display: flex;
    gap: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(var(--light-rgb), 0.3);
    transition: all var(--transition-medium);
    cursor: pointer;
    position: relative;
}

.dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary);
    transition: transform var(--transition-medium);
}

.dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid var(--primary);
    transition: transform var(--transition-medium);
}

.dot:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.dot.active::before {
    transform: translate(-50%, -50%) scale(1);
}

.dot.active::after {
    transform: translate(-50%, -50%) scale(1);
}

/* Slide Arrows */
.slide-arrows {
    display: flex;
    gap: 1.5rem;
}

.slide-arrow {
    display: flex;
    align-items: center;
    background: none;
    border: none;
    color: var(--light);
    cursor: pointer;
    transition: all var(--transition-medium);
}

.arrow-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(var(--dark-rgb), 0.5);
    border: 1px solid rgba(var(--light-rgb), 0.1);
    font-size: 1rem;
    transition: all var(--transition-medium);
}

.prev-slide .arrow-icon {
    margin-right: 10px;
}

.next-slide .arrow-icon {
    margin-left: 10px;
}

.arrow-text {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all var(--transition-medium);
}

.slide-arrow:hover {
    color: var(--primary);
}

.slide-arrow:hover .arrow-icon {
    background-color: var(--primary);
    color: var(--light);
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

.prev-slide:hover .arrow-text {
    transform: translateX(-5px);
}

.next-slide:hover .arrow-text {
    transform: translateX(5px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 50px;
    right: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--light);
    z-index: 10;
    opacity: 0;
    animation: fade-in 1s forwards 2s;
}

.scroll-text {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    transform: rotate(90deg);
    white-space: nowrap;
}

.scroll-icon {
    font-size: 1.25rem;
    animation: scroll-bounce 2s infinite;
}

@keyframes scroll-bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(10px);
    }

    60% {
        transform: translateY(5px);
    }
}

/* Scroll Circle Animation */
.scroll-circle {
    position: relative;
}

.scroll-rect {
    stroke-dasharray: 120;
    stroke-dashoffset: 0;
    animation: rect-pulse 3s infinite;
}

.scroll-dot {
    animation: dot-scroll 2s infinite;
}

@keyframes rect-pulse {

    0%,
    100% {
        stroke-opacity: 0.5;
    }

    50% {
        stroke-opacity: 1;
    }
}

@keyframes dot-scroll {

    0%,
    100% {
        transform: translateY(0);
        cy: 15;
    }

    50% {
        transform: translateY(10px);
        cy: 25;
    }
}

@keyframes fade-in {
    to {
        opacity: 1;
    }
}

/* Social Media Side Bar */
.banner-social {
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    z-index: 10;
}

.banner-social .social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(var(--dark-rgb), 0.5);
    border: 1px solid rgba(var(--light-rgb), 0.1);
    color: var(--light);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    transition: all var(--transition-medium);
}

.banner-social .social-link:hover {
    background-color: var(--primary);
    color: var(--light);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.social-line {
    width: 1px;
    height: 100px;
    background-color: rgba(var(--light-rgb), 0.3);
}

/* Premium Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    z-index: 1;
    opacity: 0.4;
    transition: all var(--transition-medium);
}

.floating-element img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgba(var(--light-rgb), 0.1);
}

.element-1 {
    width: 180px;
    height: 180px;
    top: 15%;
    left: 15%;
    animation: float-1 15s ease-in-out infinite;
}

.element-2 {
    width: 120px;
    height: 120px;
    bottom: 20%;
    right: 15%;
    animation: float-2 12s ease-in-out infinite;
}

.element-3 {
    top: 25%;
    right: 10%;
    animation: float-3 18s ease-in-out infinite;
}

.element-4 {
    bottom: 15%;
    left: 10%;
    animation: float-4 20s ease-in-out infinite;
}

.element-shape {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(var(--primary-rgb), 0.1), rgba(var(--accent-rgb), 0.1));
    backdrop-filter: blur(5px);
    border: 1px solid rgba(var(--light-rgb), 0.1);
}

.element-4 .element-shape {
    width: 100px;
    height: 100px;
}

@keyframes float-1 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, 20px) rotate(5deg);
    }

    66% {
        transform: translate(-20px, 10px) rotate(-5deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

@keyframes float-2 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(-20px, -30px) rotate(-5deg);
    }

    66% {
        transform: translate(20px, -10px) rotate(5deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

@keyframes float-3 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(20px, 30px) rotate(5deg);
    }

    66% {
        transform: translate(-10px, 15px) rotate(-3deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

@keyframes float-4 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(-10px, -20px) rotate(-3deg);
    }

    66% {
        transform: translate(15px, -10px) rotate(3deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

/* Responsive Styles */
@media (max-width: 1400px) {
    .title-bottom {
        font-size: 4rem;
    }

    .title-top {
        font-size: 2.25rem;
    }

    .slide-subtitle h3 {
        font-size: 3rem;
    }

    .decor-1 {
        right: 3%;
        max-width: 250px;
    }

    .decor-2 {
        right: 20%;
        max-width: 200px;
    }
}

@media (max-width: 1200px) {
    .title-bottom {
        font-size: 3.5rem;
    }

    .title-top {
        font-size: 2rem;
    }

    .slide-subtitle h3 {
        font-size: 2.5rem;
    }

    .slide-description p {
        font-size: 1.1rem;
    }

    .banner-social {
        left: 30px;
    }

    .scroll-indicator {
        right: 30px;
    }

    .element-1,
    .element-3 {
        display: none;
    }
}

@media (max-width: 992px) {
    .slide-content {
        padding: 0 8%;
    }

    .title-bottom {
        font-size: 2.75rem;
    }

    .title-top {
        font-size: 1.75rem;
    }

    .slide-subtitle h3 {
        font-size: 2.25rem;
    }

    .slide-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .banner-controls {
        left: 8%;
        right: 8%;
    }

    .slide-decor {
        display: none;
    }

    .slide-counter {
        display: none;
    }

    .banner-social {
        display: none;
    }

    .element-2,
    .element-4 {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: 700px;
    }

    .slide-content {
        padding: 0 5%;
        text-align: center;
        align-items: center;
    }

    .slide-subtitle {
        justify-content: center;
    }

    .slide-description {
        max-width: 100%;
    }

    .title-bottom {
        font-size: 2.25rem;
    }

    .title-top {
        font-size: 1.5rem;
    }

    .banner-controls {
        left: 5%;
        right: 5%;
        bottom: 30px;
    }

    .slide-arrows {
        display: none;
    }

    .slider-dots {
        margin: 0 auto;
    }

    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 576px) {
    .title-bottom {
        font-size: 1.75rem;
    }

    .title-top {
        font-size: 1.25rem;
    }

    .slide-subtitle h3 {
        font-size: 1.75rem;
    }

    .subtitle-line {
        max-width: 60px;
    }

    .slide-description p {
        font-size: 1rem;
    }

    .btn {
        min-width: 180px;
        height: 50px;
        padding: 0.75rem 1.5rem;
        font-size: 0.8125rem;
    }
}

/* =========================================================
   Luxury Services Section CSS
   ========================================================= */

/* Services Section Base */
.services-section {
    position: relative;
    padding: 120px 0;
    background-color: var(--light);
    overflow: hidden;
    z-index: 1;
}

/* Background Shapes */
.section-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.05;
    pointer-events: none;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, var(--primary), transparent);
    top: -100px;
    left: -100px;
    filter: blur(50px);
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--accent), transparent);
    bottom: -200px;
    right: -200px;
    filter: blur(70px);
}

.shape-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.2), transparent);
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    filter: blur(60px);
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--animation-timing), transform 0.8s var(--animation-timing);
}

.section-header.revealed {
    opacity: 1;
    transform: translateY(0);
}

.section-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.section-subtitle h4 {
    font-family: var(--font-script);
    font-size: 2.5rem;
    font-weight: 400;
    margin: 0 1.5rem;
    color: var(--accent);
}

.subtitle-line {
    flex: 1;
    height: 1px;
    background: var(--gold-gradient);
    max-width: 80px;
    position: relative;
    overflow: hidden;
}

.subtitle-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(var(--accent-rgb), 0.8), transparent);
    animation: shine 3s infinite;
}

.section-title {
    font-family: var(--font-secondary);
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark);
}

.title-highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--gold-gradient);
    opacity: 0.3;
    border-radius: 4px;
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(var(--dark-rgb), 0.7);
    max-width: 700px;
    margin: 0 auto;
}

/* Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    position: relative;
    background: linear-gradient(to bottom, #fff, #fafafa);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--animation-timing), transform 0.8s var(--animation-timing), box-shadow 0.4s var(--animation-timing);
}

.service-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px);
}

.card-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-gradient);
    border-radius: 50%;
    margin-bottom: 25px;
    position: relative;
    z-index: 3;
    box-shadow: 0 5px 15px rgba(var(--accent-rgb), 0.3);
}

.card-icon i {
    font-size: 1.8rem;
    color: var(--light);
}

.card-content {
    position: relative;
    z-index: 3;
}

.card-title {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
    position: relative;
    display: inline-block;
}

.card-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gold-gradient);
    transition: width 0.4s var(--animation-timing);
}

.service-card:hover .card-title::after {
    width: 100%;
}

.card-description {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(var(--dark-rgb), 0.7);
    margin-bottom: 20px;
}

/* Card Features */
.card-features {
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.feature-item i {
    color: var(--primary);
    font-size: 0.875rem;
    margin-right: 10px;
}

.feature-item span {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--dark);
}

/* Card Link */
.card-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.9375rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.card-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.card-link:hover {
    color: var(--accent);
}

.card-link:hover i {
    transform: translateX(5px);
}

/* Card Image */
.card-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 120px;
    height: 120px;
    border-radius: 50% 0 8px 0;
    overflow: hidden;
    opacity: 0.25;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 2;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-card:hover .card-image {
    width: 140px;
    height: 140px;
    opacity: 0.35;
}

.service-card:hover .card-image img {
    transform: scale(1.1);
}

/* Card Decoration */
.card-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.05), transparent);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-card:hover .card-decoration {
    opacity: 1;
}

/* Section Bottom */
.section-bottom {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.05), rgba(var(--accent-rgb), 0.07));
    border-radius: 10px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--animation-timing), transform 0.8s var(--animation-timing);
}

.section-bottom.revealed {
    opacity: 1;
    transform: translateY(0);
}

.cta-text {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--dark);
}

/* Decorative Elements */
.decorative-icon {
    position: absolute;
    z-index: 0;
    opacity: 0.1;
    pointer-events: none;
}

.decorative-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.decorative-icon i {
    font-size: 6rem;
    color: var(--accent);
}

.dec-1 {
    width: 120px;
    height: 120px;
    top: 15%;
    left: 5%;
    animation: float-1 20s ease-in-out infinite;
}

.dec-2 {
    top: 40%;
    right: 8%;
    animation: float-2 15s ease-in-out infinite;
}

.dec-3 {
    width: 90px;
    height: 90px;
    bottom: 10%;
    left: 10%;
    animation: float-3 18s ease-in-out infinite;
}

/* Reveal Animation for Elements */
.reveal-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--animation-timing), transform 0.8s var(--animation-timing);
}

.reveal-element.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .section-title {
        font-size: 3rem;
    }

    .section-subtitle h4 {
        font-size: 2.25rem;
    }

    .services-grid {
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .services-section {
        padding: 80px 0;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 2.5rem;
    }

    .section-subtitle h4 {
        font-size: 2rem;
    }

    .dec-1,
    .dec-3 {
        display: none;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .section-subtitle h4 {
        font-size: 1.75rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .dec-2 {
        display: none;
    }
}

@media (max-width: 576px) {
    .services-section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle h4 {
        font-size: 1.5rem;
    }

    .card-icon {
        width: 60px;
        height: 60px;
    }

    .card-icon i {
        font-size: 1.5rem;
    }

    .card-title {
        font-size: 1.25rem;
    }

    .cta-text {
        font-size: 1.1rem;
    }
}

/* =========================================================
   Ultra-Premium Testimonials & Gallery Section
   Sophisticated styling with advanced animations
   ========================================================= */

/* Base Section Styling */
.testimonials-gallery-section {
    position: relative;
    padding: 120px 0;
    background-color: var(--dark);
    color: var(--light);
    overflow: hidden;
    z-index: 1;
}

/* Premium Background Elements */
.premium-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.premium-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(26, 26, 26, 0.85));
}

.premium-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c6a963' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.2;
}

.animated-gradient {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(var(--accent-rgb), 0.1) 0%, rgba(26, 26, 26, 0) 70%);
    animation: rotate-gradient 30s linear infinite;
    opacity: 0.5;
}

@keyframes rotate-gradient {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Floating Particles Animation */
.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(to right, rgba(var(--primary-rgb), 0.2), rgba(var(--accent-rgb), 0.2));
    opacity: 0.3;
    pointer-events: none;
}

.particle-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation: float-particle 20s linear infinite;
}

.particle-2 {
    width: 150px;
    height: 150px;
    bottom: 10%;
    right: 15%;
    animation: float-particle 25s linear infinite reverse;
}

.particle-3 {
    width: 70px;
    height: 70px;
    top: 40%;
    right: 25%;
    animation: float-particle 18s linear infinite 5s;
}

.particle-4 {
    width: 120px;
    height: 120px;
    bottom: 30%;
    left: 25%;
    animation: float-particle 22s linear infinite 2s reverse;
}

.particle-5 {
    width: 60px;
    height: 60px;
    top: 60%;
    left: 5%;
    animation: float-particle 15s linear infinite 8s;
}

.particle-6 {
    width: 80px;
    height: 80px;
    top: 10%;
    right: 10%;
    animation: float-particle 17s linear infinite 4s reverse;
}

@keyframes float-particle {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.3;
    }

    25% {
        opacity: 0.5;
    }

    50% {
        transform: translate(100px, 50px) rotate(180deg);
        opacity: 0.2;
    }

    75% {
        opacity: 0.4;
    }

    100% {
        transform: translate(0, 0) rotate(360deg);
        opacity: 0.3;
    }
}

/* Elegant Section Header */
.testimonials-gallery-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.premium-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--animation-timing), transform 0.8s var(--animation-timing);
}

.premium-subtitle.revealed {
    opacity: 1;
    transform: translateY(0);
}

.premium-subtitle h4 {
    font-family: var(--font-script);
    font-size: 2.5rem;
    font-weight: 400;
    margin: 0 1.5rem;
    color: var(--accent);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.line-decorator {
    flex: 1;
    height: 1px;
    background: var(--gold-gradient);
    max-width: 80px;
    position: relative;
    overflow: hidden;
}

.line-decorator::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(var(--accent-rgb), 0.8), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 100%;
    }
}

.premium-title {
    font-family: var(--font-secondary);
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--light);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--animation-timing), transform 0.8s var(--animation-timing);
}

.premium-title.revealed {
    opacity: 1;
    transform: translateY(0);
}

.highlight-text {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--gold-gradient);
    opacity: 0.3;
    border-radius: 4px;
}

.premium-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(var(--light-rgb), 0.8);
    max-width: 700px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--animation-timing), transform 0.8s var(--animation-timing);
}

.premium-description.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Luxury Tabs Navigation */
.premium-tabs {
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--animation-timing), transform 0.8s var(--animation-timing);
}

.premium-tabs.revealed {
    opacity: 1;
    transform: translateY(0);
}

.tabs-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(var(--dark-rgb), 0.5);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 8px;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    border: 1px solid rgba(var(--accent-rgb), 0.2);
}

.tab {
    display: flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s var(--animation-timing);
    position: relative;
    z-index: 2;
    flex: 1;
    justify-content: center;
}

.tab.active {
    color: var(--dark);
}

.tab-icon {
    margin-right: 10px;
    font-size: 1rem;
}

.tab-text {
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.tab-indicator {
    position: absolute;
    top: 5px;
    left: 5px;
    height: calc(100% - 10px);
    width: calc(50% - 10px);
    background: var(--gold-gradient);
    border-radius: 40px;
    transition: transform 0.3s var(--animation-timing);
    z-index: 1;
    box-shadow: 0 5px 15px rgba(var(--accent-rgb), 0.3);
}

/* Tabs Content */
.tabs-content-wrapper {
    position: relative;
    min-height: 400px;
}

.tab-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s var(--animation-timing), visibility 0.5s var(--animation-timing);
}

.tab-content.active {
    position: relative;
    opacity: 1;
    visibility: visible;
}

/* Premium Testimonials Slider */
.premium-testimonials-slider {
    position: relative;
    padding: 40px 0;
}

.testimonials-container {
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s var(--animation-timing), visibility 0.8s var(--animation-timing);
}

.testimonial-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
}

.testimonial-content {
    background: linear-gradient(135deg, rgba(var(--dark-rgb), 0.6), rgba(var(--dark-rgb), 0.3));
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(var(--accent-rgb), 0.1);
    position: relative;
    overflow: hidden;
}

.testimonial-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gold-gradient);
}

.quote-icon {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 2.5rem;
    color: rgba(var(--accent-rgb), 0.2);
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    color: rgba(var(--light-rgb), 0.9);
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    border: 3px solid rgba(var(--accent-rgb), 0.3);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-name {
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    margin-bottom: 5px;
    color: var(--light);
}

.event-type {
    font-size: 0.875rem;
    color: rgba(var(--light-rgb), 0.7);
    margin-bottom: 8px;
}

.rating {
    display: flex;
    gap: 3px;
}

.rating i {
    color: var(--accent);
    font-size: 0.875rem;
}

/* Testimonial Navigation */
.testimonial-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(var(--dark-rgb), 0.5);
    border: 1px solid rgba(var(--accent-rgb), 0.2);
    color: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s var(--animation-timing);
}

.nav-btn:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.3);
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.testimonial-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(var(--light-rgb), 0.3);
    cursor: pointer;
    transition: all 0.3s var(--animation-timing);
    position: relative;
}

.testimonial-dots .dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid var(--accent);
    transition: all 0.3s var(--animation-timing);
}

.testimonial-dots .dot.active {
    background-color: var(--accent);
}

.testimonial-dots .dot.active::after {
    transform: translate(-50%, -50%) scale(1);
}

/* Premium Gallery Styles */
.premium-gallery {
    padding: 20px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--animation-timing), transform 0.8s var(--animation-timing);
}

.gallery-item.revealed {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-image {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    overflow: hidden;
}

.gallery-item.large .gallery-image {
    padding-bottom: 75%;
}

.gallery-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--animation-timing);
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s var(--animation-timing);
}

.gallery-item:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    transform: translateY(20px);
    transition: transform 0.4s var(--animation-timing);
}

.gallery-item:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content h4 {
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    color: var(--light);
    margin-bottom: 5px;
}

.overlay-content p {
    font-size: 0.875rem;
    color: rgba(var(--light-rgb), 0.8);
}

.overlay-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(var(--primary-rgb), 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.4s var(--animation-timing);
}

.gallery-item:hover .overlay-icon {
    opacity: 1;
    transform: translateY(0);
}

/* Gallery Action */
.gallery-action {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--animation-timing), transform 0.8s var(--animation-timing);
}

.gallery-action.revealed {
    opacity: 1;
    transform: translateY(0);
}

.btn-outline-gold {
    background: transparent;
    color: var(--light);
    border: 1px solid var(--accent);
    padding: 0.875rem 2.5rem;
    border-radius: 50px;
    font-size: 0.9375rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s var(--animation-timing);
    position: relative;
    overflow: hidden;
}

.btn-outline-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(var(--accent-rgb), 0.2), transparent);
    transition: all 0.6s var(--animation-timing);
}

.btn-outline-gold:hover {
    background: var(--gold-gradient);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(var(--accent-rgb), 0.3);
}

.btn-outline-gold:hover::before {
    left: 100%;
}

.btn-outline-gold .btn-icon {
    margin-left: 10px;
    transition: transform 0.3s var(--animation-timing);
}

.btn-outline-gold:hover .btn-icon {
    transform: translateX(5px);
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--animation-timing), visibility 0.4s var(--animation-timing);
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-container {
    position: relative;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
}

.lightbox-content {
    position: relative;
}

.lightbox-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.lightbox-image img {
    width: 100%;
    height: auto;
    display: block;
}

.lightbox-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    border-radius: 0 0 8px 8px;
}

.lightbox-title {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    color: var(--light);
    margin-bottom: 5px;
}

.lightbox-description {
    font-size: 1rem;
    color: rgba(var(--light-rgb), 0.8);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(var(--dark-rgb), 0.5);
    border: 1px solid rgba(var(--accent-rgb), 0.2);
    color: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s var(--animation-timing);
}

.lightbox-close:hover {
    background-color: var(--primary);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(var(--dark-rgb), 0.5);
    border: 1px solid rgba(var(--accent-rgb), 0.2);
    color: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s var(--animation-timing);
}

.prev-image {
    left: -70px;
}

.next-image {
    right: -70px;
}

.lightbox-nav:hover {
    background-color: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

/* Floating Decoration Elements */
.floating-decoration {
    position: absolute;
    z-index: 0;
    border-radius: 50%;
    overflow: hidden;
    opacity: 0.2;
    pointer-events: none;
}

.dec-1 {
    width: 150px;
    height: 150px;
    top: 20%;
    right: 5%;
}

.dec-2 {
    width: 120px;
    height: 120px;
    bottom: 15%;
    left: 5%;
}

.floating-decoration img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Reveal Animation for Elements */
.reveal-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--animation-timing), transform 0.8s var(--animation-timing);
}

.reveal-element.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .premium-subtitle h4 {
        font-size: 2.25rem;
    }

    .premium-title {
        font-size: 3rem;
    }

    .gallery-grid {
        gap: 15px;
    }

    .floating-decoration {
        display: none;
    }
}

@media (max-width: 992px) {
    .testimonials-gallery-section {
        padding: 80px 0;
    }

    .premium-subtitle h4 {
        font-size: 2rem;
    }

    .premium-title {
        font-size: 2.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .gallery-item.large .gallery-image {
        padding-bottom: 60%;
    }

    .prev-image {
        left: -25px;
    }

    .next-image {
        right: -25px;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 768px) {
    .testimonials-gallery-section {
        padding: 60px 0;
    }

    .premium-subtitle h4 {
        font-size: 1.75rem;
    }

    .premium-title {
        font-size: 2rem;
    }

    .premium-description {
        font-size: 1rem;
    }

    .tabs-container {
        max-width: 100%;
    }

    .tab-text {
        font-size: 0.875rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-item.large {
        grid-column: span 1;
    }

    .gallery-item.large .gallery-image {
        padding-bottom: 75%;
    }

    .lightbox-container {
        width: 95%;
    }

    .prev-image,
    .next-image {
        top: auto;
        bottom: -60px;
        transform: translateY(0);
    }

    .prev-image {
        left: calc(50% - 50px);
    }

    .next-image {
        right: calc(50% - 50px);
    }

    .lightbox-close {
        top: -50px;
        right: 50%;
        transform: translateX(50%);
    }
}

@media (max-width: 576px) {
    .testimonials-gallery-section {
        padding: 50px 0;
    }

    .premium-subtitle h4 {
        font-size: 1.5rem;
    }

    .premium-title {
        font-size: 1.75rem;
    }

    .testimonial-content {
        padding: 30px 20px;
    }

    .quote-icon {
        top: 20px;
        right: 20px;
        font-size: 2rem;
    }

    .testimonial-author {
        flex-direction: column;
        align-items: flex-start;
    }

    .author-image {
        margin-bottom: 15px;
    }
}

/* =========================================================
   Luxury Menu Showcase Section
   ========================================================= */

.menu-showcase-section {
    position: relative;
    padding: 120px 0;
    background-color: var(--light);
    overflow: hidden;
    z-index: 1;
}

/* Background Elements */
.section-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d65a31' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.07;
}

.bg-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(var(--accent-rgb), 0.03), transparent);
}

/* Menu Tabs */
.menu-tabs {
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--animation-timing), transform 0.8s var(--animation-timing);
}

.menu-tabs.revealed {
    opacity: 1;
    transform: translateY(0);
}

.menu-tabs .tabs-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(var(--dark-rgb), 0.03);
    border-radius: 50px;
    padding: 8px;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    border: 1px solid rgba(var(--accent-rgb), 0.1);
}

.menu-tabs .tab {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s var(--animation-timing);
    position: relative;
    z-index: 2;
    flex: 1;
    justify-content: center;
    color: var(--dark);
}

.menu-tabs .tab.active {
    color: var(--light);
}

.menu-tabs .tab-icon {
    margin-right: 8px;
    font-size: 0.9rem;
}

.menu-tabs .tab-text {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.menu-tabs .tab-indicator {
    position: absolute;
    top: 5px;
    left: 5px;
    height: calc(100% - 10px);
    width: calc(25% - 10px);
    background: var(--primary);
    border-radius: 40px;
    transition: transform 0.3s var(--animation-timing);
    z-index: 1;
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.3);
}

/* Menu Content */
.menu-content {
    position: relative;
    margin-bottom: 60px;
}

.menu-tab-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s var(--animation-timing), visibility 0.5s var(--animation-timing);
}

.menu-tab-content.active {
    position: relative;
    opacity: 1;
    visibility: visible;
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* Menu Items */
.menu-item {
    display: flex;
    background: linear-gradient(135deg, #fff, #f8f8f8);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s var(--animation-timing);
    opacity: 0;
    transform: translateY(30px);
}

.menu-item.revealed {
    opacity: 1;
    transform: translateY(0);
}

.menu-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.menu-item-image {
    width: 180px;
    height: 180px;
    position: relative;
    overflow: hidden;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--animation-timing);
}

.menu-item:hover .menu-item-image img {
    transform: scale(1.1);
}

.menu-item-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: var(--light);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(var(--primary-rgb), 0.3);
}

.menu-item-content {
    flex: 1;
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
}

.menu-item-title {
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--dark);
    position: relative;
    padding-bottom: 10px;
}

.menu-item-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gold-gradient);
    transition: width 0.3s var(--animation-timing);
}

.menu-item:hover .menu-item-title::after {
    width: 80px;
}

.menu-item-description {
    margin-bottom: 15px;
    flex-grow: 1;
}

.menu-item-description p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(var(--dark-rgb), 0.7);
}

.menu-item-features {
    display: flex;
    gap: 12px;
}

.feature {
    font-size: 0.75rem;
    color: rgba(var(--dark-rgb), 0.6);
    display: flex;
    align-items: center;
    gap: 5px;
}

.feature i {
    color: var(--accent);
}

/* Menu Bottom CTA */
.menu-bottom {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--animation-timing), transform 0.8s var(--animation-timing);
}

.menu-bottom.revealed {
    opacity: 1;
    transform: translateY(0);
}

.cta-box {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.03), rgba(var(--accent-rgb), 0.05));
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(var(--accent-rgb), 0.1);
}

.cta-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--light);
    border-radius: 50%;
    font-size: 1.75rem;
    margin-right: 30px;
    box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.3);
}

.cta-content {
    flex: 1;
    margin-right: 30px;
}

.cta-content h3 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.cta-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(var(--dark-rgb), 0.7);
}

/* Decorative Elements */
.floating-ingredient {
    position: absolute;
    z-index: 0;
    border-radius: 50%;
    overflow: hidden;
    opacity: 0.5;
    box-shadow: var(--shadow-md);
    pointer-events: none;
}

.floating-ingredient img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ingredient-1 {
    width: 100px;
    height: 100px;
    top: 15%;
    right: 5%;
    animation: float-1 20s ease-in-out infinite;
}

.ingredient-2 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 5%;
    animation: float-2 15s ease-in-out infinite;
}

.floating-spice {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.05), transparent 70%);
    border-radius: 50%;
    top: 35%;
    right: 12%;
    opacity: 0.6;
    animation: pulse-scale 10s ease-in-out infinite;
}

@keyframes pulse-scale {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .menu-showcase-section {
        padding: 100px 0;
    }

    .menu-grid {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .menu-showcase-section {
        padding: 80px 0;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cta-box {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .cta-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .cta-content {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .floating-ingredient,
    .floating-spice {
        display: none;
    }
}

@media (max-width: 768px) {
    .menu-showcase-section {
        padding: 60px 0;
    }

    .menu-item {
        flex-direction: column;
    }

    .menu-item-image {
        width: 100%;
        height: 200px;
    }
}

@media (max-width: 576px) {
    .menu-showcase-section {
        padding: 50px 0;
    }

    .menu-tabs .tabs-container {
        flex-wrap: wrap;
        gap: 10px;
        background: none;
        border: none;
        padding: 0;
    }

    .menu-tabs .tab {
        background: rgba(var(--dark-rgb), 0.03);
        border: 1px solid rgba(var(--accent-rgb), 0.1);
        min-width: calc(50% - 5px);
    }

    .menu-tabs .tab.active {
        background: var(--primary);
    }

    .menu-tabs .tab-indicator {
        display: none;
    }

    .cta-box {
        padding: 25px 20px;
    }
}

/* =========================================================
   Chef Spotlight & Event Types Section
   ========================================================= */

.chef-events-section {
    position: relative;
    padding: 100px 0;
    background-color: var(--light);
    overflow: hidden;
    z-index: 1;
}

/* Section Divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 80px;
}

.divider-line {
    height: 1px;
    width: 100px;
    background: var(--gold-gradient);
    max-width: 100px;
}

.divider-icon {
    margin: 0 20px;
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 1rem;
    box-shadow: 0 8px 25px rgba(var(--accent-rgb), 0.3);
}

/* Chef Spotlight */
.chef-spotlight {
    margin-bottom: 100px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.chef-image-col {
    flex: 0 0 45%;
    padding: 0 15px;
    position: relative;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s var(--animation-timing), transform 0.8s var(--animation-timing);
}

.chef-image-col.revealed {
    opacity: 1;
    transform: translateX(0);
}

.chef-content-col {
    flex: 0 0 55%;
    padding: 0 15px;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s var(--animation-timing), transform 0.8s var(--animation-timing);
}

.chef-content-col.revealed {
    opacity: 1;
    transform: translateX(0);
}

.chef-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 30px;
}

.chef-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s var(--animation-timing);
}

.chef-image:hover img {
    transform: scale(1.03);
}

.chef-experience {
    position: absolute;
    bottom: 30px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--primary);
    color: var(--light);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.3);
    border: 5px solid var(--light);
}

.chef-experience .years {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.chef-experience .text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin-top: 5px;
    line-height: 1.2;
}

.image-decoration {
    position: absolute;
    top: -20px;
    left: -20px;
    z-index: -1;
}

.decoration-shape {
    width: 180px;
    height: 180px;
    background: var(--gold-gradient);
    opacity: 0.1;
    border-radius: 23% 77% 52% 48% / 30% 30% 70% 70%;
    animation: shape-morph 8s ease-in-out infinite;
}

@keyframes shape-morph {

    0%,
    100% {
        border-radius: 23% 77% 52% 48% / 30% 30% 70% 70%;
    }

    50% {
        border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
    }
}

.chef-signature {
    position: absolute;
    bottom: 0;
    right: 15px;
    max-width: 200px;
    transform: translateY(20px);
    opacity: 0.8;
}

.chef-signature img {
    width: 100%;
    height: auto;
}

/* Chef Content Styles */
.chef-description {
    margin-bottom: 30px;
}

.chef-description p {
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(var(--dark-rgb), 0.7);
}

.highlighted-text {
    font-family: var(--font-script);
    font-size: 1.5rem !important;
    color: var(--primary) !important;
    line-height: 1.4 !important;
    position: relative;
    padding-left: 20px;
    margin-bottom: 25px !important;
}

.highlighted-text::before {
    content: '';
    position: absolute;
    top: 5px;
    bottom: 5px;
    left: 0;
    width: 4px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

.chef-achievements {
    display: flex;
    gap: 30px;
}

.achievement-item {
    display: flex;
    align-items: center;
}

.achievement-icon {
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-right: 15px;
    box-shadow: 0 8px 20px rgba(var(--accent-rgb), 0.2);
}

.achievement-content h4 {
    font-family: var(--font-secondary);
    font-size: 1.125rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.achievement-content p {
    font-size: 0.875rem;
    color: rgba(var(--dark-rgb), 0.6);
}

/* Event Types Section */
.event-types-showcase {
    margin-bottom: 80px;
}

.text-center {
    text-align: center;
}

.event-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.event-type-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s var(--animation-timing);
    opacity: 0;
    transform: translateY(30px);
}

.event-type-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.event-type-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.event-card-inner {
    padding: 40px 30px;
    background: linear-gradient(135deg, #fff, #f8f8f8);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.event-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gold-gradient);
    z-index: 2;
}

.event-icon {
    width: 70px;
    height: 70px;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
    transition: all 0.3s var(--animation-timing);
}

.event-type-card:hover .event-icon {
    background: var(--primary);
    color: var(--light);
    transform: rotateY(180deg);
}

.event-title {
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--dark);
    position: relative;
    padding-bottom: 15px;
}

.event-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gold-gradient);
    transition: width 0.3s var(--animation-timing);
}

.event-type-card:hover .event-title::after {
    width: 80px;
}

.event-description {
    margin-bottom: 20px;
    flex-grow: 1;
}

.event-description p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(var(--dark-rgb), 0.7);
}

.capacity-range {
    margin-bottom: 20px;
    font-size: 0.875rem;
    color: rgba(var(--dark-rgb), 0.6);
}

.capacity-label {
    font-weight: 600;
    margin-right: 5px;
}

.event-link {
    display: flex;
    align-items: center;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--primary);
    transition: all 0.3s var(--animation-timing);
}

.event-link i {
    margin-left: 8px;
    transition: transform 0.3s var(--animation-timing);
}

.event-link:hover {
    color: var(--accent);
}

.event-link:hover i {
    transform: translateX(5px);
}

/* Experience Counter */
.experience-counter {
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.03), rgba(var(--accent-rgb), 0.05));
    border-radius: 15px;
    padding: 50px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(var(--accent-rgb), 0.1);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--animation-timing), transform 0.8s var(--animation-timing);
}

.experience-counter.revealed {
    opacity: 1;
    transform: translateY(0);
}

.counter-wrapper {
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.counter-item {
    flex: 1;
    padding: 0 15px;
}

.counter-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.counter-value::after {
    content: '+';
    position: absolute;
    font-size: 2rem;
    top: 5px;
    right: -20px;
    color: var(--accent);
}

.counter-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(var(--dark-rgb), 0.7);
}

/* Decorative Elements */
.decoration-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    z-index: -1;
}

.circle-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -100px;
    right: -100px;
    filter: blur(100px);
}

.circle-2 {
    width: 500px;
    height: 500px;
    background: var(--accent);
    bottom: 10%;
    left: -150px;
    filter: blur(120px);
}

.decoration-spice {
    position: absolute;
    z-index: -1;
    opacity: 0.2;
    background-repeat: no-repeat;
    background-size: contain;
}

.spice-1 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 8%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%23d65a31' d='M50,12.5c-20.7,0-37.5,16.8-37.5,37.5S29.3,87.5,50,87.5S87.5,70.7,87.5,50S70.7,12.5,50,12.5z M50,75 c-13.8,0-25-11.2-25-25s11.2-25,25-25s25,11.2,25,25S63.8,75,50,75z'/%3E%3C/svg%3E");
    animation: spin 20s linear infinite;
}

.spice-2 {
    width: 80px;
    height: 80px;
    bottom: 15%;
    right: 15%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%23c6a963' d='M84.1,15.9c-18.8-18.8-49.3-18.8-68.1,0c-18.8,18.8-18.8,49.3,0,68.1c18.8,18.8,49.3,18.8,68.1,0 C102.9,65.2,102.9,34.7,84.1,15.9z M61.3,61.3c-6.2,6.2-16.4,6.2-22.6,0c-6.2-6.2-6.2-16.4,0-22.6c6.2-6.2,16.4-6.2,22.6,0 C67.6,44.9,67.6,55,61.3,61.3z'/%3E%3C/svg%3E");
    animation: spin 15s linear infinite reverse;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .chef-events-section {
        padding: 80px 0;
    }

    .event-types-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .chef-image-col,
    .chef-content-col {
        flex: 0 0 50%;
    }
}

@media (max-width: 992px) {
    .chef-spotlight .row {
        flex-direction: column;
    }

    .chef-image-col,
    .chef-content-col {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 40px;
    }

    .chef-achievements {
        flex-direction: column;
        gap: 20px;
    }

    .counter-wrapper {
        flex-wrap: wrap;
    }

    .counter-item {
        flex: 0 0 50%;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .chef-events-section {
        padding: 60px 0;
    }

    .event-types-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .experience-counter {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .chef-events-section {
        padding: 50px 0;
    }

    .section-divider {
        margin-bottom: 50px;
    }

    .divider-line {
        width: 60px;
    }

    .divider-icon {
        width: 40px;
        height: 40px;
        font-size: 0.875rem;
        margin: 0 10px;
    }

    .chef-experience {
        width: 100px;
        height: 100px;
        right: -10px;
        bottom: 20px;
    }

    .chef-experience .years {
        font-size: 2rem;
    }

    .counter-item {
        flex: 0 0 100%;
    }

    .counter-value {
        font-size: 2.5rem;
    }

    .counter-label {
        font-size: 0.875rem;
    }
}

/* =========================================================
   Contact & Booking Section
   ========================================================= */

.contact-booking-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    z-index: 1;
    color: var(--light);
}

/* Background Elements */
.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(var(--dark-rgb), 0.9), rgba(var(--dark-rgb), 0.8));
    z-index: 1;
}

.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 2;
}

/* Contact Wrapper */
.contact-wrapper {
    display: flex;
    gap: 50px;
    position: relative;
    z-index: 3;
}

.contact-info-col {
    flex: 0 0 45%;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s var(--animation-timing), transform 0.8s var(--animation-timing);
}

.contact-info-col.revealed {
    opacity: 1;
    transform: translateX(0);
}

.contact-form-col {
    flex: 0 0 55%;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s var(--animation-timing), transform 0.8s var(--animation-timing);
}

.contact-form-col.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* Contact Info Styles */
.contact-header {
    margin-bottom: 40px;
}

.contact-header .section-subtitle {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-header .section-subtitle h4 {
    font-family: var(--font-script);
    font-size: 2.5rem;
    font-weight: 400;
    margin: 0 1.5rem;
    color: var(--primary);
}

.contact-header .subtitle-line {
    flex: 1;
    height: 1px;
    background: var(--gold-gradient);
    max-width: 60px;
    position: relative;
    overflow: hidden;
}

.contact-header .section-title {
    font-family: var(--font-secondary);
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--light);
}

.contact-header .title-highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.contact-header .title-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--gold-gradient);
    opacity: 0.3;
    border-radius: 4px;
}

.contact-description {
    margin-bottom: 30px;
}

.contact-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(var(--light-rgb), 0.8);
}

/* Info Blocks */
.contact-info-blocks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.info-block {
    display: flex;
    align-items: flex-start;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(var(--primary-rgb), 0.2);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-right: 15px;
    flex-shrink: 0;
    transition: all 0.3s var(--animation-timing);
}

.info-block:hover .info-icon {
    background: var(--primary);
    color: var(--light);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.3);
}

.info-content h4 {
    font-family: var(--font-secondary);
    font-size: 1.125rem;
    margin-bottom: 8px;
    color: var(--light);
}

.info-content p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(var(--light-rgb), 0.7);
}

.info-content a {
    color: rgba(var(--light-rgb), 0.7);
    transition: color 0.3s var(--animation-timing);
}

.info-content a:hover {
    color: var(--primary);
}

/* Social Connect */
.social-connect {
    margin-top: 40px;
}

.social-connect h4 {
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: var(--light);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(var(--light-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 1rem;
    transition: all 0.3s var(--animation-timing);
}

.social-icon:hover {
    background: var(--primary);
    color: var(--light);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.3);
}

/* Contact Form Styles */
.form-container {
    background: linear-gradient(135deg, #fff, #f8f8f8);
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    color: var(--dark);
    position: relative;
    overflow: hidden;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gold-gradient);
}

.form-title {
    font-family: var(--font-secondary);
    font-size: 1.75rem;
    margin-bottom: 30px;
    color: var(--dark);
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.form-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--gold-gradient);
}

.contact-form {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

label {
    display: block;
    font-size: 0.9375rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--dark);
}

input,
select,
textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 0.9375rem;
    background-color: rgba(var(--dark-rgb), 0.03);
    border: 1px solid rgba(var(--dark-rgb), 0.1);
    border-radius: 5px;
    transition: all 0.3s var(--animation-timing);
    color: var(--dark);
    font-family: var(--font-secondary);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary);
    background-color: rgba(var(--primary-rgb), 0.02);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.form-submit .btn {
    min-width: 200px;
}

.form-note {
    text-align: center;
    font-size: 0.875rem;
    color: rgba(var(--dark-rgb), 0.6);
}

.form-note p {
    margin-bottom: 5px;
}

/* Floating Shapes */
.floating-shape {
    position: absolute;
    z-index: 0;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-1 {
    width: 200px;
    height: 200px;
    background: var(--primary);
    top: 15%;
    right: 10%;
    animation: float-shape-1 20s ease-in-out infinite;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: var(--accent);
    bottom: 20%;
    left: 5%;
    animation: float-shape-2 15s ease-in-out infinite;
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: var(--light);
    top: 10%;
    left: 15%;
    animation: float-shape-3 18s ease-in-out infinite;
}

@keyframes float-shape-1 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(30px, 20px) rotate(10deg);
    }
}

@keyframes float-shape-2 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(-30px, 15px) rotate(-10deg);
    }
}

@keyframes float-shape-3 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(20px, -15px) rotate(15deg);
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .contact-booking-section {
        padding: 100px 0;
    }

    .contact-wrapper {
        gap: 30px;
    }

    .contact-header .section-title {
        font-size: 2.5rem;
    }

    .contact-header .section-subtitle h4 {
        font-size: 2rem;
    }
}

@media (max-width: 992px) {
    .contact-booking-section {
        padding: 80px 0;
    }

    .contact-wrapper {
        flex-direction: column;
    }

    .contact-info-col,
    .contact-form-col {
        flex: 0 0 100%;
    }

    .contact-info-col {
        margin-bottom: 50px;
    }

    .form-container {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .contact-booking-section {
        padding: 60px 0;
    }

    .contact-info-blocks {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .floating-shape {
        display: none;
    }
}

@media (max-width: 576px) {
    .contact-booking-section {
        padding: 50px 0;
    }

    .contact-header .section-title {
        font-size: 2rem;
    }

    .contact-header .section-subtitle h4 {
        font-size: 1.75rem;
    }

    .form-container {
        padding: 30px 20px;
    }
}

/* =========================================================
   Luxury Footer Section
   ========================================================= */

.footer-section {
    position: relative;
    background-color: var(--dark);
    color: var(--light);
    overflow: hidden;
}

/* Footer Top */
.footer-top {
    padding: 80px 0 60px;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.98), rgba(26, 26, 26, 0.95));
}

.footer-top::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: -1;
    opacity: 0.5;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 40px;
}

/* Footer Logo Column */
.footer-logo-col {
    padding-right: 20px;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo .logo {
    display: inline-flex;
    align-items: center;
}

.footer-logo .logo-script {
    font-family: var(--font-script);
    font-size: 2rem;
    font-weight: 400;
    color: var(--light);
}

.footer-logo .logo-divider {
    font-size: 1rem;
    margin: 0 0.3rem;
}

.footer-logo .logo-bold {
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 2px;
}

.footer-description {
    margin-bottom: 25px;
}

.footer-description p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(var(--light-rgb), 0.7);
}

.footer-contact .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.footer-contact .contact-item i {
    color: var(--primary);
    margin-right: 12px;
    font-size: 1rem;
}

.footer-contact .contact-item span {
    font-size: 0.9375rem;
    color: rgba(var(--light-rgb), 0.8);
}

/* Footer Links Columns */
.footer-title {
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    margin-bottom: 25px;
    color: var(--light);
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gold-gradient);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.9375rem;
    color: rgba(var(--light-rgb), 0.7);
    transition: all 0.3s var(--animation-timing);
    display: inline-flex;
    align-items: center;
}

.footer-links a i {
    font-size: 0.75rem;
    margin-right: 8px;
    transition: transform 0.3s var(--animation-timing);
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-links a:hover i {
    transform: translateX(3px);
}

/* Newsletter Column */
.newsletter-description {
    margin-bottom: 20px;
}

.newsletter-description p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(var(--light-rgb), 0.7);
}

.newsletter-form .form-group {
    position: relative;
    margin-bottom: 25px;
}

.newsletter-form input {
    width: 100%;
    padding: 12px 60px 12px 15px;
    background-color: rgba(var(--light-rgb), 0.1);
    border: 1px solid rgba(var(--light-rgb), 0.2);
    border-radius: 5px;
    color: var(--light);
    font-size: 0.9375rem;
    transition: all 0.3s var(--animation-timing);
}

.newsletter-form input:focus {
    outline: none;
    background-color: rgba(var(--light-rgb), 0.15);
    border-color: var(--primary);
}

.newsletter-form input::placeholder {
    color: rgba(var(--light-rgb), 0.5);
}

.newsletter-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 45px;
    height: calc(100% - 10px);
    background: var(--primary);
    color: var(--light);
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s var(--animation-timing);
}

.newsletter-form button:hover {
    background: var(--primary-dark);
    transform: translateX(-3px);
}

.footer-newsletter-col .social-links {
    display: flex;
    gap: 15px;
}

.footer-newsletter-col .social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(var(--light-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 1rem;
    transition: all 0.3s var(--animation-timing);
}

.footer-newsletter-col .social-link:hover {
    background-color: var(--primary);
    color: var(--light);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.3);
}

/* Footer Bottom */
.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(var(--light-rgb), 0.1);
    background-color: rgba(var(--dark-rgb), 0.97);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright p {
    font-size: 0.875rem;
    color: rgba(var(--light-rgb), 0.6);
}

.footer-legal {
    display: flex;
    align-items: center;
}

.footer-legal a {
    font-size: 0.875rem;
    color: rgba(var(--light-rgb), 0.6);
    transition: color 0.3s var(--animation-timing);
}

.footer-legal a:hover {
    color: var(--primary);
}

.footer-legal .divider {
    margin: 0 10px;
    color: rgba(var(--light-rgb), 0.3);
}

.credits p {
    font-size: 0.875rem;
    color: rgba(var(--light-rgb), 0.6);
}

.credits i {
    color: #ff5e5e;
    margin: 0 3px;
    font-size: 0.75rem;
    animation: heartbeat 1.5s infinite;
}

.credits a {
    color: var(--primary);
    transition: color 0.3s var(--animation-timing);
}

.credits a:hover {
    color: var(--light);
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--animation-timing);
    z-index: 100;
    box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.4);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .footer-content {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-logo-col {
        grid-column: span 2;
        padding-right: 0;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .footer-top {
        padding: 60px 0 40px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-logo-col {
        grid-column: 1;
    }

    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }

    .footer-legal .divider {
        display: none;
    }
}