/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-yellow: #FFB800;
    --yellow-dark: #FFA500;
    --yellow-light: #FFD966;
    --black: #000000;
    --black-light: #1a1a1a;
    --black-lighter: #2a2a2a;
    --white: #ffffff;
    --gray: #666666;
    --gray-light: #999999;
    --gray-lighter: #e0e0e0;
}

html {
    scroll-behavior: smooth;
}

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-yellow);
    text-decoration: none;
}

a.logo {
    color: var(--primary-yellow);
    text-decoration: none;
}

a.logo:hover {
    color: var(--primary-yellow);
}

.logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.logo:hover .logo-image {
    transform: scale(1.1) rotate(5deg);
}

.logo-icon {
    font-size: 1.8rem;
    animation: sparkle 2s infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
    50% { transform: scale(1.2) rotate(180deg); opacity: 0.8; }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-yellow);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-yellow);
}

.nav-menu a:hover::after {
    width: 100%;
}

.btn-primary {
    background: var(--primary-yellow);
    color: var(--black);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-yellow);
    cursor: pointer;
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-yellow);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-yellow);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-yellow);
}

.btn-secondary:hover {
    background: var(--primary-yellow);
    color: var(--black);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-yellow);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 100px 0 60px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    z-index: 0;
}

.hero-slide.active {
    opacity: 0.25;
}


.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-yellow);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--primary-yellow);
    bottom: -50px;
    left: -50px;
    animation-delay: 5s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--primary-yellow);
    top: 50%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    gap: 4rem;
}

.hero-text {
    animation: fadeInUp 1s ease;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    max-width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0;
    text-align: center;
}

.title-line {
    display: block;
}

.title-line.highlight {
    color: var(--primary-yellow);
    position: relative;
    display: inline-block;
}

.title-line.highlight::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(255, 215, 0, 0.3);
    z-index: -1;
    animation: underline 1.5s ease;
}

@keyframes underline {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1.8;
    text-align: center;
    min-height: 1.2em;
}

.hero-subtitle-typing {
    display: inline-block;
    color: var(--white);
    overflow: hidden;
    border-right: 2px solid var(--white);
    padding-right: 4px;
    max-width: 100%;
    word-wrap: break-word;
    word-break: break-word;
}


.hero-logo-mobile {
    display: none;
    text-align: center;
    margin: 0 0 1.5rem;
    order: -1;
}

.hero-logo-animated {
    height: 140px;
    width: auto;
    object-fit: contain;
    animation: logoFloat 3s ease-in-out infinite, logoPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 4px 15px rgba(255, 184, 0, 0.5));
}

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

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 4px 15px rgba(255, 184, 0, 0.5));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 6px 20px rgba(255, 184, 0, 0.8));
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 0;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-lighter);
}

/* Hero feature highlight with hover detail */
.feature-highlight {
    position: relative;
    cursor: pointer;
    color: var(--white);
    font-weight: 600;
    max-width: 620px;
    flex-direction: column;
    align-items: center;
    margin-top: 1rem;
    text-align: center;
}

.feature-highlight .feature-header,
.feature-highlight .feature-arrow {
    cursor: pointer;
}

.feature-highlight .feature-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    text-align: center;
}

.feature-highlight .feature-icon i {
    color: var(--primary-yellow);
    font-size: 1.1rem;
    filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.6));
    transition: transform 0.4s ease, filter 0.4s ease;
}

.feature-highlight .feature-title {
    position: relative;
    color: var(--white);
    font-size: 1.05rem;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.feature-arrow {
    color: var(--primary-yellow);
    font-size: 1.8rem;
    animation: bounceArrow 2s ease-in-out infinite;
    display: block;
    margin: 0.5rem auto 0;
    text-align: center;
    width: 100%;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

@keyframes bounceArrow {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(5px);
        opacity: 0.7;
    }
}

.feature-highlight.active .feature-arrow {
    animation: none;
    transform: rotate(180deg) translateY(0);
    opacity: 1;
}

.feature-highlight.active .feature-title {
    color: var(--primary-yellow);
}

.feature-highlight .feature-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-yellow), transparent);
    transition: width 0.4s ease;
}

.feature-highlight:hover .feature-title::after {
    width: 100%;
}

.feature-highlight .feature-detail {
    margin-top: 1rem;
    background: rgba(0, 0, 0, 0.85);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    width: 100%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7), 0 0 20px rgba(255, 215, 0, 0.1);
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    transform: translateY(-10px);
}

.feature-highlight.active .feature-detail {
    opacity: 1;
    max-height: 1000px;
    transform: translateY(0);
}

/* Only show on hover for non-touch devices */
@media (hover: hover) {
    .feature-highlight:hover .feature-detail {
        opacity: 1;
        max-height: 1000px;
        transform: translateY(0);
    }
    
    .feature-highlight:hover .feature-arrow {
        animation: none;
        transform: rotate(180deg) translateY(0);
        opacity: 1;
    }
    
    .feature-highlight:hover .feature-title {
        color: var(--primary-yellow);
    }
}

.feature-highlight .feature-detail p {
    margin: 0 0 0.8rem;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray-lighter);
}

.feature-highlight .feature-detail p:last-child {
    margin-bottom: 0;
}

.hero-signature {
    margin-top: 1.5rem;
    font-family: 'Great Vibes', cursive !important;
    font-size: 3.2rem !important;
    color: rgba(255, 184, 0, 0.8);
    text-align: center;
}

.feature-highlight:hover .feature-icon i {
    transform: translateY(-2px) scale(1.15);
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.9));
}

.feature-item i {
    color: var(--primary-yellow);
    font-size: 1.2rem;
}

.hero-image {
    position: relative;
    height: 300px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInUp 1.2s ease;
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card {
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--black-lighter);
    border: 2px solid var(--primary-yellow);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary-yellow);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
    animation: floatCard 3s infinite ease-in-out;
}

.card-1 {
    top: 50%;
    left: 50%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    left: 50%;
    animation-delay: 1s;
}

.card-3 {
    top: 50%;
    left: 50%;
    animation-delay: 2s;
}

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

/* Preserve X positioning in animations */
.card-1 {
    animation-name: floatCard1;
}

.card-2 {
    animation-name: floatCard2;
}

.card-3 {
    animation-name: floatCard3;
}

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

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

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

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-yellow);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--primary-yellow);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 10px;
    }
    100% {
        opacity: 0;
        top: 30px;
    }
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Benefits Section */
/* Benefits Section (currently disabled on frontend) */
.benefits {
    display: none;
    padding: 5rem 0;
    background: var(--black-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: var(--black-lighter);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-yellow);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.benefit-image {
    width: 100%;
    height: 400px;
    min-height: 400px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.benefit-content {
    padding: 2rem;
    text-align: center;
}

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

.benefit-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-yellow);
}

.benefit-content p {
    color: var(--gray-lighter);
    line-height: 1.8;
}

/* About Section */
.about {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-yellow);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-lighter);
}


.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text-content {
    position: relative;
}

.about-text-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--black-light));
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.about-text.expanded .about-text-content::after {
    opacity: 0;
}

.about-text p {
    color: var(--gray-lighter);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .about-text p {
        text-align: center;
    }
}

.about-text-expandable {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.5s ease, margin-bottom 0.5s ease;
    margin-bottom: 0;
}

.about-text.expanded .about-text-expandable {
    max-height: 500px;
    opacity: 1;
    margin-bottom: 1.5rem;
}

.about-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 1rem;
}

.btn-see-more {
    background: transparent;
    border: 2px solid var(--primary-yellow);
    color: var(--primary-yellow);
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.btn-see-more:hover {
    background: var(--primary-yellow);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 184, 0, 0.3);
}

.btn-see-more:active {
    transform: translateY(0);
}

.about-video-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-image-container {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid var(--primary-yellow);
    box-shadow: 0 10px 40px rgba(255, 184, 0, 0.3);
    aspect-ratio: 16/9;
    background: var(--black-lighter);
    transition: all 0.4s ease;
}

.about-image-container:hover {
    border-color: var(--primary-yellow);
    box-shadow: 0 15px 60px rgba(255, 184, 0, 0.5);
    transform: translateY(-5px);
}

.about-shop-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease, filter 0.6s ease;
    filter: brightness(0.95) contrast(1.05);
}

.about-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-image-container:hover .about-shop-image {
    transform: scale(1.05);
    filter: brightness(1.05) contrast(1.1);
}

.about-image-container:hover .about-video {
    transform: scale(1.05);
    filter: brightness(1.05) contrast(1.1);
}

.image-glow-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.1) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(255, 184, 0, 0.1) 100%);
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-image-container:hover .image-glow-effect {
    opacity: 1;
    animation: shimmerGlow 3s ease-in-out infinite;
}

@keyframes shimmerGlow {
    0%, 100% {
        background: linear-gradient(135deg, rgba(255, 184, 0, 0.1) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(255, 184, 0, 0.1) 100%);
    }
    50% {
        background: linear-gradient(135deg, rgba(255, 184, 0, 0.2) 0%, rgba(0, 0, 0, 0.15) 50%, rgba(255, 184, 0, 0.2) 100%);
    }
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--black-lighter);
    border-radius: 15px;
    border: 1px solid var(--primary-yellow);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
}

.stat-number-plus::before {
    content: '+';
    margin-right: 0.15em;
}

.stat-label {
    color: var(--gray-lighter);
    font-size: 0.9rem;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: var(--black-light);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 200, 0, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255, 184, 0, 0.06) 0%, transparent 50%);
    animation: pulseGlow 4s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

.services::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 215, 0, 0.03) 50%, transparent 70%);
    animation: shimmer 8s linear infinite;
    z-index: 0;
    pointer-events: none;
}

.services .container {
    position: relative;
    z-index: 1;
}

.services .section-header {
    position: relative;
    z-index: 2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

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

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.service-card {
    background: var(--black-lighter);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-yellow);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.service-image {
    height: 300px;
    min-height: 300px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
}

.service-image-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}

.service-image-slide.active {
    opacity: 1;
}

.service-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.service-icon-wrapper {
    position: relative;
    z-index: 1;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-card:hover .service-image::before {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.05) 100%);
}

.service-icon {
    font-size: 4rem;
    color: var(--primary-yellow);
    z-index: 1;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(5deg);
}

.service-logo-image {
    width: 120px;
    height: auto;
    max-height: 150px;
    object-fit: contain;
    z-index: 1;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.service-card:hover .service-logo-image {
    transform: scale(1.15) rotate(-3deg);
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-yellow);
}

.service-points {
    list-style: none;
    padding-left: 0;
    margin: 0 0 1.5rem;
}

.service-points li {
    position: relative;
    padding-left: 1.4rem;
    color: var(--gray-lighter);
    margin-bottom: 0.4rem;
    line-height: 1.8;
}

.service-points li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0.1rem;
    color: var(--primary-yellow);
    font-size: 1rem;
}

.service-more-indicator {
    color: var(--gray-lighter);
    font-size: 0.9rem;
    margin: 0.5rem 0;
    font-style: italic;
}

.service-link {
    color: var(--primary-yellow);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 1rem;
}

/* Service Detail Page */
.service-detail-section {
    padding: 120px 0 80px;
    background: var(--black-light);
    position: relative;
    overflow: hidden;
}

.service-detail-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 200, 0, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255, 184, 0, 0.06) 0%, transparent 50%);
    animation: pulseGlow 4s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

.service-detail-section::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 215, 0, 0.03) 50%, transparent 70%);
    animation: shimmer 8s linear infinite;
    z-index: 0;
    pointer-events: none;
}

.service-detail-section .container {
    position: relative;
    z-index: 1;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.service-detail-image {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.service-detail-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 0.3s ease;
}

.service-detail-slide.active {
    opacity: 1;
}

.service-detail-image:hover .service-detail-slide.active {
    transform: scale(1.02);
}

.service-detail-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-detail-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-yellow);
    line-height: 1.2;
    margin: 0;
}

.service-detail-points {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.service-detail-points li {
    position: relative;
    padding-left: 1.8rem;
    color: var(--gray-lighter);
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.service-detail-points li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0.2rem;
    color: var(--primary-yellow);
    font-size: 1.5rem;
    font-weight: bold;
}

.service-detail-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

@media (max-width: 968px) {
    .service-detail-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .service-detail-image {
        height: 400px;
    }
    
    .service-detail-title {
        font-size: 2.5rem;
    }
    
    .service-detail-actions {
        flex-direction: column;
    }
    
    .service-detail-actions .btn-primary,
    .service-detail-actions .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .service-detail-section {
        padding: 100px 0 60px;
    }
    
    .service-detail-title {
        font-size: 2rem;
    }
    
    .service-detail-image {
        height: 300px;
    }
    
    .service-detail-points li {
        font-size: 1rem;
    }
}

/* Process Section */
.process {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    min-height: 700px;
}

.process-background-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 700px;
    z-index: 0;
    overflow: hidden;
}

.process-background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    filter: brightness(0.5) contrast(1.1);
    z-index: 0;
}

.process-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.7) 60%,
        rgba(0, 0, 0, 0.3) 80%,
        rgba(0, 0, 0, 0.1) 100%
    );
}

.process .container {
    position: relative;
    z-index: 1;
}

.process-content-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 700px;
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.process-steps-panel {
    width: 100%;
    max-width: 1200px;
    background: transparent;
    backdrop-filter: none;
    border-radius: 0;
    padding: 0;
    border: none;
    box-shadow: none;
    position: relative;
    z-index: 3;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    position: relative;
    justify-items: center;
    align-items: stretch;
}

.step-item {
    text-align: center;
    position: relative;
    padding: 2.5rem 1.5rem 2rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    border: 1px solid var(--primary-yellow);
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    width: 100%;
    max-width: 280px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.step-item:hover {
    border-color: var(--primary-yellow);
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(255, 184, 0, 0.4);
    background: rgba(0, 0, 0, 0.65);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-yellow);
    z-index: 10;
    text-shadow: 0 0 15px rgba(255, 184, 0, 0.5);
    line-height: 1;
    letter-spacing: -2px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-yellow);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--black);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    margin: 1.5rem auto 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 184, 0, 0.5);
}

.step-item:hover .step-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(255, 184, 0, 0.7);
}

.step-item h3 {
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.3rem;
    color: var(--primary-yellow);
    font-weight: 700;
    line-height: 1.3;
}

.step-item p {
    text-align: center;
    margin: 0;
    color: var(--white);
    line-height: 1.7;
    font-size: 0.95rem;
    flex-grow: 1;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: var(--black-light);
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    min-height: 300px;
}

.testimonial-card {
    display: none;
    text-align: center;
    padding: 2rem;
    background: var(--black-lighter);
    border-radius: 20px;
    border: 1px solid var(--primary-yellow);
}

.testimonial-card.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.testimonial-stars {
    color: var(--primary-yellow);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.2rem;
    color: var(--gray-lighter);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    color: var(--white);
}

.testimonial-author strong {
    display: block;
    color: var(--primary-yellow);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: var(--primary-yellow);
    transform: scale(1.3);
}

/* Gallery Section */
.gallery {
    padding: 5rem 0;
    background: var(--black);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 4/3;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    border-color: var(--primary-yellow);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(255, 215, 0, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-content {
    text-align: center;
    color: var(--white);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-content {
    transform: translateY(0);
}

.gallery-content i {
    font-size: 3rem;
    color: var(--primary-yellow);
    margin-bottom: 1rem;
    display: block;
}

.gallery-content h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--black-lighter);
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-yellow);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 215, 0, 0.1);
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 600;
}

.faq-question i {
    color: var(--primary-yellow);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray-lighter);
    line-height: 1.8;
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--black) 0%, var(--black-lighter) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

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

.cta-content {
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-yellow);
}

.cta p {
    font-size: 1.2rem;
    color: var(--gray-lighter);
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: var(--black);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--black-lighter);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-yellow);
    margin-bottom: 1rem;
}

a.footer-logo {
    color: var(--primary-yellow);
    text-decoration: none;
}

a.footer-logo:hover {
    color: var(--primary-yellow);
}

.footer-logo-mobile {
    display: none;
}

.footer-logo .logo-image {
    height: 55px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.footer-section p {
    color: var(--gray-lighter);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.footer-section h3 {
    color: var(--primary-yellow);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: var(--gray-lighter);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-yellow);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: var(--black-lighter);
    border: 1px solid var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-yellow);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--primary-yellow);
    color: var(--black);
    transform: translateY(-3px);
}

.social-icons a[aria-label="WhatsApp"] {
    border-color: var(--primary-yellow);
    color: var(--primary-yellow);
}

.social-icons a[aria-label="WhatsApp"]:hover {
    background: var(--primary-yellow);
    color: var(--black);
    box-shadow: 0 5px 15px rgba(255, 184, 0, 0.5);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--gray-lighter);
    margin-bottom: 1rem;
}

.contact-info i {
    color: var(--primary-yellow);
    width: 20px;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--primary-yellow);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--black-lighter);
    color: var(--gray-lighter);
}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed !important;
    right: 20px !important;
    bottom: 20px !important;
    z-index: 9999 !important;
    display: flex !important;
    flex-direction: column;
    gap: 15px;
    animation: floatButtons 3s ease-in-out infinite;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

@keyframes floatButtons {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 184, 0, 0.4);
    position: relative;
    overflow: hidden;
    visibility: visible !important;
    opacity: 1 !important;
}

.floating-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.floating-btn:hover::before {
    width: 300px;
    height: 300px;
}

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

.floating-phone {
    background: var(--primary-yellow) !important;
    border: 2px solid var(--primary-yellow) !important;
    color: var(--black) !important;
}

.floating-phone:hover {
    background: var(--yellow-dark);
    border-color: var(--yellow-dark);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 184, 0, 0.6);
}

.floating-whatsapp {
    background: var(--primary-yellow) !important;
    border: 2px solid var(--primary-yellow) !important;
    color: var(--black) !important;
}

.floating-whatsapp:hover {
    background: var(--yellow-dark);
    border-color: var(--yellow-dark);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 184, 0, 0.6);
}

/* Pulse animation for phone button */
.floating-phone {
    animation: pulsePhone 2s ease-in-out infinite, floatButtons 3s ease-in-out infinite;
}

@keyframes pulsePhone {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 184, 0, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(255, 184, 0, 0.8);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .container {
        padding: 0 15px;
    }

    .nav-wrapper {
        flex-wrap: wrap;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--black);
        width: 100%;
        padding: 2rem;
        transition: left 0.3s ease;
        border-top: 1px solid var(--primary-yellow);
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        align-items: center;
        justify-content: center;
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-image {
        height: 300px;
        margin-top: 2rem;
    }

    .image-wrapper {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .floating-card {
        width: 90px;
        height: 90px;
        font-size: 2.2rem;
        position: absolute;
        animation: floatCardMobile 3s infinite ease-in-out;
    }

    .card-1 {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) translateX(-100px);
        animation: floatCardMobile1 3s infinite ease-in-out;
        animation-delay: 0s;
    }

    .card-2 {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        animation: floatCardMobile2 3s infinite ease-in-out;
        animation-delay: 1s;
    }

    .card-3 {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) translateX(100px);
        animation: floatCardMobile3 3s infinite ease-in-out;
        animation-delay: 2s;
    }

    @keyframes floatCardMobile1 {
        0%, 100% {
            transform: translate(-50%, -50%) translateX(-130px) translateY(0);
        }
        50% {
            transform: translate(-50%, -50%) translateX(-130px) translateY(-15px);
        }
    }

    @keyframes floatCardMobile2 {
        0%, 100% {
            transform: translate(-50%, -50%) translateY(0);
        }
        50% {
            transform: translate(-50%, -50%) translateY(-15px);
        }
    }

    @keyframes floatCardMobile3 {
        0%, 100% {
            transform: translate(-50%, -50%) translateX(130px) translateY(0);
        }
        50% {
            transform: translate(-50%, -50%) translateX(130px) translateY(-15px);
        }
    }

    @media (max-width: 768px) {
        @keyframes floatCardMobile1 {
            0%, 100% {
                transform: translate(-50%, -50%) translateX(-110px) translateY(0);
            }
            50% {
                transform: translate(-50%, -50%) translateX(-110px) translateY(-15px);
            }
        }

        @keyframes floatCardMobile3 {
            0%, 100% {
                transform: translate(-50%, -50%) translateX(110px) translateY(0);
            }
            50% {
                transform: translate(-50%, -50%) translateX(110px) translateY(-15px);
            }
        }
    }

    @media (max-width: 480px) {
        @keyframes floatCardMobile1 {
            0%, 100% {
                transform: translate(-50%, -50%) translateX(-100px) translateY(0);
            }
            50% {
                transform: translate(-50%, -50%) translateX(-100px) translateY(-15px);
            }
        }

        @keyframes floatCardMobile3 {
            0%, 100% {
                transform: translate(-50%, -50%) translateX(100px) translateY(0);
            }
            50% {
                transform: translate(-50%, -50%) translateX(100px) translateY(-15px);
            }
        }
    }

    .hero-features {
        justify-content: center;
        align-items: center;
        gap: 1rem;
        flex-wrap: wrap;
        width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }

    .feature-item {
        font-size: 0.9rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .about-video-wrapper {
        order: -1;
    }

    .stat-number {
        font-size: 2rem;
    }

    .floating-buttons {
        right: 15px;
        bottom: 15px;
    }

    .floating-btn {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .navbar {
        padding: 0.75rem 0;
    }

    .logo {
        font-size: 1.2rem;
    }

    .logo-image {
        height: 50px;
    }

    .hero {
        padding: 90px 0 50px;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .hero-logo-mobile {
        display: block;
        margin: 0 0 1.5rem;
        order: -1;
    }

    .hero-logo-animated {
        height: 120px;
    }
    
    .hero-text {
        display: flex;
        flex-direction: column;
    }
    
    .feature-highlight .feature-header {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        flex-wrap: nowrap;
        width: 100%;
    }
    
    .feature-highlight .feature-icon {
        flex-shrink: 0;
    }
    
    .feature-highlight .feature-title {
        flex: 1;
        text-align: left;
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .feature-arrow {
        font-size: 1.4rem;
        margin: 0.1rem auto 0;
    }
    
    .feature-highlight:hover .feature-arrow {
        transform: rotate(180deg) translateY(0);
    }

    .section-title {
        font-size: 1.8rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
    }

    .btn-large {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }
    
    .btn-see-more {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
        text-align: center;
    }

    .hero-features {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin-top: 0.5rem;
    }

    .hero {
        min-height: auto;
        padding: 90px 0 40px;
    }

    .hero-slide {
        background-size: cover;
        background-position: center center;
    }

    .hero-slide.active {
        opacity: 0.2;
    }

    .hero-image {
        height: 250px;
        margin-top: 0.5rem;
    }

    .image-wrapper {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .floating-card {
        width: 85px;
        height: 85px;
        font-size: 2rem;
        position: absolute;
    }

    .card-1 {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) translateX(-110px);
        animation: floatCardMobile1 3s infinite ease-in-out;
        animation-delay: 0s;
    }

    .card-2 {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        animation: floatCardMobile2 3s infinite ease-in-out;
        animation-delay: 1s;
    }

    .card-3 {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) translateX(110px);
        animation: floatCardMobile3 3s infinite ease-in-out;
        animation-delay: 2s;
    }

    .benefits {
        padding: 3rem 0;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefit-card {
        padding: 2rem 1.5rem;
    }

    .about {
        padding: 3rem 0;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-item {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .services {
        padding: 3rem 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        max-width: 100%;
    }

    .process {
        padding: 3rem 0;
        min-height: auto;
    }

    .process-background-wrapper {
        min-height: 100%;
    }

    .process-content-wrapper {
        justify-content: center;
        padding: 2rem 0;
        min-height: auto;
    }

    .process-background-overlay {
        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0.7) 100%
        );
    }

    .process-steps-panel {
        width: 100%;
        max-width: 100%;
        padding: 0;
        position: relative;
        top: auto;
        transform: none;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .step-item {
        max-width: 100%;
        min-height: auto;
        padding: 2rem 1.5rem;
    }

    .step-number {
        font-size: 2.5rem;
        top: -18px;
    }

    .step-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin: 1.2rem auto 1.2rem;
    }

    .step-item h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }

    .step-item p {
        font-size: 0.9rem;
    }

    .testimonials {
        padding: 3rem 0;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .faq {
        padding: 3rem 0;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .cta {
        padding: 3rem 0;
    }

    .cta h2 {
        font-size: 2rem;
    }

    .cta p {
        font-size: 1rem;
    }

    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-section {
        text-align: center;
    }

    .footer-logo-desktop {
        display: none;
    }

    .footer-logo-mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-top: 1.5rem;
        margin-bottom: 1rem;
        gap: 0.75rem;
    }

    .footer-logo-mobile .logo-text {
        font-size: 1.3rem;
        text-align: center;
    }

    .footer-logo-mobile .logo-image {
        height: 70px;
    }

    .footer-section p {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .map-container {
        height: 200px;
    }

    .floating-buttons {
        right: 10px;
        bottom: 10px;
        gap: 10px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .hero-slide {
        background-size: cover;
        background-position: center center;
    }

    .hero-slide.active {
        opacity: 0.25;
    }

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

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

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-logo-mobile {
        display: block;
        margin: 0 0 1.25rem;
        order: -1;
    }

    .hero-logo-animated {
        height: 110px;
    }
    
    .hero-text {
        display: flex;
        flex-direction: column;
    }
    
    .feature-highlight .feature-header {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 0.5rem;
        flex-wrap: nowrap;
        width: 100%;
    }
    
    .feature-highlight .feature-icon {
        flex-shrink: 0;
    }
    
    .feature-highlight .feature-title {
        flex: 1;
        text-align: left;
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .feature-arrow {
        font-size: 1.2rem;
        margin: 0.1rem auto 0;
    }
    
    .feature-highlight:hover .feature-arrow {
        transform: rotate(180deg) translateY(0);
    }
    
    .btn-see-more {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
    }

    .hero-slide {
        background-size: cover;
        background-position: center center;
    }

    .hero-slide.active {
        opacity: 0.25;
    }

    .floating-card {
        width: 75px;
        height: 75px;
        font-size: 1.8rem;
    }

    .card-1 {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) translateX(-100px);
        animation: floatCardMobile1 3s infinite ease-in-out;
        animation-delay: 0s;
    }

    .card-2 {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        animation: floatCardMobile2 3s infinite ease-in-out;
        animation-delay: 1s;
    }

    .card-3 {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) translateX(100px);
        animation: floatCardMobile3 3s infinite ease-in-out;
        animation-delay: 2s;
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .step-number {
        font-size: 2rem;
    }
}

/* AOS Animation Classes */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.8);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

