/* ==========================================================================
   HYELOVET PHOTOBOOTH PREMIUM STYLESHEET
   Aesthetics: Premium, Minimalist, Gen-Z Editorial (Apple & Airbnb Inspired)
   ========================================================================== */

@font-face {
    font-family: 'SonderRegular';
    src: url('SonderRegular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* Apply SonderRegular exclusively to specific headlines */
.hero-title, 
.section-title, 
.extra-heading,
.cta-title {
    font-family: 'SonderRegular', var(--font-serif) !important;
}

/* --- Custom Properties / Design Tokens --- */
:root {
    /* Colors */
    --primary: #F56578;
    --primary-light: #FFE5EA;
    --primary-ultra-light: #FFF3F5;
    --white: #FFFFFF;
    --dark: #111111;
    --gray-light: #F9F9FB;
    --gray-medium: #F0F0F3;
    --gray-dark: #777777;
    
    /* Typography */
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(17, 17, 17, 0.03), 0 2px 4px -1px rgba(17, 17, 17, 0.02);
    --shadow-md: 0 12px 20px -3px rgba(17, 17, 17, 0.06), 0 4px 6px -2px rgba(17, 17, 17, 0.03);
    --shadow-lg: 0 24px 38px -5px rgba(17, 17, 17, 0.08), 0 10px 15px -5px rgba(17, 17, 17, 0.03);
    --shadow-premium: 0 40px 80px -15px rgba(245, 101, 120, 0.12), 0 15px 30px -10px rgba(17, 17, 17, 0.04);
    --shadow-stack: 0 15px 35px rgba(17, 17, 17, 0.12), 0 5px 15px rgba(17, 17, 17, 0.06);
    
    /* Transitions */
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-medium: all 0.3s ease;
    
    /* Container Width */
    --container-width: 1200px;
}

/* --- Reset & Base Styles --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* Offset for sticky nav */
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    background-color: var(--white);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography Utility */
.font-serif {
    font-family: var(--font-serif);
    font-weight: 500;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-medium);
}

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

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
}

ul {
    list-style: none;
}

/* --- Layout Containers --- */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

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

.relative-z {
    position: relative;
    z-index: 2;
}

/* --- Custom Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition-smooth);
    letter-spacing: -0.01em;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 20px -5px rgba(245, 101, 120, 0.3);
}

.btn-primary:hover {
    background-color: #e05365;
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -5px rgba(245, 101, 120, 0.4);
}

.btn-secondary {
    background-color: var(--primary-ultra-light);
    color: var(--primary);
}

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

.btn-outline {
    background-color: transparent;
    color: var(--dark);
    border: 1px solid var(--gray-medium);
}

.btn-outline:hover {
    background-color: var(--dark);
    color: var(--white);
    border-color: var(--dark);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

.btn i {
    width: 16px;
    height: 16px;
    transition: var(--transition-medium);
}

.btn:hover i {
    transform: translate(2px, -2px);
}

.btn-secondary:hover i {
    transform: translateY(2px);
}

/* --- Navigation Bar --- */
.navbar-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: var(--container-width);
    z-index: 100;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 12px 32px;
    background-color: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.navbar-container.scrolled {
    top: 10px;
    padding: 8px 24px;
    background-color: rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 45px rgba(0, 0, 0, 0.06);
}

.navbar-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.navbar-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar-container.scrolled .navbar-logo {
    height: 38px;
}

.nav-menu ul {
    display: flex;
    gap: 36px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark);
    opacity: 0.7;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-medium);
}

.nav-link:hover,
.nav-link.active {
    opacity: 1;
    color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.navbar-cta-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 16px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    z-index: 101;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--dark);
    border-radius: var(--radius-full);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease;
}

/* Burger Animation to X */
.mobile-menu-toggle.active .bar:nth-child(1),
.navbar-container.menu-open .mobile-menu-toggle .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background-color: var(--primary) !important;
}

.mobile-menu-toggle.active .bar:nth-child(2),
.navbar-container.menu-open .mobile-menu-toggle .bar:nth-child(2) {
    opacity: 0 !important;
}

.mobile-menu-toggle.active .bar:nth-child(3),
.navbar-container.menu-open .mobile-menu-toggle .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background-color: var(--primary) !important;
}

.mobile-only-cta {
    display: none;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    padding: 160px 0 100px 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background-color: var(--white);
    overflow: hidden;
}

/* Organic Gradient Shapes */
.bg-gradient-shape {
    position: absolute;
    border-radius: var(--radius-full);
    background: radial-gradient(circle, rgba(245, 101, 120, 0.15) 0%, rgba(255, 229, 234, 0.05) 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
}

.shape-top-right {
    top: -10%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    max-width: 600px;
    max-height: 600px;
}

.shape-bottom-left {
    bottom: -10%;
    left: -10%;
    width: 40vw;
    height: 40vw;
    max-width: 500px;
    max-height: 500px;
}

/* Large background text */
.bg-huge-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-serif);
    font-size: 14vw;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.025;
    letter-spacing: 0.1em;
    user-select: none;
    pointer-events: none;
    z-index: 1;
    white-space: nowrap;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 580px;
}

.badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-ultra-light);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.badge-premium i {
    width: 14px;
    height: 14px;
}

.hero-title {
    font-size: clamp(2.5rem, 4.5vw, 4.2rem);
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--primary);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--gray-dark);
    margin-bottom: 36px;
    font-weight: 400;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--gray-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 1px;
    height: 32px;
    background-color: var(--gray-medium);
}

/* --- Photo Strip Stack Container (Nisbah 4:3) --- */
.hero-stack-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
}

.photo-strip-stack {
    position: relative;
    width: 440px;
    height: 330px; /* Nisbah 4:3 */
    perspective: 1000px;
    cursor: grab;
}

.photo-strip-stack:active {
    cursor: grabbing;
}

.photo-strip-card {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-md);
    background-color: var(--white);
    border: 8px solid var(--white);
    box-shadow: var(--shadow-stack);
    overflow: hidden;
    transform-origin: bottom center;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease;
    user-select: none;
    -webkit-user-drag: none;
}

.photo-strip-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    border-radius: calc(var(--radius-md) - 8px);
}

/* Default Pile Positions */
.photo-strip-card.card-1 {
    z-index: 11;
    transform: translate3d(0, 0, 0) rotate(-2deg);
}

.photo-strip-card.card-2 {
    z-index: 10;
    transform: translate3d(8px, 8px, -20px) scale(0.96) rotate(2deg);
    opacity: 0.95;
}

.photo-strip-card.card-3 {
    z-index: 9;
    transform: translate3d(-10px, 16px, -40px) scale(0.92) rotate(-3deg);
    opacity: 0.9;
}

.photo-strip-card.card-4 {
    z-index: 8;
    transform: translate3d(12px, 24px, -60px) scale(0.88) rotate(4deg);
    opacity: 0.85;
}

.photo-strip-card.card-5 {
    z-index: 7;
    transform: translate3d(-6px, 32px, -80px) scale(0.84) rotate(-2deg);
    opacity: 0.8;
}

.photo-strip-card.card-6 {
    z-index: 6;
    transform: translate3d(14px, 40px, -100px) scale(0.8) rotate(3deg);
    opacity: 0.75;
}

.photo-strip-card.card-7 {
    z-index: 5;
    transform: translate3d(-12px, 48px, -120px) scale(0.76) rotate(-2deg);
    opacity: 0.7;
}

/* Deep stack cards (hidden to keep it clean) */
.photo-strip-card.card-8,
.photo-strip-card.card-9,
.photo-strip-card.card-10,
.photo-strip-card.card-11 {
    z-index: 0;
    transform: translate3d(0, 48px, -120px) scale(0.76) rotate(0deg);
    opacity: 0;
}

/* Slide Away Animation Class */
.photo-strip-card.slide-out {
    transform: translate3d(480px, -80px, 0) scale(1.05) rotate(15deg) !important;
    opacity: 0 !important;
    pointer-events: none;
    z-index: 12;
}

.stack-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 36px;
    font-size: 0.8rem;
    color: var(--gray-dark);
    opacity: 0.7;
    background-color: var(--gray-light);
    padding: 6px 14px;
    border-radius: var(--radius-full);
}

.indicator-icon {
    width: 14px;
    height: 14px;
    color: var(--primary);
    animation: bounce 2s infinite;
}

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

/* --- Section Trusted By --- */
.trusted-section {
    padding: 60px 0;
    background-color: var(--gray-light);
    border-top: 1px solid rgba(17, 17, 17, 0.03);
    border-bottom: 1px solid rgba(17, 17, 17, 0.03);
}

.section-tag {
    text-align: center;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-dark);
    margin-bottom: 32px;
    font-weight: 700;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
    gap: 80px;
    animation: scroll 20s linear infinite;
}

.marquee-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 64px;
}

.marquee-item img {
    height: 100%;
    width: auto;
    object-fit: contain;
    transition: var(--transition-medium);
    opacity: 0.85;
}

.marquee-item:hover img {
    opacity: 1;
    transform: scale(1.05);
}

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

/* --- General Section Headers --- */
.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--dark);
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray-dark);
    max-width: 600px;
    margin: 0 auto;
}

.section-divider {
    width: 40px;
    height: 3px;
    background-color: var(--primary);
    margin: 16px auto 0 auto;
    border-radius: var(--radius-full);
}

/* --- Event Category Section --- */
.categories-section {
    padding: 100px 0;
    background-color: var(--white);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.category-card {
    border-radius: var(--radius-lg);
    background-color: var(--white);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid rgba(17, 17, 17, 0.03);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(245, 101, 120, 0.1);
}

.category-image-wrapper {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.category-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-card:hover .category-image-wrapper img {
    transform: scale(1.08);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(17, 17, 17, 0.4) 100%);
    opacity: 0.6;
}

.category-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.category-title {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 12px;
}

.category-desc {
    font-size: 0.88rem;
    color: var(--gray-dark);
    margin-bottom: 24px;
    flex-grow: 1;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    align-self: flex-start;
}

.category-link i {
    width: 16px;
    height: 16px;
    transition: var(--transition-medium);
}

.category-link:hover i {
    transform: translateX(4px);
}

/* --- Gallery Section (Masonry) --- */
.gallery-section {
    padding: 100px 0;
    background-color: var(--gray-light);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 600;
    background-color: var(--white);
    color: var(--dark);
    border: 1px solid rgba(17, 17, 17, 0.05);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-1px);
}

.filter-btn.active {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 8px 16px -4px rgba(245, 101, 120, 0.25);
}

/* Pinterest style columns */
.gallery-masonry {
    column-count: 3;
    column-gap: 24px;
    width: 100%;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 24px;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center center;
}

.gallery-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.gallery-img-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: var(--gray-medium);
}

.gallery-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover .gallery-img-container img {
    transform: scale(1.05);
}

/* --- Section Why Hyelovet --- */
.why-section {
    padding: 100px 0;
    background-color: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.why-card {
    background-color: var(--white);
    padding: 36px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(17, 17, 17, 0.03);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(245, 101, 120, 0.08);
}

.why-icon-wrapper {
    width: 54px;
    height: 54px;
    border-radius: var(--radius-md);
    background-color: var(--primary-ultra-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.why-icon-wrapper i {
    width: 26px;
    height: 26px;
}

.why-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.why-card-desc {
    font-size: 0.88rem;
    color: var(--gray-dark);
}

/* --- Section Package --- */
.package-section {
    padding: 100px 0;
    background-color: var(--gray-light);
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: stretch;
}

.package-card {
    background-color: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    border: 1px solid rgba(17, 17, 17, 0.04);
    box-shadow: var(--shadow-sm);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition-smooth);
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.package-card.featured {
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-premium);
}

.badge-popular {
    position: absolute;
    top: 24px;
    right: 24px;
    background-color: var(--primary);
    color: var(--white);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.package-duration {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 12px;
}

.package-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 32px;
}

.package-price .currency {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-right: 4px;
}

.package-price .amount {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
}

.package-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
    flex-grow: 1;
}

.package-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    color: #444;
}

.package-features i {
    width: 18px;
    height: 18px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.package-footer {
    width: 100%;
}

/* --- Section Collaboration --- */
.collaboration-section {
    padding: 100px 0;
    background-color: var(--white);
}

.collab-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.collab-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid rgba(17, 17, 17, 0.03);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.collab-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(245, 101, 120, 0.08);
}

.collab-icon {
    color: var(--primary);
    margin-bottom: 20px;
}

.collab-icon i {
    width: 32px;
    height: 32px;
}

.collab-card-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 16px;
}

.collab-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.collab-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--gray-dark);
}

.collab-benefits i {
    width: 14px;
    height: 14px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 3px;
}

.style-top-space {
    margin-top: 60px;
}

/* --- Section Testimonials (Instagram Story style) --- */
.testimonial-section {
    padding: 100px 0;
    background-color: var(--gray-light);
    overflow: hidden;
}

.testimonial-slider-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 0 40px;
}

.testimonial-slider {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
}

.testimonial-card {
    min-width: 100%;
    width: 100%;
    background-color: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(17, 17, 17, 0.02);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.testi-profile {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testi-avatar-placeholder {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.testi-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
}

.testi-event {
    font-size: 0.8rem;
    color: var(--gray-dark);
}

.testi-rating {
    display: flex;
    gap: 2px;
    color: #F8D05C;
}

.testi-rating i {
    width: 16px;
    height: 16px;
    fill: #F8D05C;
}

.testi-body {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    line-height: 1.5;
    color: var(--dark);
    font-style: italic;
}

.slider-controls {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    pointer-events: none;
}

.slider-control-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background-color: var(--white);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    pointer-events: auto;
    transition: var(--transition-medium);
}

.slider-control-btn:hover {
    color: var(--primary);
    transform: scale(1.05);
}

.slider-control-btn i {
    width: 18px;
    height: 18px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
    background-color: var(--gray-medium);
    cursor: pointer;
    transition: var(--transition-medium);
}

.dot.active {
    background-color: var(--primary);
    width: 24px;
}

/* --- Section Instagram --- */
.instagram-section {
    padding: 60px 0 20px 0;
    background-color: var(--white);
}

.insta-handle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
    margin-top: 8px;
}

.insta-handle i {
    width: 18px;
    height: 18px;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.instagram-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1;
    display: block;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.insta-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(245, 101, 120, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    color: var(--white);
    transition: var(--transition-medium);
}

.insta-hover-overlay i {
    width: 28px;
    height: 28px;
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.instagram-item:hover img {
    transform: scale(1.08);
}

.instagram-item:hover .insta-hover-overlay {
    opacity: 1;
}

.instagram-item:hover .insta-hover-overlay i {
    transform: scale(1);
}

/* --- Final CTA Section --- */
.final-cta-section {
    padding: 40px 0 80px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.shape-cta {
    bottom: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    max-width: 700px;
    max-height: 700px;
}

.cta-card {
    background-color: var(--primary-ultra-light);
    border-radius: var(--radius-xl);
    padding: 80px 40px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    border: 1px solid var(--primary-light);
    box-shadow: var(--shadow-premium);
}

.cta-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: var(--gray-dark);
    margin-bottom: 40px;
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.05rem;
}

.btn-cta i {
    width: 20px;
    height: 20px;
}

/* --- Footer --- */
.footer-container {
    background-color: var(--dark);
    color: var(--white);
    padding: 80px 0 100px 0; /* Add bottom padding for sticky mobile cta */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 1.2fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 75px;
    width: auto;
    object-fit: contain;
    margin-bottom: 24px;
    filter: brightness(0) invert(1); /* Turn logo white */
}

.footer-brand-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.footer-heading {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    color: var(--primary);
}

.footer-nav ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a,
.footer-contact a,
.footer-contact span {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-nav a:hover,
.footer-contact a:hover {
    color: var(--primary);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact i {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-medium);
}

.social-links a:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.social-links i,
.social-links svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* --- Floating & Sticky Elements --- */
.whatsapp-floating-wrapper {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    pointer-events: none;
}

.floating-whatsapp {
    position: static;
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    background-color: #25D366; /* Official WhatsApp Color */
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    transition: var(--transition-smooth);
    pointer-events: auto;
}

.floating-whatsapp:hover {
    transform: translateY(-3px) scale(1.05);
    background-color: #20ba59;
}

.whatsapp-chat-bubble {
    background-color: var(--white);
    color: var(--dark);
    padding: 12px 28px 12px 16px;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.05);
    max-width: 260px;
    font-size: 0.88rem;
    font-weight: 500;
    line-height: 1.4;
    position: relative;
    opacity: 0;
    transform: translateY(15px) scale(0.9);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}

.whatsapp-chat-bubble.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.whatsapp-chat-bubble::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 24px;
    width: 12px;
    height: 12px;
    background-color: var(--white);
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transform: rotate(45deg);
}

.whatsapp-chat-close {
    position: absolute;
    top: 4px;
    right: 6px;
    background: none;
    border: none;
    font-size: 1.1rem;
    color: var(--gray-dark);
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s ease;
    line-height: 1;
    padding: 0 4px;
}

.whatsapp-chat-close:hover {
    opacity: 1;
    color: var(--dark);
}

.whatsapp-icon {
    width: 30px;
    height: 30px;
}

.whatsapp-tooltip {
    position: absolute;
    right: 76px;
    background-color: var(--dark);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-medium);
    box-shadow: var(--shadow-md);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent var(--dark);
}

.floating-whatsapp:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* --- Scroll Reveal Classes --- */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Delay classes */
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* ==========================================================================
   MEDIA QUERIES (Responsive Design)
   ========================================================================== */

@media (max-width: 1024px) {
    .container {
        padding: 0 32px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-subtitle {
        max-width: 540px;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .gallery-masonry {
        column-count: 2;
    }
    
    .package-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .package-card.featured {
        grid-order: -1; /* Put featured at top/first in grid flow */
    }
    
    .collab-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1.5fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .navbar-container {
        width: calc(100% - 24px);
        top: 12px;
        padding: 10px 20px;
    }

    .navbar-container.menu-open {
        border-radius: 20px 20px 0 0;
        border-bottom-color: transparent;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.03);
    }

    .btn-nav {
        display: none; /* Hide nav button on mobile screen */
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        margin-top: -1px; /* Overlap border to merge */
        background-color: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 30px 24px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
        border: 1px solid rgba(0, 0, 0, 0.05);
        border-top: none;
        border-radius: 0 0 20px 20px;
        transform: translateY(-15px);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 99;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    
    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .nav-menu ul li.mobile-only-cta {
        display: block !important;
        width: 100%;
        margin-top: 15px;
    }
    .nav-menu ul li.mobile-only-cta a {
        display: inline-flex !important;
        width: 100% !important;
    }
    
    .hero-section {
        padding: 120px 0 80px 0;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .photo-strip-stack {
        width: 360px;
        height: 270px;
    }
    
    .gallery-filters {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .package-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .testimonial-slider-container {
        padding: 0 10px;
    }
    
    .testimonial-card {
        padding: 32px 24px;
    }
    
    .testi-body {
        font-size: 1.15rem;
    }
    
    .slider-controls {
        position: relative;
        transform: none;
        top: auto;
        justify-content: center;
        gap: 20px;
        margin-top: 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .whatsapp-floating-wrapper {
        bottom: 24px;
        right: 16px;
        gap: 8px;
    }
    
    .floating-whatsapp {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-chat-bubble {
        max-width: 220px;
        font-size: 0.82rem;
        padding: 10px 24px 10px 12px;
    }

    .whatsapp-chat-bubble::after {
        right: 18px;
    }
    
    .whatsapp-icon {
        width: 24px;
        height: 24px;
    }
    
    .whatsapp-tooltip {
        display: none !important; /* Hide tooltip on mobile touch */
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-masonry {
        column-count: 1;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-card {
        padding: 48px 20px;
    }

    .photo-strip-stack {
        width: 310px;
        height: 232px;
    }
}

/* ==========================================================================
   EXTRA SECTIONS (Photostrip Stack, Boomerang Gifts & Coverage Map)
   ========================================================================== */

.gallery-extra-container {
    display: flex;
    flex-direction: row;
    gap: 60px;
    max-width: var(--container-width);
    margin: 80px auto 0 auto;
    align-items: flex-start;
    width: 100%;
}

.photostrip-section {
    flex: 1;
    min-width: 320px;
}

.boomerang-section {
    flex: 2;
    min-width: 0;
}

/* Responsiveness for gallery-extra-container */
@media (max-width: 900px) {
    .gallery-extra-container {
        gap: 40px;
    }
    .photostrip-section {
        min-width: 280px;
    }
}

@media (max-width: 800px) {
    .gallery-extra-container {
        flex-direction: column;
        align-items: center;
        gap: 60px;
        margin-top: 60px;
    }
    .photostrip-section {
        width: 100%;
        text-align: center;
    }
    .photostrip-section .extra-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .boomerang-section {
        width: 100%;
        text-align: center;
    }
    .boomerang-section .extra-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .collab-grid {
        grid-template-columns: 1fr;
    }
}

.extra-heading {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 8px;
    position: relative;
    padding-bottom: 8px;
}

.extra-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary);
    border-radius: var(--radius-full);
}

.extra-subheading {
    font-size: 0.95rem;
    color: var(--gray-dark);
    margin-bottom: 36px;
}

/* Photostrip Stack Styles (Aspect Ratio 1:3) */
.photostrip-stack-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 520px;
    position: relative;
}

.photostrip-stack {
    position: relative;
    width: 160px;
    height: 480px; /* Nisbah 1:3 */
    perspective: 1000px;
    cursor: pointer;
}

.photostrip-card {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-md);
    background-color: var(--white);
    border: 6px solid var(--white);
    box-shadow: var(--shadow-stack);
    overflow: hidden;
    transform-origin: bottom center;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease;
    user-select: none;
}

.photostrip-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    border-radius: calc(var(--radius-md) - 6px);
}

/* 8 cards stack styling */
.photostrip-card.card-1 { z-index: 8; transform: translate3d(0, 0, 0) rotate(-1.5deg); }
.photostrip-card.card-2 { z-index: 7; transform: translate3d(4px, 6px, -15px) scale(0.98) rotate(1.5deg); opacity: 0.95; }
.photostrip-card.card-3 { z-index: 6; transform: translate3d(-6px, 12px, -30px) scale(0.96) rotate(-2deg); opacity: 0.9; }
.photostrip-card.card-4 { z-index: 5; transform: translate3d(6px, 18px, -45px) scale(0.94) rotate(2deg); opacity: 0.85; }
.photostrip-card.card-5 { z-index: 4; transform: translate3d(-4px, 24px, -60px) scale(0.92) rotate(-1.5deg); opacity: 0.8; }
.photostrip-card.card-6 { z-index: 3; transform: translate3d(5px, 30px, -75px) scale(0.90) rotate(1deg); opacity: 0.75; }
.photostrip-card.card-7 { z-index: 2; transform: translate3d(-3px, 36px, -90px) scale(0.88) rotate(-1deg); opacity: 0.7; }
.photostrip-card.card-8 { z-index: 1; transform: translate3d(4px, 42px, -105px) scale(0.86) rotate(1.5deg); opacity: 0.65; }

.photostrip-card.slide-out {
    transform: translate3d(280px, -40px, 0) scale(1.05) rotate(10deg) !important;
    opacity: 0 !important;
    pointer-events: none;
    z-index: 9;
}

/* Boomerang GIF Styles */
.boomerang-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 24px;
}

@media (max-width: 1100px) {
    .boomerang-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 800px) {
    .boomerang-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        max-width: 500px;
        margin: 24px auto 0 auto;
    }
}

.boomerang-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(17, 17, 17, 0.04);
    aspect-ratio: 5 / 4;
    background-color: var(--gray-light);
    transition: var(--transition-medium);
    
    /* Safari/iOS rendering bug fixes */
    isolation: isolate;
    -webkit-clip-path: inset(0% round var(--radius-md));
}

.boomerang-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(245, 101, 120, 0.15);
}

.boomerang-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* ==========================================================================
   COVERAGE SECTION (Peta Semenanjung Malaysia)
   ========================================================================== */
.coverage-section {
    padding: 100px 0;
    background-color: var(--gray-light);
    border-top: 1px solid rgba(17, 17, 17, 0.03);
    border-bottom: 1px solid rgba(17, 17, 17, 0.03);
}

.coverage-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
}

@media (max-width: 900px) {
    .coverage-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

.coverage-desc {
    font-size: 1.1rem;
    color: var(--gray-dark);
    margin-bottom: 30px;
    line-height: 1.7;
}

.location-card {
    background-color: var(--white);
    border: 1px solid rgba(17, 17, 17, 0.05);
    border-radius: var(--radius-md);
    padding: 30px 40px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-medium);
    width: 100%;
}

.location-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(245, 101, 120, 0.15);
}

.coverage-list-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media (max-width: 600px) {
    .coverage-list-inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.location-item {
    transition: var(--transition-medium);
}

.location-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.location-item h3 i {
    color: var(--primary);
    width: 18px;
    height: 18px;
}

.location-item p {
    font-size: 0.85rem;
    color: var(--gray-dark);
    line-height: 1.4;
}

.coverage-map-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.map-image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(17, 17, 17, 0.08);
    background-color: var(--white);
    padding: 12px;
    width: 100%;
}

.map-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-md);
}

/* Social Media Badges (Ikuti Kami section list) */
.social-badges-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin: 24px auto 40px auto;
    flex-wrap: wrap;
    max-width: 800px;
}

.social-badge-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    background-color: var(--white);
    border: 1px solid rgba(17, 17, 17, 0.05);
    box-shadow: var(--shadow-sm);
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--dark);
    cursor: pointer;
}

.social-badge-card i,
.social-badge-card svg,
.social-logo-img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.footer-social-logo {
    width: 18px;
    height: 18px;
    object-fit: contain;
    opacity: 0.7;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.tiktok-icon {
    display: inline-block;
    vertical-align: middle;
}

.social-handle {
    font-size: 0.85rem;
    font-weight: 400;
    opacity: 0.6;
    margin-left: 4px;
}

/* Hover effects with specific brand colors and gradients */
.social-badge-card.instagram:hover {
    color: var(--white);
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    box-shadow: 0 10px 25px rgba(214, 36, 159, 0.25);
    border-color: transparent;
    transform: translateY(-3px);
}

.social-badge-card.facebook:hover {
    color: var(--white);
    background-color: #1877F2;
    box-shadow: 0 10px 25px rgba(24, 119, 242, 0.25);
    border-color: transparent;
    transform: translateY(-3px);
}

.social-badge-card.tiktok:hover {
    color: var(--white);
    background-color: #010101;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: transparent;
    transform: translateY(-3px);
}

.social-badge-card:hover i,
.social-badge-card:hover svg,
.social-badge-card:hover .social-logo-img,
.social-links a:hover .footer-social-logo {
    transform: scale(1.15);
}

.social-links a:hover .footer-social-logo {
    opacity: 1;
}

.social-badge-card:hover .social-handle {
    color: inherit;
    opacity: 0.9;
}

