/* Base Styles */
:root {
    --primary: #ffc800;    /* Purple */
    --secondary: #dfaf02;  /* Pink */
    --accent: #ff6633;     /* Orange */
    --dark: #000;          /* Black */
    --light: #fff;         /* White */
    --gray: #333;          /* Dark Gray */
    --light-gray: #444;    /* Light Gray */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--light);
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

.highlight {
    background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
    display: inline-block;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header p {
    color: #bbb;
    max-width: 700px;
    margin: 0 auto;
}

/* Button Styles */
.btn-primary, .btn-secondary, .btn-outline, .btn-whatsapp, .btn-contact {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s ease;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: var(--light);
    box-shadow: 0 5px 15px rgba(255, 200, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 200, 0, 0.6);
}

.btn-secondary {
    background: linear-gradient(45deg, var(--secondary), var(--accent));
    color: var(--light);
    box-shadow: 0 5px 15px rgba(204, 51, 153, 0.4);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(204, 51, 153, 0.6);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--light);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--light);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--light);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

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

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

nav ul {
    display: flex;
    gap: 30px;
}

nav ul li a {
    font-weight: 500;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

.btn-contact {
    background: linear-gradient(45deg, var(--accent), var(--secondary));
    color: var(--light);
    padding: 8px 20px;
    box-shadow: 0 4px 15px rgba(255, 102, 51, 0.3);
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 102, 51, 0.5);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Banner Section */
.banner {
    padding: 180px 0 100px;
    position: relative;
    background: linear-gradient(to bottom, rgba(0,0,0,0.9), rgba(0,0,0,0.7)), url('../images/banner-bg.jpg');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 200, 0, 0.1), transparent 40%),
                radial-gradient(circle at 80% 30%, rgba(204, 51, 153, 0.1), transparent 40%),
                radial-gradient(circle at 50% 80%, rgba(255, 102, 51, 0.1), transparent 40%);
}

.banner .container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.banner-content {
    flex: 1;
}

.banner-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.banner-content p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #bbb;
    max-width: 600px;
}

.banner-image {
    flex: 1;
    position: relative;
}

.banner-image .image-wrapper {
    position: relative;
    z-index: 1;
}

.banner-image img {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.years-badge {
    position: absolute;
    right: -30px;
    bottom: 40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--light);
    font-weight: 800;
    box-shadow: 0 5px 20px rgba(255, 200, 0, 0.6);
    animation: rotate3d 8s ease-in-out infinite;
    transform-style: preserve-3d;
    perspective: 1000px;
    z-index: 5;
}

.years-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
    animation: pulse 2s ease-in-out infinite;
}

.years-number {
    font-size: 2.5rem;
    line-height: 1;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.years-badge p {
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-top: 3px;
}

.badge-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 70%);
    filter: blur(5px);
    animation: glow 3s ease-in-out infinite alternate;
    z-index: 1;
}

.badge-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: spin 15s linear infinite;
}

/* Vision & Mission Section */
.vision-mission {
    padding: 120px 0;
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgba(255, 200, 0, 0.08), transparent 30%),
                radial-gradient(circle at 90% 80%, rgba(255, 102, 51, 0.08), transparent 30%);
    overflow: hidden;
}

.vision-mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern-bg.png');
    opacity: 0.03;
    pointer-events: none;
}

.anniversary-badge {
    position: relative;
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent));
    color: var(--light);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 20px;
    margin-top: 10px;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(255, 200, 0, 0.3);
    animation: badgePulse 3s infinite alternate;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 5px 15px rgba(255, 200, 0, 0.3);
    }
    50% {
        box-shadow: 0 5px 20px rgba(255, 200, 0, 0.5), 0 0 30px rgba(204, 51, 153, 0.3);
    }
}

/* New VM Layout */
.vm-layout {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 60px 0;
    position: relative;
    flex-wrap: wrap;
}

.vm-card {
    flex: 1;
    max-width: 400px;
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.7), rgba(20, 20, 20, 0.7));
    border-radius: 15px;
    padding: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 200, 0, 0.1);
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 200, 0, 0.1) 0%, rgba(204, 51, 153, 0.05) 30%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
    mix-blend-mode: screen;
    z-index: 0;
}

.vm-card:hover .card-glow {
    opacity: 1;
    transform: rotate(15deg);
}

.card-content {
    padding: 40px 30px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.vm-card:hover .card-content {
    transform: translateZ(20px);
}

.vm-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 200, 0, 0.3);
}

.vision-card:hover {
    border-color: rgba(255, 200, 0, 0.4);
}

.mission-card:hover {
    border-color: rgba(255, 102, 51, 0.4);
}

.icon-container {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.vision-card .icon-container::before,
.mission-card .icon-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    opacity: 0.3;
    z-index: -1;
    filter: blur(8px);
    transition: all 0.3s ease;
}

.vm-card:hover .icon-container::before {
    filter: blur(12px);
    opacity: 0.6;
}

.vision-card .icon-container::before {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
}

.mission-card .icon-container::before {
    background: linear-gradient(45deg, var(--secondary), var(--accent));
}

.vm-card i {
    font-size: 2.5rem;
    background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: all 0.3s ease;
}

.vm-card:hover i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(255, 200, 0, 0.5));
}

.vision-card i {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.mission-card i {
    background: linear-gradient(45deg, var(--secondary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.vm-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    position: relative;
    display: inline-block;
}

.vm-card h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    transition: all 0.5s ease;
    transform: translateX(-50%);
}

.mission-card h3::after {
    background: linear-gradient(45deg, var(--secondary), var(--accent));
}

.vm-card:hover h3::after {
    width: 80%;
}

.vm-card p {
    color: #bbb;
    line-height: 1.7;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.vm-card:hover p {
    color: #ddd;
}

/* Logo in the middle */
.vm-logo-container {
    width: 180px;
    height: 180px;
    position: relative;
    z-index: 2;
    margin: 0 20px;
    animation: floatLogo 6s ease-in-out infinite;
}

@keyframes floatLogo {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(2deg);
    }
    50% {
        transform: translateY(0) rotate(0deg);
    }
    75% {
        transform: translateY(10px) rotate(-2deg);
    }
}

.logo-frame {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.logo-frame::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent), var(--primary));
    background-size: 400% 400%;
    border-radius: 50%;
    z-index: -1;
    filter: blur(15px);
    opacity: 0.5;
    animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.logo-frame img {
    width: 80%;
    height: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5));
}

.logo-frame:hover img {
    transform: scale(1.1);
    filter: drop-shadow(0 8px 25px rgba(255, 200, 0, 0.6));
}

/* Slogan */
.slogan-container {
    text-align: center;
    margin: 70px auto 0;
    position: relative;
    max-width: 800px;
    padding: 0 20px;
}

.slogan-text {
    font-size: 1.5rem;
    font-weight: 300;
    font-style: italic;
    color: var(--light);
    line-height: 1.5;
    background: linear-gradient(45deg, #fff, #ddd);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    z-index: 2;
}

.quote-marks {
    font-size: 2rem;
    opacity: 0.5;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.quote-marks i {
    background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.quote-marks.left {
    left: -20px;
    animation: quoteLeft 3s ease-in-out infinite;
}

.quote-marks.right {
    right: -20px;
    animation: quoteRight 3s ease-in-out infinite;
}

@keyframes quoteLeft {
    0%, 100% {
        transform: translateY(-50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-60%) scale(1.1);
        opacity: 0.7;
    }
}

@keyframes quoteRight {
    0%, 100% {
        transform: translateY(-50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-40%) scale(1.1);
        opacity: 0.7;
    }
}

.slogan-underline {
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), var(--accent), transparent);
    margin: 15px auto 0;
    position: relative;
    animation: underlineAnimate 4s forwards;
}

@keyframes underlineAnimate {
    0% {
        width: 0;
    }
    100% {
        width: 70%;
    }
}

/* Legacy Section */
.legacy {
    padding: 150px 0;
    position: relative;
    background: linear-gradient(to bottom, rgba(0,0,0,0.95) 0%, rgba(15,15,15,0.9) 100%);
    overflow: hidden;
}

.legacy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(255, 200, 0, 0.07), transparent 35%),
                radial-gradient(circle at 80% 70%, rgba(255, 102, 51, 0.07), transparent 35%);
    pointer-events: none;
}

.legacy .container {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 2;
}

/* Legacy Content Section */
.legacy-content {
    flex: 1;
    max-width: 550px;
}

.legacy-header {
    text-align: left;
    margin-bottom: 40px;
}

.legacy-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.glow-legacy {
    text-shadow: 0 0 10px rgba(255, 200, 0, 0.3), 0 0 20px rgba(204, 51, 153, 0.2);
    animation: legacyGlow 3s infinite alternate;
}

@keyframes legacyGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(255, 200, 0, 0.3), 0 0 20px rgba(204, 51, 153, 0.2);
    }
    50% {
        text-shadow: 0 0 15px rgba(255, 200, 0, 0.5), 0 0 30px rgba(204, 51, 153, 0.3), 0 0 40px rgba(255, 102, 51, 0.2);
    }
}

.legacy-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    margin: 0;
    position: relative;
    overflow: hidden;
}

.legacy-divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    animation: dividerShine 3s infinite;
}

@keyframes dividerShine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(300%);
    }
}

.legacy-text-container {
    padding-left: 20px;
    border-left: 1px solid rgba(255, 200, 0, 0.2);
    position: relative;
}

.legacy-paragraph {
    margin-bottom: 25px;
    color: #bbb;
    font-size: 1.05rem;
    line-height: 1.8;
    letter-spacing: 0.3px;
    position: relative;
    transition: all 0.3s ease;
}

.legacy-paragraph:hover {
    color: #ddd;
}

.first-letter {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--light);
    float: left;
    line-height: 1;
    margin-right: 8px;
    margin-top: 5px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.highlight-text {
    font-weight: 600;
    color: var(--light);
    position: relative;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
}

.legacy-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
    padding-right: 60px;
}

.legacy-btn i {
    position: absolute;
    right: 25px;
    transition: all 0.3s ease;
}

.legacy-btn:hover i {
    right: 20px;
    transform: scale(1.2);
}

.legacy-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--secondary), var(--accent));
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.legacy-btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Legacy Image Section */
.legacy-image {
    flex: 1;
    position: relative;
    padding: 20px;
}

.image-frame {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
}

.legacy-image:hover .image-frame {
    transform: perspective(1000px) rotateY(0deg);
}

.image-frame img {
    width: 100%;
    display: block;
    border-radius: 15px;
    transition: all 0.5s ease;
    filter: brightness(0.9) contrast(1.1);
}

.legacy-image:hover .image-frame img {
    transform: scale(1.05);
    filter: brightness(1) contrast(1.15);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 200, 0, 0.2), rgba(204, 51, 153, 0.1), rgba(255, 102, 51, 0.2));
    mix-blend-mode: overlay;
    opacity: 0.6;
    transition: all 0.5s ease;
}

.legacy-image:hover .image-overlay {
    opacity: 0.8;
}

/* Luxury Corner Borders */
.image-border {
    position: absolute;
    width: 50px;
    height: 50px;
    border-color: var(--primary);
    z-index: 0;
    transition: all 0.5s ease;
}

.top-left {
    top: 0;
    left: 0;
    border-top: 2px solid;
    border-left: 2px solid;
    border-top-left-radius: 10px;
}

.top-right {
    top: 0;
    right: 0;
    border-top: 2px solid;
    border-right: 2px solid;
    border-top-right-radius: 10px;
}

.bottom-left {
    bottom: 0;
    left: 0;
    border-bottom: 2px solid;
    border-left: 2px solid;
    border-bottom-left-radius: 10px;
}

.bottom-right {
    bottom: 0;
    right: 0;
    border-bottom: 2px solid;
    border-right: 2px solid;
    border-bottom-right-radius: 10px;
}

.legacy-image:hover .image-border {
    width: 70px;
    height: 70px;
    border-color: var(--secondary);
    box-shadow: 0 0 15px rgba(255, 200, 0, 0.3);
}

/* Image Smoke Effects */
.image-smoke-effect {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(
        circle at center,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 30%,
        rgba(255, 255, 255, 0) 70%
    );
    filter: blur(20px);
    mix-blend-mode: overlay;
    z-index: 2;
    opacity: 0;
    animation: imageSmokeFloat 8s ease-in-out infinite;
}

.legacy-image:hover .image-smoke-effect {
    opacity: 1;
}

.image-smoke-1 {
    top: -20px;
    right: -20px;
    animation-delay: 0s;
}

.image-smoke-2 {
    top: 50%;
    left: -30px;
    animation-delay: 2s;
}

.image-smoke-3 {
    bottom: -20px;
    right: 20%;
    animation-delay: 4s;
}

@keyframes imageSmokeFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }
    25% {
        opacity: 0.7;
    }
    50% {
        transform: translateY(-30px) scale(1.5);
        opacity: 0.5;
    }
    75% {
        opacity: 0.3;
    }
}

/* Hookah Animation */
.legacy-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    opacity: 0.5;
    pointer-events: none;
}

.smoke-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(
        circle at center,
        rgba(255, 200, 0, 0.05) 0%,
        rgba(204, 51, 153, 0.03) 40%,
        rgba(255, 102, 51, 0.01) 70%,
        transparent 100%
    );
    filter: blur(40px);
    opacity: 0.4;
    mix-blend-mode: screen;
}

.smoke-circle-1 {
    width: 500px;
    height: 500px;
    top: -100px;
    right: 15%;
    animation: floatCircle 25s linear infinite;
}

.smoke-circle-2 {
    width: 400px;
    height: 400px;
    bottom: 5%;
    left: 10%;
    animation: floatCircle 20s linear infinite 5s;
}

.smoke-circle-3 {
    width: 300px;
    height: 300px;
    top: 40%;
    right: 30%;
    animation: floatCircle 15s linear infinite 10s;
}

@keyframes floatCircle {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-50px) scale(1.1);
        opacity: 0.6;
    }
}

/* Hookah Container */
.hookah-container {
    position: absolute;
    right: 0;
    top: -100px;
    width: 200px;
    height: 200px;
    z-index: 10;
    transform: rotate(-10deg);
    transform-origin: center;
    animation: floatHookah 10s ease-in-out infinite;
    pointer-events: none;
}

@keyframes floatHookah {
    0%, 100% {
        transform: rotate(-10deg) translateY(0);
    }
    50% {
        transform: rotate(-8deg) translateY(-10px);
    }
}

.hookah-body {
    position: relative;
    width: 100%;
    height: 100%;
}

.hookah-base {
    width: 80px;
    height: 40px;
    background: linear-gradient(to bottom, #3d3d3d, #222);
    border-radius: 50% 50% 10px 10px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.1);
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.5));
}

.hookah-stem {
    width: 12px;
    height: 120px;
    background: linear-gradient(to right, #555, #333, #555);
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.hookah-bowl {
    width: 30px;
    height: 25px;
    background: linear-gradient(to bottom, #6b4433, #3a2b1e);
    border-radius: 8px 8px 0 0;
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    overflow: hidden;
}

.ember {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 12px;
    background: linear-gradient(to bottom, rgba(255,102,51,0.8), rgba(204,51,51,0.4));
    animation: emberGlow 3s ease-in-out infinite;
}

@keyframes emberGlow {
    0%, 100% {
        opacity: 0.6;
        box-shadow: 0 0 10px rgba(255,102,51,0.5);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 20px rgba(255,102,51,0.8), 0 0 30px rgba(255,102,51,0.4);
    }
}

.hookah-hose {
    width: 8px;
    height: 80px;
    background: linear-gradient(to right, #444, #333, #444);
    position: absolute;
    top: 120px;
    right: 20px;
    border-radius: 10px;
    transform: rotate(-30deg);
    transform-origin: top;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.smoke-animation {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 200px;
    z-index: 3;
}

.smoke-trail {
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50px;
    animation: smokeTrail 3s linear infinite;
}

@keyframes smokeTrail {
    0% {
        height: 0;
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    50% {
        height: 20px;
        opacity: 0.5;
    }
    100% {
        height: 0;
        top: 10px;
        opacity: 0;
    }
}

.smoke-cloud {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(
        circle at center,
        rgba(255,255,255,0.3) 0%,
        rgba(255,255,255,0.15) 40%,
        rgba(255,255,255,0) 70%
    );
    opacity: 0;
    filter: blur(10px);
    mix-blend-mode: screen;
    animation: smokeCloud 6s linear infinite;
}

.smoke-cloud-1 {
    width: 70px;
    height: 70px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.smoke-cloud-2 {
    width: 60px;
    height: 60px;
    left: 30%;
    transform: translateX(-50%);
    animation-delay: 2s;
}

.smoke-cloud-3 {
    width: 80px;
    height: 80px;
    left: 60%;
    transform: translateX(-50%);
    animation-delay: 4s;
}

@keyframes smokeCloud {
    0% {
        transform: translateY(20px) translateX(-50%) scale(0.2);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    50% {
        transform: translateY(-50px) translateX(-30%) scale(1.2);
        opacity: 0.5;
    }
    90% {
        opacity: 0.2;
    }
    100% {
        transform: translateY(-120px) translateX(-20%) scale(1.8);
        opacity: 0;
    }
}

/* Products Section */
.products {
    padding: 120px 0;
    position: relative;
}

/* Luxury Products Section */
.luxury-products {
    position: relative;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.9);
}

.products-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(255, 200, 0, 0.05), transparent 30%),
                radial-gradient(circle at 80% 70%, rgba(255, 102, 51, 0.05), transparent 30%);
}

.particle-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(
        ellipse at center,
        rgba(255, 200, 0, 0.2) 0%,
        rgba(204, 51, 153, 0.1) 40%,
        rgba(255, 102, 51, 0.05) 70%,
        transparent 100%
    );
    filter: blur(10px);
    opacity: 0.2;
    mix-blend-mode: screen;
    animation: particleFloat 30s linear infinite;
}

.particle-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -150px;
    animation-duration: 40s;
}

.particle-2 {
    width: 250px;
    height: 250px;
    bottom: 20%;
    right: -100px;
    animation-duration: 35s;
    animation-delay: 5s;
}

.particle-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 30%;
    animation-duration: 30s;
    animation-delay: 10s;
}

.particle-4 {
    width: 180px;
    height: 180px;
    bottom: 10%;
    left: 20%;
    animation-duration: 28s;
    animation-delay: 7s;
}

.particle-5 {
    width: 220px;
    height: 220px;
    top: 30%;
    right: 15%;
    animation-duration: 32s;
    animation-delay: 3s;
}

@keyframes particleFloat {
    0% {
        transform: translateX(0) translateY(0) rotate(0deg);
    }
    100% {
        transform: translateX(500px) translateY(100px) rotate(360deg);
    }
}

/* Header Styling */
.animated-header {
    position: relative;
    margin-bottom: 80px;
}

.header-line {
    width: 120px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--primary), var(--secondary), var(--accent), transparent);
    margin: 0 auto 20px;
    position: relative;
}

.animated-header h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.luxury-highlight {
    animation: colorShift 8s infinite alternate;
    background-size: 200% 200%;
    position: relative;
}

@keyframes colorShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.luxury-products .section-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 20px;
    color: #bbb;
}

/* Product Row */
.luxury-products .product-row {
    margin-bottom: 120px;
    position: relative;
    z-index: 2;
}

.luxury-products .product-row:last-child {
    margin-bottom: 0;
}

/* Luxury Card Styles */
.luxury-card {
    display: flex;
    align-items: center;
    gap: 70px;
    margin-bottom: 0;
    padding: 30px;
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.7), rgba(15, 15, 15, 0.7));
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 200, 0, 0.08);
}

.luxury-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 200, 0, 0.2);
}

.luxury-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 200, 0, 0.2), rgba(204, 51, 153, 0.2), rgba(255, 102, 51, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.luxury-card:hover::before {
    opacity: 1;
}

.luxury-card.reverse {
    flex-direction: row-reverse;
}

/* Product Image Styles */
.product-image-container {
    flex: 1;
    position: relative;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-backdrop {
    position: absolute;
    width: 90%;
    height: 90%;
    top: 5%;
    left: 5%;
    border-radius: 10px;
    background: radial-gradient(circle at center, rgba(255, 200, 0, 0.1), rgba(204, 51, 153, 0.05), transparent 70%);
    filter: blur(15px);
    opacity: 0.5;
    transition: all 0.5s ease;
    transform: rotate(-3deg);
}

.luxury-card:hover .image-backdrop {
    opacity: 0.8;
    transform: rotate(0deg) scale(1.05);
}

.product-image {
    position: relative;
    display: flex;
    justify-content: center;
    height: 400px;
    width: 100%;
    z-index: 2;
}

.product-image img {
    max-height: 380px;
    max-width: 90%;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4));
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    transform-origin: center bottom;
    transform: translateY(0) rotate(0deg);
}

.luxury-card:hover .product-image img {
    transform: translateY(-15px) rotate(-2deg);
    filter: drop-shadow(0 25px 40px rgba(255, 200, 0, 0.4));
}

.reverse:hover .product-image img {
    transform: translateY(-15px) rotate(2deg);
}

.image-glow {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 20px;
    background: radial-gradient(ellipse at center, rgba(255, 200, 0, 0.4), rgba(204, 51, 153, 0.2), transparent 70%);
    filter: blur(8px);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.luxury-card:hover .image-glow {
    opacity: 1;
}

/* Smoke Effects */
.smoke-effect {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(
        circle at center,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.05) 40%,
        rgba(255, 255, 255, 0) 70%
    );
    mix-blend-mode: screen;
    filter: blur(15px);
    opacity: 0;
    transition: all 0.8s ease;
}

.smoke-effect.top-right {
    top: 20px;
    right: 20px;
}

.smoke-effect.bottom-left {
    bottom: 20px;
    left: 20px;
}

.smoke-effect.top-left {
    top: 20px;
    left: 20px;
}

.smoke-effect.bottom-right {
    bottom: 20px;
    right: 20px;
}

.luxury-card:hover .smoke-effect {
    opacity: 0.7;
    transform: scale(1.3) translateY(-10px);
}

/* Product Badge */
.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 5px 15px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(255, 200, 0, 0.3);
    z-index: 3;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-badge.premium {
    background: linear-gradient(45deg, var(--primary), var(--accent));
}

.product-badge.limited {
    background: linear-gradient(45deg, var(--secondary), var(--accent));
}

/* Product Info */
.luxury-card .product-info {
    flex: 1;
    padding: 20px 10px;
}

.product-title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--light);
    position: relative;
    display: inline-block;
    background: linear-gradient(45deg, var(--light), #ddd);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: all 0.3s ease;
}

.luxury-card:hover .product-title {
    background: linear-gradient(45deg, var(--light), #fff);
    -webkit-background-clip: text;
    background-clip: text;
}

.info-divider {
    width: 50px;
    height: 3px;
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    position: relative;
    overflow: hidden;
    transition: width 0.5s ease;
}

.info-divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    animation: dividerShineLuxury 3s infinite;
}

@keyframes dividerShineLuxury {
    0% {
        left: -100%;
    }
    100% {
        left: 200%;
    }
}

.luxury-card:hover .info-divider {
    width: 80px;
}

.product-description {
    margin-bottom: 30px;
    color: #bbb;
    line-height: 1.7;
    font-size: 1.05rem;
    transition: color 0.3s ease;
}

.luxury-card:hover .product-description {
    color: #ddd;
}

/* Luxury Button */
.luxury-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    overflow: hidden;
    padding-right: 50px;
}

.luxury-btn i {
    position: absolute;
    right: 25px;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.luxury-btn:hover i {
    right: 20px;
    opacity: 1;
}

.luxury-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.luxury-btn:hover {
    border-color: transparent;
    color: white;
}

.luxury-btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Hookah Section */
.hookah-section {
    background-color: var(--dark);
    padding: 150px 0;
    position: relative;
    overflow: hidden;
}

/* Luxury Hookah Background */
.hookah-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Animated Particles */
.hookah-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.floating-particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
    filter: blur(10px);
    background: radial-gradient(
        ellipse at center,
        rgba(255, 200, 0, 0.3) 0%,
        rgba(204, 51, 153, 0.2) 40%,
        rgba(255, 102, 51, 0.1) 70%,
        transparent 100%
    );
    mix-blend-mode: screen;
}

.particle-1 {
    width: 250px;
    height: 250px;
    top: -50px;
    right: 10%;
    animation: floatParticle 25s ease-in-out infinite alternate;
}

.particle-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: -50px;
    animation: floatParticle 20s ease-in-out infinite alternate-reverse;
}

.particle-3 {
    width: 180px;
    height: 180px;
    top: 40%;
    right: 30%;
    animation: floatParticle 30s ease-in-out infinite alternate;
    animation-delay: 5s;
}

.particle-4 {
    width: 150px;
    height: 150px;
    bottom: 10%;
    right: 5%;
    animation: floatParticle 22s ease-in-out infinite alternate-reverse;
    animation-delay: 3s;
}

.particle-5 {
    width: 220px;
    height: 220px;
    top: 20%;
    left: 20%;
    animation: floatParticle 28s ease-in-out infinite alternate;
    animation-delay: 7s;
}

@keyframes floatParticle {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    50% {
        transform: translateY(100px) translateX(50px) rotate(10deg);
    }
    100% {
        transform: translateY(50px) translateX(100px) rotate(20deg);
    }
}

/* Animated Gradient Overlay */
.hookah-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 20%, rgba(255, 102, 51, 0.08), transparent 40%),
                radial-gradient(circle at 30% 70%, rgba(204, 51, 153, 0.08), transparent 40%),
                radial-gradient(circle at 50% 50%, rgba(255, 200, 0, 0.05), transparent 50%);
    animation: pulseGradient 15s infinite alternate;
}

@keyframes pulseGradient {
    0% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        opacity: 0.5;
    }
}

/* Decorative Borders */
.luxury-border {
    position: absolute;
    z-index: 2;
    opacity: 0.3;
    background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), var(--accent), transparent);
}

.top-border, .bottom-border {
    height: 1px;
    width: 90%;
    left: 5%;
}

.top-border {
    top: 30px;
}

.bottom-border {
    bottom: 30px;
}

/* Hookah Grid */
.hookah-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

/* Section Header Styling */
.luxury-icon {
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 15px;
    opacity: 0.8;
    text-shadow: 0 0 10px rgba(255, 102, 51, 0.5);
    animation: iconPulse 3s infinite alternate;
}

@keyframes iconPulse {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }
    100% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.animate-line {
    width: 0;
    animation: lineExpand 1.5s forwards ease-out;
    animation-delay: 0.3s;
}

@keyframes lineExpand {
    0% {
        width: 0;
    }
    100% {
        width: 120px;
    }
}

.reveal-text {
    position: relative;
    overflow: hidden;
}

.reveal-text::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: translateX(-100%);
    animation: revealText 1.5s forwards cubic-bezier(0.77, 0, 0.18, 1);
    opacity: 0.7;
    mix-blend-mode: overlay;
}

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

.fade-in-text {
    opacity: 0;
    animation: fadeInText 1.5s forwards ease-out;
    animation-delay: 0.5s;
}

@keyframes fadeInText {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.golden-gradient {
    background: linear-gradient(45deg, #c6a55a, #f0e0a2, #c6a55a);
    background-size: 200% 200%;
    animation: goldenShine 8s linear infinite;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

@keyframes goldenShine {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.section-accent {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 200, 0, 0.1), transparent 70%);
    top: -50px;
    right: -50px;
    filter: blur(20px);
    z-index: -1;
    opacity: 0.5;
    animation: accentPulse 8s infinite alternate;
}

@keyframes accentPulse {
    0% {
        opacity: 0.2;
        transform: scale(0.9);
    }
    100% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

/* Luxury Hookah Card */
.hookah-card {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.8), rgba(15, 15, 15, 0.8));
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    position: relative;
    border: 1px solid rgba(255, 102, 51, 0.08);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    height: 100%;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.luxury-perspective {
    transform: perspective(1000px) rotateX(0deg);
    transition: transform 0.7s ease;
}

.luxury-perspective:hover {
    transform: perspective(1000px) rotateX(5deg) translateY(-15px);
}

.hookah-card:hover {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4),
                0 0 30px rgba(255, 200, 0, 0.2);
    border-color: rgba(255, 102, 51, 0.3);
}

.card-decoration {
    position: absolute;
    width: 50px;
    height: 50px;
    z-index: 2;
}

.card-decoration.top-left {
    top: 15px;
    left: 15px;
    border-top: 2px solid rgba(255, 200, 0, 0.3);
    border-left: 2px solid rgba(255, 200, 0, 0.3);
    border-top-left-radius: 10px;
}

.card-decoration.top-right {
    top: 15px;
    right: 15px;
    border-top: 2px solid rgba(204, 51, 153, 0.3);
    border-right: 2px solid rgba(204, 51, 153, 0.3);
    border-top-right-radius: 10px;
}

.card-decoration.bottom-left {
    bottom: 15px;
    left: 15px;
    border-bottom: 2px solid rgba(255, 102, 51, 0.3);
    border-left: 2px solid rgba(255, 102, 51, 0.3);
    border-bottom-left-radius: 10px;
}

.card-decoration.bottom-right {
    bottom: 15px;
    right: 15px;
    border-bottom: 2px solid rgba(255, 200, 0, 0.3);
    border-right: 2px solid rgba(255, 200, 0, 0.3);
    border-bottom-right-radius: 10px;
}

.hookah-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 102, 51, 0.3), rgba(204, 51, 153, 0.3), rgba(255, 200, 0, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hookah-card:hover::before {
    opacity: 1;
}

/* Hookah Image Container */
.hookah-image-container {
    position: relative;
    height: 320px;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.image-glow {
    position: absolute;
    width: 90%;
    height: 90%;
    top: 5%;
    left: 5%;
    border-radius: 10px;
    filter: blur(25px);
    opacity: 0.4;
    z-index: 1;
    transition: all 0.8s ease;
}

.royal-glow {
    background: radial-gradient(circle at center, rgba(255, 200, 0, 0.3), rgba(204, 51, 153, 0.2), transparent 70%);
}

.modern-glow {
    background: radial-gradient(circle at center, rgba(204, 51, 153, 0.3), rgba(255, 102, 51, 0.2), transparent 70%);
}

.classic-glow {
    background: radial-gradient(circle at center, rgba(255, 102, 51, 0.3), rgba(255, 200, 0, 0.2), transparent 70%);
}

.compact-glow {
    background: radial-gradient(circle at center, rgba(255, 200, 0, 0.3), rgba(255, 102, 51, 0.2), transparent 70%);
}

.hookah-card:hover .image-glow {
    opacity: 0.8;
    filter: blur(15px);
    transform: scale(1.1);
}

.hookah-image {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
    z-index: 2;
    transform-style: preserve-3d;
}

.hookah-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
    z-index: 1;
    opacity: 0;
    transition: opacity 0.7s ease;
}

.hookah-card:hover .hookah-image::before {
    opacity: 1;
}

.parallax-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    transform-origin: center;
    transform: translateZ(0);
    filter: brightness(0.9) contrast(1.1);
}

.hookah-card:hover .parallax-image {
    transform: translateZ(20px) scale(1.05);
    filter: brightness(1) contrast(1.15);
}

.shine-effect {
    position: absolute;
    top: -200%;
    left: -200%;
    width: 500%;
    height: 500%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 20%,
        rgba(255, 255, 255, 0) 40%
    );
    pointer-events: none;
    transform: rotate(30deg);
    animation: shineEffect 8s linear infinite;
    z-index: 5;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hookah-card:hover .shine-effect {
    opacity: 1;
}

@keyframes shineEffect {
    0% {
        transform: rotate(30deg) translateX(-100%);
    }
    100% {
        transform: rotate(30deg) translateX(100%);
    }
}

/* Smoke Effects */
.smoke-effect {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(
        circle at center,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        transparent 80%
    );
    filter: blur(15px);
    opacity: 0;
    mix-blend-mode: screen;
    z-index: 3;
    transition: all 1s ease;
}

.smoke-1 {
    top: 30px;
    right: 20px;
}

.smoke-2 {
    top: 50%;
    left: 20px;
    width: 60px;
    height: 60px;
}

.smoke-3 {
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
}

.hookah-card:hover .smoke-effect {
    opacity: 0.8;
    animation: smokeRise 7s ease-out infinite;
}

.hookah-card:hover .smoke-1 {
    animation-delay: 0.2s;
}

.hookah-card:hover .smoke-2 {
    animation-delay: 1s;
}

.hookah-card:hover .smoke-3 {
    animation-delay: 0.5s;
}

@keyframes smokeRise {
    0% {
        opacity: 0;
        transform: translateY(0) scale(1);
    }
    20% {
        opacity: 0.8;
        transform: translateY(-10px) scale(1.1);
    }
    80% {
        opacity: 0.3;
        transform: translateY(-40px) scale(1.8);
    }
    100% {
        opacity: 0;
        transform: translateY(-60px) scale(2);
    }
}

/* Hookah Overlay */
.hookah-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 30%, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9));
    opacity: 0.7;
    transition: opacity 0.5s ease, background 0.5s ease;
    z-index: 2;
}

.hookah-card:hover .hookah-overlay {
    opacity: 0.8;
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.85));
}

/* Custom Badges */
.hookah-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 7px 18px;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    transform: translateZ(30px);
}

.royal-badge {
    background: linear-gradient(45deg, rgba(255, 200, 0, 0.9), rgba(204, 51, 153, 0.9));
}

.modern-badge {
    background: linear-gradient(45deg, rgba(204, 51, 153, 0.9), rgba(255, 102, 51, 0.9));
}

.classic-badge {
    background: linear-gradient(45deg, rgba(255, 102, 51, 0.9), rgba(255, 200, 0, 0.9));
}

.compact-badge {
    background: linear-gradient(45deg, rgba(255, 200, 0, 0.9), rgba(102, 204, 153, 0.9));
}

.hookah-card:hover .hookah-badge {
    transform: translateZ(30px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Hookah Info */
.hookah-info {
    padding: 30px;
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.info-accent {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 200, 0, 0.05), transparent 70%);
    bottom: 10px;
    right: 10px;
    filter: blur(20px);
    opacity: 0.3;
    transition: all 0.5s ease;
    z-index: -1;
}

.hookah-card:hover .info-accent {
    opacity: 0.5;
    width: 180px;
    height: 180px;
}

.hookah-title {
    font-size: 1.9rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    background: linear-gradient(45deg, var(--light), #ddd);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: all 0.5s ease;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    letter-spacing: 0.5px;
}

.hookah-card:hover .hookah-title {
    background: linear-gradient(45deg, var(--light), #fff);
    -webkit-background-clip: text;
    background-clip: text;
    letter-spacing: 1px;
}

.animate-width {
    width: 0;
    animation: widthGrow 1.5s forwards cubic-bezier(0.25, 1, 0.5, 1);
    animation-delay: 0.3s;
}

@keyframes widthGrow {
    0% {
        width: 0;
    }
    100% {
        width: 50px;
    }
}

.hookah-divider {
    width: 50px;
    height: 3px;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
    transition: width 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.royal-btn + .hookah-divider, .royal-title + .hookah-divider {
    background: linear-gradient(to right, var(--primary), var(--secondary));
}

.modern-btn + .hookah-divider, .modern-title + .hookah-divider {
    background: linear-gradient(to right, var(--secondary), var(--accent));
}

.classic-btn + .hookah-divider, .classic-title + .hookah-divider {
    background: linear-gradient(to right, var(--accent), var(--primary));
}

.compact-btn + .hookah-divider, .compact-title + .hookah-divider {
    background: linear-gradient(to right, var(--primary), #40a080);
}

.hookah-divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    animation: dividerShineHookah 3s infinite;
}

@keyframes dividerShineHookah {
    0% {
        left: -100%;
    }
    100% {
        left: 200%;
    }
}

.hookah-card:hover .hookah-divider {
    width: 80px;
}

.hookah-description {
    color: #bbb;
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 1.05rem;
    transition: all 0.5s ease;
    flex: 1;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.hookah-card:hover .hookah-description {
    color: #ddd;
    letter-spacing: 0.2px;
}

/* Features */
.hookah-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #bbb;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.feature i {
    color: var(--accent);
    font-size: 0.95rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.hookah-card:hover .feature {
    color: #ddd;
    transform: translateX(5px);
}

.hookah-card:hover .feature i {
    opacity: 1;
    transform: scale(1.1);
}

/* Price Container */
.price-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.hookah-price {
    display: inline-block;
    padding: 8px 18px;
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 8px;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.royal-price {
    background: linear-gradient(45deg, rgba(255, 200, 0, 0.8), rgba(204, 51, 153, 0.8));
}

.modern-price {
    background: linear-gradient(45deg, rgba(204, 51, 153, 0.8), rgba(255, 102, 51, 0.8));
}

.classic-price {
    background: linear-gradient(45deg, rgba(255, 102, 51, 0.8), rgba(255, 200, 0, 0.8));
}

.compact-price {
    background: linear-gradient(45deg, rgba(255, 200, 0, 0.8), rgba(102, 204, 153, 0.8));
}

.hookah-price::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: inherit;
    filter: blur(10px) brightness(1.2);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
}

.hookah-card:hover .hookah-price {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.hookah-card:hover .hookah-price::before {
    opacity: 0.5;
}

.price-tag {
    font-size: 0.85rem;
    color: #bbb;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 4px 12px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.hookah-card:hover .price-tag {
    color: #ddd;
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

/* Luxury Button */
.hookah-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
    padding: 12px 60px 12px 25px;
    align-self: flex-start;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 1rem;
    color: white;
    border: none;
    background: transparent;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    z-index: 1;
}

.royal-btn {
    background: linear-gradient(45deg, rgba(255, 200, 0, 0.8), rgba(204, 51, 153, 0.8));
}

.modern-btn {
    background: linear-gradient(45deg, rgba(204, 51, 153, 0.8), rgba(255, 102, 51, 0.8));
}

.classic-btn {
    background: linear-gradient(45deg, rgba(255, 102, 51, 0.8), rgba(255, 200, 0, 0.8));
}

.compact-btn {
    background: linear-gradient(45deg, rgba(255, 200, 0, 0.8), rgba(102, 204, 153, 0.8));
}

.hookah-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    filter: blur(15px);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hookah-btn i {
    position: absolute;
    right: 25px;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.hookah-btn .btn-text {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.hookah-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.hookah-btn:hover::after {
    opacity: 0.5;
}

.hookah-btn:hover i {
    right: 20px;
    opacity: 1;
    transform: scale(1.2);
}

.hookah-btn:hover .btn-text {
    transform: translateX(-5px);
}

@media (max-width: 992px) {
    .hookah-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
    }
}

@media (min-width: 993px) and (max-width: 1200px) {
    .hookah-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(45deg, rgba(255, 200, 0, 0.8), rgb(255, 234, 0), rgba(255, 200, 0, 0.8));
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(255, 200, 0, 0.1), transparent 50%),
                radial-gradient(circle at 30% 70%, rgba(255, 102, 51, 0.1), transparent 50%);
    opacity: 0.8;
    z-index: 1;
}

/* CTA Background Elements */
.cta-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.cta-particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
    filter: blur(8px);
    mix-blend-mode: screen;
}

.cta-particle-1 {
    top: 15%;
    left: 10%;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(255, 200, 0, 0.8) 0%, rgba(255, 200, 0, 0) 70%);
    animation: float 15s infinite alternate;
}

.cta-particle-2 {
    bottom: 25%;
    right: 15%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(204, 51, 153, 0.7) 0%, rgba(204, 51, 153, 0) 70%);
    animation: float 12s infinite alternate-reverse;
}

.cta-particle-3 {
    top: 40%;
    right: 30%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255, 102, 51, 0.6) 0%, rgba(255, 102, 51, 0) 70%);
    animation: float 18s infinite alternate;
}

.cta-particle-4 {
    bottom: 35%;
    left: 25%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 200, 0, 0.5) 0%, rgba(255, 200, 0, 0) 70%);
    animation: float 20s infinite alternate-reverse;
}

.cta-particle-5 {
    top: 60%;
    left: 45%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(204, 51, 153, 0.6) 0%, rgba(204, 51, 153, 0) 70%);
    animation: float 16s infinite alternate;
}

.cta-glow-orb {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
    mix-blend-mode: overlay;
    pointer-events: none;
}

.cta-glow-orb.left {
    top: -50px;
    left: -150px;
    background: radial-gradient(circle, rgba(255, 200, 0, 0.9), rgba(255, 200, 0, 0) 70%);
    animation: pulse 8s infinite alternate;
}

.cta-glow-orb.right {
    bottom: -50px;
    right: -150px;
    background: radial-gradient(circle, rgba(255, 102, 51, 0.9), rgba(255, 102, 51, 0) 70%);
    animation: pulse 12s infinite alternate-reverse;
}

@keyframes pulse {
    0% {
        opacity: 0.1;
        transform: scale(0.95);
    }
    50% {
        opacity: 0.2;
        transform: scale(1);
    }
    100% {
        opacity: 0.1;
        transform: scale(0.95);
    }
}

/* Smoke Effects */
.cta-smoke-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.cta-smoke {
    position: absolute;
    width: 300px;
    height: 300px;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAwIiBoZWlnaHQ9IjIwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZGVmcz48cmFkaWFsR3JhZGllbnQgaWQ9ImdyYWQiIGN4PSIwLjUiIGN5PSIwLjUiIHI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZiIgc3RvcC1vcGFjaXR5PSIwLjQiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZmYiIHN0b3Atb3BhY2l0eT0iMCIvPjwvcmFkaWFsR3JhZGllbnQ+PC9kZWZzPjxlbGxpcHNlIGN4PSIxMDAiIGN5PSIxMDAiIHJ4PSIxMDAiIHJ5PSIxMDAiIGZpbGw9InVybCgjZ3JhZCkiLz48L3N2Zz4=');
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.05;
    filter: blur(8px);
    pointer-events: none;
}

.cta-smoke.smoke-1 {
    top: -50px;
    left: 10%;
    animation: smokeFloat 25s infinite alternate ease-in-out;
}

.cta-smoke.smoke-2 {
    top: 40%;
    right: 5%;
    animation: smokeFloat 30s 2s infinite alternate-reverse ease-in-out;
}

.cta-smoke.smoke-3 {
    bottom: -50px;
    left: 30%;
    animation: smokeFloat 28s 1s infinite alternate ease-in-out;
}

@keyframes smokeFloat {
    0% {
        transform: translateY(0) scale(1) rotate(0deg);
        opacity: 0.03;
    }
    50% {
        transform: translateY(-100px) scale(1.5) rotate(10deg);
        opacity: 0.07;
    }
    100% {
        transform: translateY(-180px) scale(1.8) rotate(20deg);
        opacity: 0.02;
    }
}

/* Animated Borders */
.cta-border {
    position: absolute;
    overflow: hidden;
    z-index: 1;
}

.cta-border.top, .cta-border.bottom {
    height: 3px;
    width: 92%;
    left: 4%;
    background: linear-gradient(90deg, #000, #663399, #cc3399, #ff6633, #000);
    background-size: 300% 100%;
    animation: gradientMove 8s ease infinite;
}

.cta-border.left, .cta-border.right {
    width: 3px;
    height: 92%;
    top: 4%;
    background: linear-gradient(180deg, #000, #663399, #cc3399, #ff6633, #000);
    background-size: 100% 300%;
    animation: gradientMoveVertical 8s ease infinite;
}

.cta-border.top {
    top: 15px;
}

.cta-border.bottom {
    bottom: 15px;
}

.cta-border.left {
    left: 15px;
}

.cta-border.right {
    right: 15px;
}

.border-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: borderShine 6s infinite;
}

@keyframes borderShine {
    0% {
        left: -100%;
    }
    100% {
        left: 200%;
    }
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes gradientMoveVertical {
    0% {
        background-position: 50% 0%;
    }
    50% {
        background-position: 50% 100%;
    }
    100% {
        background-position: 50% 0%;
    }
}

/* Corner Accents */
.cta-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    z-index: 1;
}

.cta-corner.top-left {
    top: 15px;
    left: 15px;
    border-top: 3px solid #663399;
    border-left: 3px solid #663399;
}

.cta-corner.top-right {
    top: 15px;
    right: 15px;
    border-top: 3px solid #cc3399;
    border-right: 3px solid #cc3399;
}

.cta-corner.bottom-left {
    bottom: 15px;
    left: 15px;
    border-bottom: 3px solid #cc3399;
    border-left: 3px solid #cc3399;
}

.cta-corner.bottom-right {
    bottom: 15px;
    right: 15px;
    border-bottom: 3px solid #ff6633;
    border-right: 3px solid #ff6633;
}

/* Luxury Content Styling */
.cta-content {
    position: relative;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    z-index: 2;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.cta-heading-container {
    position: relative;
    margin-bottom: 30px;
}

.cta h2.luxury-text {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.cta-content h2 .highlight {
    background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
}

.cta-title-underline {
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--secondary), var(--accent));
    margin: 0 auto 30px;
    position: relative;
    overflow: hidden;
}

.cta-title-underline::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgb(255, 255, 255);
    animation: cta-shine 3s infinite;
}

@keyframes cta-shine {
    0% {
        left: -100%;
    }
    100% {
        left: 200%;
    }
}

.cta-content p {
    margin-bottom: 40px;
    color: #ddd;
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Luxury WhatsApp Button */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgb(255, 179, 0);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.91);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-whatsapp i {
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.btn-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #128C7E;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.btn-whatsapp:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-whatsapp:hover i {
    transform: scale(1.2);
}

.btn-whatsapp:active {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
}

/* Button Glow Effect */
.btn-whatsapp::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    pointer-events: none;
}

.btn-whatsapp:hover::after {
    opacity: 0.2;
}

@media (max-width: 768px) {
    .cta {
        padding: 100px 0;
    }
    
    .cta-content h2 {
        font-size: 2.3rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .btn-whatsapp {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .cta-border.left, .cta-border.right {
        display: none;
    }
}

/* Social Media Section */
.social-media {
    position: relative;
    padding: 100px 0;
    background-color: var(--dark);
    overflow: hidden;
    z-index: 1;
}

/* Luxury Background Elements */
.social-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.social-particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    filter: blur(15px);
    mix-blend-mode: screen;
}

.social-particle.particle-1 {
    top: 15%;
    right: 10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 200, 0, 0.8) 0%, rgba(255, 200, 0, 0) 70%);
    animation: float 15s infinite alternate;
}

.social-particle.particle-2 {
    bottom: 20%;
    left: 15%;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(204, 51, 153, 0.7) 0%, rgba(204, 51, 153, 0) 70%);
    animation: float 18s infinite alternate-reverse;
}

.social-particle.particle-3 {
    top: 50%;
    left: 30%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 102, 51, 0.6) 0%, rgba(255, 102, 51, 0) 70%);
    animation: float 20s infinite alternate;
}

.social-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.1;
    mix-blend-mode: overlay;
}

.social-glow.left {
    bottom: -200px;
    left: -200px;
    background: radial-gradient(circle, rgba(255, 200, 0, 0.8), rgba(255, 200, 0, 0) 70%);
    animation: pulse 12s infinite alternate;
}

.social-glow.right {
    top: -200px;
    right: -200px;
    background: radial-gradient(circle, rgba(204, 51, 153, 0.8), rgba(204, 51, 153, 0) 70%);
    animation: pulse 15s infinite alternate-reverse;
}

/* Decorative Lines */
.social-decorative-line {
    position: absolute;
    z-index: 0;
    background: linear-gradient(90deg, transparent, #663399, #cc3399, #ff6633, transparent);
    opacity: 0.3;
}

.social-decorative-line.top-left {
    top: 50px;
    left: 0;
    width: 30%;
    height: 1px;
    transform: rotate(-15deg);
    transform-origin: left center;
    animation: lineGlow 8s infinite alternate;
}

.social-decorative-line.top-right {
    top: 50px;
    right: 0;
    width: 30%;
    height: 1px;
    transform: rotate(15deg);
    transform-origin: right center;
    animation: lineGlow 8s 1s infinite alternate-reverse;
}

.social-decorative-line.bottom-left {
    bottom: 50px;
    left: 0;
    width: 30%;
    height: 1px;
    transform: rotate(15deg);
    transform-origin: left center;
    animation: lineGlow 8s 2s infinite alternate;
}

.social-decorative-line.bottom-right {
    bottom: 50px;
    right: 0;
    width: 30%;
    height: 1px;
    transform: rotate(-15deg);
    transform-origin: right center;
    animation: lineGlow 8s 3s infinite alternate-reverse;
}

@keyframes lineGlow {
    0% {
        opacity: 0.2;
        width: 20%;
        background-position: 0% 50%;
    }
    100% {
        opacity: 0.4;
        width: 35%;
        background-position: 100% 50%;
    }
}

/* Luxury Header */
.luxury-header {
    position: relative;
    margin-bottom: 80px;
}

.title-wrapper {
    position: relative;
    display: inline-block;
    padding: 0 20px;
}

.title-bg-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    filter: blur(15px);
    z-index: -1;
    border-radius: 50%;
    transform: scale(1.2, 0.8);
}

.luxury-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
    display: inline-block;
    position: relative;
}

.shimmer-text {
    position: relative;
    background-image: linear-gradient(90deg, #663399, #cc3399, #ff6633, #cc3399, #663399);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shimmer 5s linear infinite;
    text-shadow: 0 0 10px rgba(255, 200, 0, 0.3);
}

@keyframes shimmer {
    to {
        background-position: 200% center;
    }
}

.title-underline {
    height: 3px;
    width: 0;
    margin: 10px auto 0;
    background: linear-gradient(90deg, #663399, #cc3399, #ff6633);
    border-radius: 3px;
    position: relative;
    overflow: hidden;
    transition: width 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.title-underline.animated {
    width: 70%;
}

.underline-gem {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    top: -1.5px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    opacity: 0;
    animation: gemGlow 3s infinite 1.5s;
}

.luxury-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(20px);
}

.luxury-header p.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Social Cards */
.social-cards-container {
    position: relative;
    z-index: 2;
    margin-top: 50px;
    perspective: 1000px;
}

.social-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    transform-style: preserve-3d;
}

.social-card {
    position: relative;
    width: 220px;
    height: 280px;
    background-color: rgba(30, 30, 30, 0.8);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
    filter: blur(20px);
    transform: translateZ(-10px);
}

.card-shine {
    position: absolute;
    top: -100%;
    left: -100%;
    right: -100%;
    bottom: -100%;
    width: 300%;
    height: 300%;
    transform: rotate(30deg);
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 20%,
        rgba(255, 255, 255, 0.1) 40%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 70%
    );
    opacity: 0;
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.5s ease;
}

.card-content {
    position: relative;
    height: 100%;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: transform 0.3s ease;
}

.icon-container {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    transition: all 0.5s ease;
    background: rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.icon-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: transparent;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.social-card i {
    font-size: 2.2rem;
    transition: all 0.5s ease;
    transform-style: preserve-3d;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    transform: translateZ(5px);
    position: relative;
}

.card-divider {
    width: 0;
    height: 2px;
    margin: 0 auto 15px;
    transition: width 0.5s ease 0.2s;
}

.social-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    transform: translateZ(5px);
    transition: color 0.3s ease;
}

/* Hover Effects */
.social-card:hover {
    transform: translateY(-20px) scale(1.05) rotateX(10deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    z-index: 5;
}

.social-card.facebook i {
    color: #1877F2;
}

.social-card.instagram {
    border-color: #C13584;
}

.social-card.instagram i {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.social-card.tiktok {
    border-color: #00F2EA;
}

.social-card.tiktok i {
    background: linear-gradient(45deg, #00F2EA, #FF0050);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.social-card.snapchat {
    border-color: #FFFC00;
}

.social-card.snapchat i {
    color: #FFFC00;
}

.social-card.whatsapp {
    border-color: #25D366;
}

.social-card.whatsapp i {
    color: #25D366;
}

/* Footer */
footer {
    padding: 50px 0;
    background: linear-gradient(to top, rgba(0,0,0,1), rgba(0,0,0,0.9));
    text-align: center;
    position: relative;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 80px;
    width: auto;
}

footer p {
    color: #777;
    font-size: 0.9rem;
}

/* Smoke Animation Styles */
.smoke-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.7;
}

.smoke {
    position: absolute;
    bottom: 50px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(
        circle at center,
        rgba(255, 255, 255, 0.3) 0%,
        rgba(255, 255, 255, 0.1) 40%,
        rgba(255, 255, 255, 0) 70%
    );
    filter: blur(10px);
    animation: smokeAnimation 8s infinite;
}

.smoke-1 {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 10s;
}

.smoke-2 {
    left: 30%;
    animation-delay: 2s;
    animation-duration: 8s;
}

.smoke-3 {
    left: 50%;
    animation-delay: 4s;
    animation-duration: 12s;
}

.smoke-4 {
    left: 70%;
    animation-delay: 1s;
    animation-duration: 9s;
}

.smoke-5 {
    left: 90%;
    animation-delay: 3s;
    animation-duration: 11s;
}

/* Image Smoke Effects */
.image-smoke {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(
        circle at center,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.05) 40%,
        rgba(255, 255, 255, 0) 70%
    );
    mix-blend-mode: screen;
    filter: blur(8px);
    animation: smokeFloat 15s infinite ease-in-out;
    z-index: 3;
}

.image-smoke-1 {
    top: -30px;
    right: -20px;
    width: 120px;
    height: 120px;
    animation-delay: 0s;
}

.image-smoke-2 {
    bottom: 40px;
    left: -30px;
    width: 150px;
    height: 150px;
    animation-delay: 3s;
}

.image-smoke-3 {
    top: 50%;
    right: -40px;
    width: 100px;
    height: 100px;
    animation-delay: 6s;
}

/* Text animations */
.text-reveal .fade-in {
    animation: fadeIn 1s forwards;
}

.text-reveal .delay-1 {
    animation-delay: 0.3s;
    opacity: 0;
}

.text-reveal .delay-2 {
    animation-delay: 0.6s;
    opacity: 0;
}

.glow-text {
    animation: glowPulse 3s infinite;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes rotate3d {
    0%, 100% {
        transform: rotate3d(0, 1, 0, 0deg);
    }
    25% {
        transform: rotate3d(0, 1, 0.5, 10deg);
    }
    50% {
        transform: rotate3d(0.5, 0, 0.5, 10deg);
    }
    75% {
        transform: rotate3d(0.5, 1, 0, 10deg);
    }
}

@keyframes glow {
    0%, 100% {
        opacity: 0.7;
        transform: scale(0.9);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes smokeAnimation {
    0% {
        filter: blur(0);
        opacity: 0;
        transform: translateY(0) scale(1);
    }
    25% {
        opacity: 0.5;
    }
    50% {
        filter: blur(15px);
        opacity: 0.8;
    }
    75% {
        opacity: 0.6;
    }
    100% {
        filter: blur(25px);
        opacity: 0;
        transform: translateY(-120px) scale(2);
    }
}

@keyframes smokeFloat {
    0% {
        transform: translateX(0) translateY(0);
    }
    25% {
        transform: translateX(10px) translateY(-5px);
    }
    50% {
        transform: translateX(-5px) translateY(-10px);
    }
    75% {
        transform: translateX(5px) translateY(-15px);
    }
    100% {
        transform: translateX(0) translateY(-20px);
    }
}

@keyframes glowPulse {
    0%, 100% {
        text-shadow: 0 0 10px rgba(255, 200, 0, 0.7), 0 0 20px rgba(204, 51, 153, 0.5), 0 0 30px rgba(255, 102, 51, 0.3);
    }
    50% {
        text-shadow: 0 0 15px rgba(255, 200, 0, 0.9), 0 0 25px rgba(204, 51, 153, 0.7), 0 0 35px rgba(255, 102, 51, 0.5);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .banner-content h1 {
        font-size: 2.8rem;
    }
    
    .legacy .container,
    .product-card {
        flex-direction: column;
        gap: 40px;
    }
    
    .product-card.reverse {
        flex-direction: column;
    }
    
    .years-badge {
        right: 0;
    }
    
    .legacy-image::before {
        display: none;
    }
    
    /* Improved VM section responsive styling */
    .vm-layout {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .vm-card {
        min-width: 280px;
        max-width: 45%;
        margin-bottom: 20px;
    }
    
    .vm-logo-container {
        order: -1;
        width: 150px;
        height: 150px;
        margin: 0 auto 30px;
        flex-basis: 100%;
    }
}

@media (max-width: 768px) {
    header nav {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .banner {
        padding: 150px 0 70px;
    }
    
    .banner .container {
        flex-direction: column;
    }
    
    .banner-content h1 {
        font-size: 2.2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    /* Enhanced mobile styling for VM section */
    .vm-layout {
        flex-direction: column;
        gap: 40px;
    }
    
    .vm-card {
        min-width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .vm-logo-container {
        width: 120px;
        height: 120px;
        margin: 0 auto;
        order: -1;
    }
    
    .slogan-container {
        padding: 0 15px;
    }
    
    .slogan-text {
        font-size: 1.2rem;
        padding: 0 30px;
    }
    
    .quote-marks {
        font-size: 1.5rem;
    }
    
    .social-cards {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .banner-content h1 {
        font-size: 1.8rem;
    }
    
    .years-badge {
        width: 100px;
        height: 100px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
}
