/* ==========================================================================
   EPIC STUDIO - LUXURY PHOTOGRAPHY PORTFOLIO & STUDIO WEBSITE
   Modern, Clean, Elegant & Responsive Design System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* ==========================================================================
   1. CSS VARIABLES & RESET
   ========================================================================== */

:root {
    --primary-color: #8c633a;
    --primary-dark: #634323;
    --primary-light: #b08455;
    --accent-gold: #cba26b;
    --accent-gold-light: #eedac0;
    
    --bg-dark: #1b1612;
    --bg-light: #faf7f2;
    --bg-card: #f5eee4;
    --bg-card-hover: #ebe0d2;
    
    --text-primary: #2d241c;
    --text-secondary: #6e5e50;
    --text-muted: #968677;
    --text-white: #ffffff;
    
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-serif-accent: 'Cinzel', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    --header-height: 72px;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-pill: 50px;
    
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 40px rgba(100, 68, 36, 0.14);
    --shadow-glow: 0 0 25px rgba(203, 162, 107, 0.35);
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: #ffffff;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ==========================================================================
   2. HEADER & NAVIGATION (TASKBAR)
   ========================================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6%;
    background: rgba(110, 77, 44, 0.88);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
    transition: background var(--transition-base), height var(--transition-base), box-shadow var(--transition-base);
}

.header.scrolled {
    background: rgba(90, 60, 32, 0.96);
    height: 64px;
    box-shadow: 0 6px 35px rgba(0, 0, 0, 0.2);
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo a {
    display: flex;
    align-items: center;
    transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.logo a:hover {
    transform: scale(1.04);
    opacity: 0.92;
}

.logo img {
    height: 42px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
}

/* DESKTOP NAV PILLS */
.nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav a {
    color: var(--text-white);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.nav a:hover {
    background: rgba(255, 255, 255, 0.26);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    color: #ffffff;
}

.nav a.active {
    background: #ffffff;
    color: var(--primary-dark);
    border-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.18);
    font-weight: 700;
}

/* HAMBURGER TOGGLE BUTTON */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1010;
}

.menu-toggle .bar {
    width: 100%;
    height: 2.5px;
    background-color: #ffffff;
    border-radius: 3px;
    transition: transform var(--transition-base), opacity var(--transition-base), background-color var(--transition-base);
}

.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
    transform: translateX(12px);
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

/* ==========================================================================
   3. HERO SLIDER (HOME PAGE)
   ========================================================================== */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 650px;
    overflow: hidden;
    background-color: var(--bg-dark);
}

.slider {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.9s cubic-bezier(0.65, 0, 0.35, 1);
    touch-action: pan-y;
}

.slide {
    position: relative;
    min-width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.02);
    transition: transform 6s ease-out;
}

.slide.active img {
    transform: scale(1.08);
}

.slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(18, 13, 8, 0.78) 0%,
        rgba(18, 13, 8, 0.45) 45%,
        rgba(18, 13, 8, 0.1) 100%
    ),
    linear-gradient(
        0deg,
        rgba(18, 13, 8, 0.65) 0%,
        transparent 35%
    );
}

.hero-content {
    position: absolute;
    z-index: 10;
    left: 8%;
    top: 52%;
    transform: translateY(-50%);
    color: var(--text-white);
    max-width: 560px;
}

.hero-badge {
    display: inline-block;
    font-family: var(--font-serif-accent);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-gold-light);
    border: 1px solid rgba(238, 218, 192, 0.4);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    margin-bottom: 20px;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(8px);
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(34px, 5.5vw, 68px);
    line-height: 1.08;
    font-weight: 600;
    margin-bottom: 22px;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.hero-content p {
    font-family: var(--font-body);
    font-size: clamp(14px, 1.6vw, 16px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 440px;
    margin-bottom: 30px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 13px 28px;
    border-radius: var(--radius-pill);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-base);
}

.btn-hero-primary:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(140, 99, 58, 0.4);
    color: #ffffff;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.8px;
    padding: 13px 26px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all var(--transition-base);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    color: #ffffff;
}

/* SLIDER DOTS */
.dots {
    position: absolute;
    z-index: 20;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: var(--radius-pill);
    border: none;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: all var(--transition-base);
}

.dot.active {
    width: 30px;
    background: #ffffff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   4. STUDIO PACKAGES SECTION (HOME)
   ========================================================================== */

.packages {
    padding: 100px 6% 110px;
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, #faf6f0 100%);
    width: 100%;
    position: relative;
}

.section-header {
    max-width: 650px;
    margin: 0 auto 55px;
}

.section-tag {
    font-family: var(--font-serif-accent);
    font-size: 12px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 12px;
    display: inline-block;
    font-weight: 600;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.section-desc {
    font-family: var(--font-body);
    font-size: 14.5px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.package-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 24px;
    width: 100%;
}

.package-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    border-radius: var(--radius-lg);
    background: #ffffff;
    padding: 16px 16px 22px;
    border: 1px solid rgba(176, 132, 85, 0.18);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.package-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-lg);
}

.package-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 18px;
    background-color: var(--bg-card);
    position: relative;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

.package-card:hover .package-image img {
    transform: scale(1.09);
}

.package-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(30, 20, 10, 0.3) 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.package-card:hover .package-image::after {
    opacity: 1;
}

.package-name {
    display: inline-block;
    border: 1px solid var(--accent-gold);
    background: #faf6f1;
    border-radius: var(--radius-pill);
    padding: 9px 20px;
    font-family: var(--font-serif-accent);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: var(--primary-dark);
    text-align: center;
    white-space: nowrap;
    transition: all var(--transition-base);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.package-card:hover .package-name {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-color: var(--primary-dark);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(100, 68, 36, 0.3);
}

/* ==========================================================================
   5. ABOUT SECTION (HOME)
   ========================================================================== */

.about {
    background: linear-gradient(180deg, #faf6f0 0%, #efe7dc 100%);
    padding: 110px 10%;
    text-align: center;
    position: relative;
    border-top: 1px solid rgba(176, 132, 85, 0.15);
}

.about-badge {
    font-family: var(--font-serif-accent);
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 12px;
    display: inline-block;
}

.about h2 {
    font-family: var(--font-heading);
    font-size: clamp(30px, 4.5vw, 44px);
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--primary-dark);
}

.about-divider {
    width: 60px;
    height: 2px;
    background: var(--accent-gold);
    margin: 0 auto 28px;
    border-radius: 2px;
}

.about p {
    max-width: 680px;
    margin: 0 auto 28px;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.85;
    color: var(--text-secondary);
    font-weight: 400;
}

.btn-about-ig {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    border-radius: var(--radius-pill);
    box-shadow: 0 8px 22px rgba(110, 77, 44, 0.28);
    transition: all var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-about-ig svg {
    width: 18px;
    height: 18px;
    fill: #ffffff;
    transition: transform var(--transition-fast);
}

.btn-about-ig:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(110, 77, 44, 0.4);
    color: #ffffff;
}

.btn-about-ig:hover svg {
    transform: scale(1.15);
}

.about-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--primary-dark);
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-pill);
    border: 1px solid rgba(176, 132, 85, 0.25);
    box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   6. FOOTER & CONTACT
   ========================================================================== */

footer {
    background: var(--primary-dark);
    color: var(--text-white);
    padding: 35px 7%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-body);
    font-size: 13.5px;
    flex-wrap: wrap;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copy {
    opacity: 0.9;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    text-decoration: none;
    font-size: 12.5px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-base);
}

.footer-link:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    color: #ffffff;
}

.footer-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
    display: block;
    flex-shrink: 0;
}

/* ==========================================================================
   7. PRICING PAGES (GRADUATION, MATERNITY, SMASHCAKE)
   ========================================================================== */

.pricing-container {
    padding: calc(var(--header-height) + 50px) 6% 80px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.page-tag {
    font-family: var(--font-serif-accent);
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 8px;
    display: inline-block;
}

.page-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 40px);
    letter-spacing: 1.5px;
    color: var(--primary-dark);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 5px;
}

.page-subtitle {
    font-family: var(--font-serif-accent);
    font-size: 15px;
    letter-spacing: 4px;
    color: var(--primary-light);
    margin-bottom: 45px;
    font-weight: 600;
    text-transform: uppercase;
}

/* ==========================================================================
   7. PRICING PAGES (GRADUATION, MATERNITY, SMASHCAKE)
   ========================================================================== */

.pricing-container {
    padding: calc(var(--header-height) + 50px) 6% 80px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.page-tag {
    font-family: var(--font-serif-accent);
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 8px;
    display: inline-block;
}

.page-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 40px);
    letter-spacing: 1.5px;
    color: var(--primary-dark);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 5px;
}

.page-subtitle {
    font-family: var(--font-serif-accent);
    font-size: 15px;
    letter-spacing: 4px;
    color: var(--primary-light);
    margin-bottom: 45px;
    font-weight: 600;
    text-transform: uppercase;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 50px;
}

.price-card {
    background: linear-gradient(145deg, #ffffff 0%, #f7f2eb 100%);
    border: 1px solid rgba(176, 132, 85, 0.22);
    border-radius: var(--radius-lg);
    padding: 24px 22px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.price-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

/* COVER GAMBAR SAMPUL PAKET */
.price-card-img {
    width: 100%;
    height: 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 18px;
    background-color: #ede5da;
    position: relative;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.price-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
    transition: transform var(--transition-slow);
}

.price-card:hover .price-card-img img {
    transform: scale(1.08);
}

.price-card-body {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
}

.price-card h3 {
    font-family: var(--font-serif-accent);
    font-size: 21px;
    letter-spacing: 2.5px;
    margin-bottom: 6px;
    font-weight: 700;
    color: var(--primary-dark);
}

.price-card .price {
    font-family: var(--font-body);
    font-size: 19px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 18px;
    letter-spacing: 0.5px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(176, 132, 85, 0.2);
    width: 100%;
    text-align: center;
}

.price-card.highlight-card {
    background: linear-gradient(145deg, #fffdfa 0%, #f6ecdc 100%);
    border: 2px solid var(--accent-gold);
    box-shadow: var(--shadow-md), 0 0 20px rgba(203, 162, 107, 0.15);
}

.price-card.highlight-card::before {
    content: "⭐ RECOMMENDED";
    position: absolute;
    top: 12px;
    right: -32px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #ffffff;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 4px 35px;
    transform: rotate(45deg);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    z-index: 5;
}

.price-card .card-subtitle {
    font-family: var(--font-heading);
    font-size: 15px;
    line-height: 1.5;
    margin: 10px 0 14px;
    letter-spacing: 1px;
    color: var(--text-secondary);
    text-align: center;
}

.price-card .big-price {
    font-size: 23px;
    margin-top: 5px;
    color: var(--primary-dark);
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px;
    width: 100%;
    text-align: left;
    flex-grow: 1;
}

.price-card ul li {
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    margin-bottom: 7px;
}

.price-card ul li::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: rgba(140, 99, 58, 0.12);
    color: var(--primary-color);
    font-size: 10.5px;
    font-weight: 800;
    margin-right: 9px;
    flex-shrink: 0;
}

.additional-list li {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 10px;
    font-size: 13px !important;
}

.additional-list li::before {
    display: none !important;
}

.additional-list li span {
    color: var(--text-secondary);
}

.additional-list li strong {
    color: var(--primary-dark);
    font-weight: 700;
}

/* TOMBOL BOOK NOW DI SETIAP KARTU PAKET */
.btn-card-book {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 14px;
    padding: 12px 18px;
    border-radius: var(--radius-pill);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(110, 77, 44, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-base);
}

.btn-card-book:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(110, 77, 44, 0.38);
    color: #ffffff;
}

.btn-card-book svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
}

.price-card.highlight-card .btn-card-book {
    background: linear-gradient(135deg, #a87944 0%, #684523 100%);
    box-shadow: 0 6px 20px rgba(168, 121, 68, 0.35);
}

.booking-action {
    margin-top: 40px;
}

.btn-book {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #ffffff;
    padding: 16px 48px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 14.5px;
    font-weight: 700;
    letter-spacing: 2px;
    box-shadow: 0 10px 28px rgba(110, 77, 44, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all var(--transition-base);
}

.btn-book:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(110, 77, 44, 0.45);
    color: #ffffff;
}

/* ==========================================================================
   8. SHOWCASE & PRICING PAGES (BIRTHDAY, MATERNITY, PAS PHOTO, PERSONAL)
   ========================================================================== */

.birthday-container,
.maternity-container,
.pasphoto-container,
.personal-container {
    padding: calc(var(--header-height) + 40px) 6% 70px;
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 45px;
}

.birthday-gallery-wrapper,
.maternity-gallery-wrapper,
.pasphoto-gallery-wrapper,
.personal-gallery-wrapper {
    width: 100%;
    max-width: 950px;
    text-align: center;
    position: relative;
}

.birthday-title,
.maternity-title,
.pasphoto-title,
.personal-title {
    font-family: var(--font-heading);
    font-size: clamp(30px, 4vw, 42px);
    letter-spacing: 3px;
    color: var(--primary-dark);
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
}

.birthday-swiper,
.maternity-swiper,
.pasphoto-swiper,
.personal-swiper {
    width: 100%;
    padding-top: 30px;
    padding-bottom: 45px;
    overflow: hidden !important;
    cursor: grab;
}

.birthday-swiper:active,
.maternity-swiper:active,
.pasphoto-swiper:active,
.personal-swiper:active {
    cursor: grabbing;
}

.birthday-swiper .swiper-slide,
.maternity-swiper .swiper-slide,
.pasphoto-swiper .swiper-slide,
.personal-swiper .swiper-slide {
    width: 270px;
    height: 360px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
    cursor: pointer;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1),
                opacity 0.4s ease,
                box-shadow 0.4s ease,
                border-color 0.4s ease;
    will-change: transform, opacity;
    border: 3px solid rgba(255, 255, 255, 0.9);
    background: #eae2d6;
}

.birthday-swiper .swiper-slide.swiper-slide-active,
.maternity-swiper .swiper-slide.swiper-slide-active,
.pasphoto-swiper .swiper-slide.swiper-slide-active,
.personal-swiper .swiper-slide.swiper-slide-active {
    border-color: var(--accent-gold);
    box-shadow: 0 20px 44px rgba(110, 77, 44, 0.28);
}

.birthday-swiper .swiper-slide img,
.maternity-swiper .swiper-slide img,
.pasphoto-swiper .swiper-slide img,
.personal-swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.birthday-swiper .swiper-slide:hover img,
.maternity-swiper .swiper-slide:hover img,
.pasphoto-swiper .swiper-slide:hover img,
.personal-swiper .swiper-slide:hover img {
    transform: scale(1.05);
}

.gallery-label {
    font-family: var(--font-serif-accent);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-dark);
    margin-top: 15px;
    margin-bottom: 15px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 11px 26px;
    background: #faf6f1;
    border: 1px solid var(--accent-gold);
    border-radius: var(--radius-pill);
    text-decoration: none;
    transition: all var(--transition-base);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.gallery-label .drive-icon {
    width: 19px;
    height: 17px;
    flex-shrink: 0;
    transition: transform var(--transition-fast);
}

.gallery-label:hover .drive-icon {
    transform: scale(1.12);
}

.gallery-label:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #ffffff;
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(110, 77, 44, 0.25);
}

.social-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 5px;
    margin-bottom: 15px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #faf6f1;
    border: 1px solid var(--accent-gold);
    transition: all var(--transition-base);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.social-icon svg {
    width: 22px;
    height: 22px;
    transition: transform var(--transition-fast);
}

.social-icon:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 8px 20px rgba(99, 67, 35, 0.3);
}

.social-icon:hover svg {
    fill: #ffffff !important;
}

/* SECTION PRICING DALAM BIRTHDAY & MATERNITY */
.birthday-pricing,
.maternity-pricing {
    width: 100%;
    max-width: 860px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin: 10px auto 0;
}

/* SECTION PRICING DALAM PAS PHOTO & PERSONAL */
.pasphoto-pricing,
.personal-pricing {
    width: 100%;
    max-width: 1100px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin: 10px auto 0;
}

/* ==========================================================================
   9. MODAL GALLERY (SYMMETRIC & MASONRY)
   ========================================================================== */

.modal-gallery {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(27, 22, 18, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    overflow-y: auto;
    padding: 70px 6% 50px;
    animation: modalFadeIn 0.35s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.close-modal {
    position: fixed;
    top: 25px;
    right: 35px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    z-index: 10000;
    transition: all var(--transition-fast);
}

.close-modal:hover {
    background: #ffffff;
    color: var(--primary-dark);
    transform: rotate(90deg);
}

.modal-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.gallery-modal-title {
    font-family: var(--font-heading);
    font-size: clamp(26px, 3.5vw, 36px);
    letter-spacing: 3px;
    color: var(--accent-gold-light);
    margin-bottom: 35px;
    font-weight: 500;
    text-transform: uppercase;
}

.photo-masonry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.photo-masonry-grid img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: var(--radius-md);
    display: block;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.photo-masonry-grid img:hover {
    transform: scale(1.04);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.5);
}

/* ==========================================================================
   10. FLOATING QUICK WHATSAPP BUTTON
   ========================================================================== */

.floating-wa {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #25D366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    z-index: 900;
    transition: all var(--transition-base);
}

.floating-wa svg {
    width: 30px;
    height: 30px;
    fill: #ffffff;
}

.floating-wa:hover {
    transform: scale(1.12) translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6);
}

/* ==========================================================================
   11. MEDIA QUERIES (RESPONSIVE)
   ========================================================================== */

/* TABLET (Max Width: 992px) */
@media (max-width: 992px) {
    .package-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .birthday-container,
    .maternity-container,
    .pasphoto-container {
        padding-top: calc(var(--header-height) + 30px);
        text-align: center;
    }

    .birthday-pricing,
    .maternity-pricing,
    .pasphoto-pricing {
        max-width: 700px;
    }

    .pasphoto-pricing {
        grid-template-columns: repeat(2, 1fr);
    }

    .photo-masonry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MOBILE MEDIUM (Max Width: 768px) */
@media (max-width: 768px) {
    :root {
        --header-height: 64px;
    }

    .header {
        padding: 0 5%;
    }

    .menu-toggle {
        display: flex;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(110, 77, 44, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                    opacity 0.3s ease,
                    visibility 0.3s ease,
                    padding 0.35s ease;
        z-index: 999;
    }

    .nav.active {
        max-height: 420px;
        opacity: 1;
        visibility: visible;
        padding: 15px 0 20px;
    }

    .nav a {
        font-size: 14px;
        padding: 15px 24px;
        text-align: center;
        border: none;
        border-radius: 0;
        background: transparent;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: block;
        width: 100%;
        letter-spacing: 1px;
        box-shadow: none;
        transform: none;
    }

    .nav a:last-child {
        border-bottom: none;
    }

    .nav a:hover,
    .nav a.active {
        background: rgba(255, 255, 255, 0.18);
        color: #ffffff;
        border-color: transparent;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: none;
        transform: none;
    }

    .hero {
        min-height: 560px;
    }

    .hero-content {
        left: 6%;
        right: 6%;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: clamp(30px, 8vw, 44px);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .birthday-pricing,
    .maternity-pricing,
    .pasphoto-pricing,
    .personal-pricing {
        grid-template-columns: 1fr;
        max-width: 440px;
    }

    .about {
        padding: 80px 6%;
    }

    .birthday-swiper .swiper-slide,
    .maternity-swiper .swiper-slide,
    .pasphoto-swiper .swiper-slide,
    .personal-swiper .swiper-slide {
        width: 220px;
        height: 300px;
    }

    footer {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        padding: 30px 5%;
    }

    .footer-socials {
        justify-content: center;
    }
}

/* MOBILE SMALL (Max Width: 480px) */
@media (max-width: 480px) {
    .package-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        justify-content: center;
        width: 100%;
    }

    .photo-masonry-grid {
        grid-template-columns: 1fr;
    }

    .birthday-swiper .swiper-slide,
    .maternity-swiper .swiper-slide,
    .pasphoto-swiper .swiper-slide,
    .personal-swiper .swiper-slide {
        width: 190px;
        height: 260px;
    }
}