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

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0a0a;
    scroll-behavior: smooth;
}

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

/* Hero Background Slider Styles */
.hero-background-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.bg-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 8s ease-in-out;
    transform: scale(1);
}

.bg-slide.active {
    opacity: 1;
    transform: scale(1.1);
}

.bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.bg-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #111827 0%, #1f2937 50%, #000000 100%);
    opacity: 0.8;
}

/* Static Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    pointer-events: auto;
}

.hero-text-content {
    margin-bottom: 32px;
}

.dynamic-text {
    transition: opacity 0.5s ease-in-out;
}

.dynamic-text.fade-out {
    opacity: 0;
}

.dynamic-text.fade-in {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 4;
    pointer-events: none;
}

.slider-btn {
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
}

.slider-btn:hover {
    background: rgba(251, 191, 36, 0.8);
    color: #000000;
    transform: scale(1.1);
}

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

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 4;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #fbbf24;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(251, 191, 36, 0.8);
}

.hero-icon {
    margin-bottom: 32px;
}

.hero-icon i {
    font-size: 4rem;
    color: #FFD700;
    animation: pulse 2s infinite;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
}

.hero-badge {
    margin-bottom: 24px;
    display: inline-block;
}

.badge-text {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.2));
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #FFD700;
    backdrop-filter: blur(10px);
}

.hero-title {
    margin-bottom: 32px;
    line-height: 1.1;
}

.title-main {
    display: block;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.title-sub {
    display: block;
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 300;
    color: #ffffff;
    margin-top: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 3vw, 1.3rem);
    color: #d1d5db;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Features */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-features .feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.hero-features .feature-item:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.hero-features .feature-item i {
    color: #FFD700;
    font-size: 1.1rem;
}

.hero-features .feature-item span {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.9rem;
}

.highlight {
    color: #fbbf24;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.hero-stats .stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    min-width: 120px;
    transition: all 0.3s ease;
}

.hero-stats .stat:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 4px;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: #d1d5db;
    font-weight: 400;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

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

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

.btn-primary {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #FFA500, #FF8C00);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #FFD700;
    border: 2px solid #FFD700;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: #FFD700;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.125rem;
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: #1f2937;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

.stat-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 50%;
    margin-bottom: 16px;
    transition: background-color 0.3s ease;
}

.stat-item:hover .stat-icon {
    background: rgba(251, 191, 36, 0.2);
}

.stat-icon i {
    font-size: 2rem;
    color: #fbbf24;
}

.stat-value {
    font-size: 3rem;
    font-weight: bold;
    color: #fbbf24;
    margin-bottom: 8px;
}

.stat-label {
    color: #d1d5db;
    font-size: 1rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.1));
    border-radius: 50%;
    margin-bottom: 32px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    position: relative;
    transition: all 0.3s ease;
}

.section-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #FFD700, #FFA500, #FFD700);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.section-header:hover .section-icon::before {
    opacity: 1;
    animation: rotate 2s linear infinite;
}

.section-icon i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

    to {
        transform: rotate(360deg);
    }
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #9ca3af;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 165, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

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

.service-card {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2), 0 0 0 1px rgba(255, 215, 0, 0.3);
}

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

.service-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(0.9);
}

.service-card:hover .service-image img {
    transform: scale(1.15);
    filter: brightness(1.1);
}

.service-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
    z-index: 2;
}

.service-duration {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 8px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.service-duration:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: scale(1.05);
}

.service-content {
    padding: 28px 24px;
    position: relative;
}

.service-name {
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

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

.service-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: #FFD700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.service-price::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    transition: width 0.3s ease;
}

.service-card:hover .service-price::after {
    width: 100%;
}

.service-description {
    color: #d1d5db;
    margin-bottom: 16px;
    line-height: 1.6;
}

.service-btn {
    width: 100%;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000000;
    border: none;
    padding: 16px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.service-btn:hover {
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

/* Style Recommendation Section */
.style-recommendation {
    padding: 100px 0;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    position: relative;
}

.style-recommendation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(255, 215, 0, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255, 165, 0, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

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

.face-shape-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 16px;
    margin-bottom: 48px;
}

.face-shape-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 16px;
    background: #374151;
    border: 2px solid transparent;
    border-radius: 12px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    pointer-events: auto;
    user-select: none;
}

.face-shape-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(251, 191, 36, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.face-shape-btn:hover::before {
    transform: translateX(100%);
}

.face-shape-btn:hover {
    background: #4b5563;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.face-shape-btn.active {
    background: #fbbf24;
    color: #000000;
    border-color: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(251, 191, 36, 0.3);
    animation: pulse 2s infinite;
}

.face-shape-btn i {
    font-size: 2rem;
    margin-bottom: 8px;
    pointer-events: none;
}

.face-shape-btn span {
    pointer-events: none;
}

.recommendation-result {
    background: #374151;
    border-radius: 12px;
    padding: 32px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.recommendation-result::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(251, 191, 36, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.recommendation-result:hover::before {
    opacity: 1;
}

.result-placeholder {
    text-align: center;
    color: #9ca3af;
}

.result-placeholder i {
    font-size: 3rem;
    margin-bottom: 16px;
    color: #6b7280;
}

.recommendation-content {
    width: 100%;
    animation: fadeInUp 0.6s ease;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.recommendation-header {
    text-align: center;
    margin-bottom: 32px;
}

.recommendation-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fbbf24;
    margin-bottom: 8px;
}

.recommendation-description {
    color: #d1d5db;
    line-height: 1.6;
}

.recommendation-styles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.style-card {
    background: #4b5563;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease;
    animation-fill-mode: both;
}

.style-card:nth-child(1) {
    animation-delay: 0.1s;
}

.style-card:nth-child(2) {
    animation-delay: 0.2s;
}

.style-card:nth-child(3) {
    animation-delay: 0.3s;
}

.style-card:nth-child(4) {
    animation-delay: 0.4s;
}

.style-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.1), transparent);
    transition: left 0.5s ease;
}

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

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

.style-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
}

.style-name {
    font-size: 1rem;
    font-weight: 600;
    color: #fbbf24;
    margin-bottom: 8px;
}

.style-description {
    font-size: 0.875rem;
    color: #9ca3af;
    line-height: 1.4;
    margin-bottom: 12px;
}

.style-view-btn {
    background: #fbbf24;
    color: #000000;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.style-view-btn:hover::before {
    width: 200%;
    height: 200%;
}

.style-view-btn:hover {
    background: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255, 215, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(255, 165, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 1;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

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

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.15), 0 0 0 1px rgba(255, 215, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(0.9) contrast(1.1);
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 3;
    backdrop-filter: blur(5px);
}

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

.gallery-title {
    color: #FFD700;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

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

.gallery-btn {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000000;
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transform: translateY(30px);
    transition: all 0.4s ease 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

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

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

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

.gallery-btn:hover {
    background: linear-gradient(135deg, #FFA500, #FF8C00);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

/* Capster Section */
.capster {
    padding: 80px 0;
}

.capster-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.capster-card {
    background: #1f2937;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 32px 16px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.capster-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px -12px rgba(251, 191, 36, 0.1);
}

.capster-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 16px;
    border: 4px solid #fbbf24;
}

.capster-name {
    font-size: 1.25rem;
    font-weight: bold;
    color: #fbbf24;
    margin-bottom: 8px;
}

.capster-role {
    color: #d1d5db;
    font-size: 1rem;
    margin-bottom: 8px;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #1f2937;
}

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

.about-description {
    font-size: 1.125rem;
    color: #d1d5db;
    margin-bottom: 24px;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #374151;
    padding: 12px 16px;
    border-radius: 8px;
}

.feature-item i {
    color: #fbbf24;
}

.about-image {
    position: relative;
}

.image-container {
    position: relative;
    z-index: 10;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.image-container::after {
    content: '';
    position: absolute;
    top: -16px;
    right: -16px;
    width: 100%;
    height: 100%;
    background: rgba(251, 191, 36, 0.2);
    border-radius: 12px;
    z-index: -1;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.contact-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    padding: 40px 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
}

.contact-item:hover::before {
    opacity: 1;
}

.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.1));
    border-radius: 50%;
    margin-bottom: 24px;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 215, 0, 0.3);
    position: relative;
}

.contact-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #FFD700, #FFA500, #FFD700);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.contact-item:hover .contact-icon::before {
    opacity: 1;
    animation: rotate 2s linear infinite;
}

.contact-icon i {
    font-size: 2.2rem;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #ffffff, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-text {
    color: #9ca3af;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 80px 0 30px;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.footer-brand {
    flex: 0 0 200px;
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand .hero-icon {
    margin-bottom: 20px;
    transition: transform 0.3s ease;
    background: none;
    border: none;
    width: auto;
    height: auto;
}

.footer-brand .hero-icon:hover {
    transform: rotate(15deg);
}

.footer-brand .hero-icon {
    margin-bottom: 20px;
    transition: transform 0.3s ease;
    background: none !important;
    border: none !important;
    width: auto !important;
    height: auto !important;
    box-shadow: none !important;
}

.footer-brand .hero-icon i {
    font-size: 2.5rem;
    color: #fbbf24;
    text-shadow: 0 0 15px rgba(251, 191, 36, 0.5);
    background: none !important;
    width: auto !important;
    height: auto !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

.footer-social {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 20px;
    padding-right: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: #fbbf24;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(251, 191, 36, 0.1);
}

.social-link:hover {
    background: #fbbf24;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.3);
}

.footer-contact {
    flex: 1;
    max-width: 600px;
    margin-left: auto;
    text-align: right;
    padding: 20px 0;
}

.footer-title {
    font-size: 1.8rem;
    color: #fbbf24;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, #fbbf24, transparent);
    border-radius: 3px;
}

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

.footer-list li {
    color: #9ca3af;
    margin-bottom: 15px;
    font-size: 1.05rem;
    line-height: 1.7;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    transition: all 0.3s ease;
}

.footer-list li i {
    margin-left: 12px;
    color: #fbbf24;
    width: 24px;
    text-align: center;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.footer-list li:hover {
    color: #ffffff;
    transform: translateX(-5px);
}

.footer-list li:hover i {
    transform: scale(1.2);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 25px;
    text-align: center;
    color: #6b7280;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-brand {
        margin-bottom: 40px;
    }

    .footer-contact {
        text-align: center;
        margin-left: 0;
        max-width: 100%;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
        right: auto;
    }

    .footer-list li {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 60px 0 25px;
    }

    .footer-brand {
        padding: 15px;
    }

    .footer-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .footer-list li {
        font-size: 1rem;
        margin-bottom: 12px;
    }
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 24px;
    text-align: center;
    color: #9ca3af;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #1f2937;
    padding: 32px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: modalShow 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: #fbbf24;
    font-size: 24px;
    cursor: pointer;
}

.modal-content img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 16px;
}

.modal-content h3 {
    color: #fbbf24;
    margin-bottom: 12px;
}

.modal-content p {
    color: #d1d5db;
}

@keyframes modalShow {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animations */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Responsive Design */
@media (min-width: 1200px) {
    .recommendation-styles {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

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

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .capster-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .recommendation-styles {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 1024px) {
    /* Navbar styles dihapus */

    .hero {
        min-height: 70vh;
        padding: 40px 0;
    }

    .hero-content {
        padding: 0 16px;
    }

    .hero-features {
        gap: 16px;
        margin-bottom: 30px;
    }

    .hero-features .feature-item {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 30px;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 24px;
    }

    .hero-stats {
        gap: 20px;
        margin-top: 30px;
    }

    .hero-stats .stat {
        padding: 16px;
        min-width: 100px;
    }

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

    .stat-label {
        font-size: 0.8rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .service-card {
        margin: 0 auto;
        max-width: 400px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .gallery-item {
        min-height: 250px;
    }

    .gallery-title {
        font-size: 1.1rem;
    }

    .gallery-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .capster-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .face-shape-buttons {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .face-shape-btn {
        padding: 16px 12px;
        font-size: 0.8rem;
    }

    .face-shape-btn i {
        font-size: 1.6rem;
    }

    .recommendation-styles {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .recommendation-result {
        padding: 24px 16px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-image {
        order: 1;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-item {
        padding: 32px 16px;
    }

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

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

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

    .footer {
        padding: 32px 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }

    .footer-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .footer-left {
        gap: 20px;
    }

    .footer-info {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .footer-social {
        justify-content: flex-end;
        padding-right: 0;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

    .footer-title {
        font-size: 1rem;
    }

    .footer-list li {
        font-size: 0.9rem;
    }

    .footer-map iframe {
        width: 100%;
        height: 300px;
    }
}

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

    .hero {
        min-height: 60vh;
        padding: 30px 0;
    }

    .hero-content {
        padding: 0 12px;
    }

    .hero-badge {
        margin-bottom: 16px;
    }

    .badge-text {
        padding: 6px 16px;
        font-size: 0.8rem;
    }

    .hero-icon {
        margin-bottom: 20px;
    }

    .hero-icon i {
        font-size: 3rem;
    }

    .title-main {
        font-size: 2.5rem;
    }

    .title-sub {
        font-size: 1rem;
        letter-spacing: 1px;
    }

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

    .hero-features {
        gap: 12px;
        margin-bottom: 24px;
    }

    .hero-features .feature-item {
        padding: 6px 12px;
        font-size: 0.75rem;
    }

    .hero-features .feature-item i {
        font-size: 1rem;
    }

    .hero-buttons {
        gap: 12px;
        margin-bottom: 24px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        max-width: 250px;
    }

    .hero-stats {
        gap: 16px;
        margin-top: 24px;
    }

    .hero-stats .stat {
        padding: 12px;
        min-width: 80px;
    }

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

    .stat-label {
        font-size: 0.75rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-label {
        font-size: 0.875rem;
    }

    .services {
        padding: 60px 0;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .service-card {
        max-width: none;
    }

    .service-image {
        height: 180px;
    }

    .service-content {
        padding: 20px 16px;
    }

    .service-name {
        font-size: 1.2rem;
    }

    .service-price {
        font-size: 1.4rem;
    }

    .service-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .gallery {
        padding: 40px 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        max-width: 100%;
        padding: 0 12px;
    }

    .gallery-item {
        width: 100%;
        height: 180px;
        margin: 0;
        max-width: none;
    }

    .gallery-title {
        font-size: 1rem;
    }

    .gallery-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .capster-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .style-recommendation {
        padding: 60px 0;
    }

    .face-shape-buttons {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .face-shape-btn {
        padding: 12px 8px;
        font-size: 0.75rem;
    }

    .face-shape-btn i {
        font-size: 1.4rem;
        margin-bottom: 4px;
    }

    .recommendation-result {
        padding: 20px 12px;
        min-height: 250px;
    }

    .recommendation-styles {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .contact {
        padding: 60px 0;
    }

    .contact-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .contact-item {
        padding: 24px 12px;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 16px;
    }

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

    .contact-title {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .contact-text {
        font-size: 0.9rem;
    }

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

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

    .section-header {
        margin-bottom: 40px;
    }

    .section-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

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

    .section-title {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .section-title::after {
        width: 40px;
        height: 3px;
    }

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

    .service-content {
        padding: 12px;
    }

    .capster-role {
        font-size: 0.875rem;
    }

    .modal-content {
        padding: 20px 16px;
        margin: 0 12px;
        max-width: calc(100% - 24px);
    }

    .modal-close {
        top: 12px;
        right: 12px;
        font-size: 20px;
    }

    .modal-content h3 {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }

    .modal-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .face-shape-btn {
        padding: 12px 8px;
        font-size: 0.75rem;
    }

    .face-shape-btn i {
        font-size: 1.5rem;
    }

    .recommendation-styles {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .style-card {
        padding: 16px;
    }

    .style-card img {
        height: 100px;
    }

    .style-view-btn {
        padding: 6px 12px;
        font-size: 0.75rem;
    }

    .style-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .style-card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .style-card:nth-child(3) {
        animation-delay: 0.3s;
    }

    .style-card:nth-child(4) {
        animation-delay: 0.4s;
    }

    .modal-content {
        padding: 16px;
        margin: 16px;
        max-width: 90%;
    }

    .modal-content img {
        margin-bottom: 12px;
    }

    .modal-content h3 {
        font-size: 1.125rem;
        margin-bottom: 8px;
    }

    .modal-content p {
        font-size: 0.875rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1f2937;
}

::-webkit-scrollbar-thumb {
    background: #fbbf24;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #f59e0b;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 kolom di semua ukuran */
    gap: 16px;
}