/*
Theme Name: Wedding Orginizer Theme
Theme URI: https://yoursite.com
Author: Harel Agung N
Author URI: https://yoursite.com
Description: Custom theme converted from HTML
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: my-custom-theme
*/

/* ================================================
   Paste the full contents of your styles.css below
   ================================================ */

/* ============================================
   AURELIA BRIDAL — Premium Wedding Organizer
   Design System & Styles
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
    /* Premium Color Palette */
    --ivory: #fdf8f0;
    --ivory-warm: #faf3e8;
    --cream: #f5ede0;
    --dusty-rose: #c9a9a6;
    --dusty-rose-light: #d9bdb9;
    --dusty-rose-dark: #a8807d;
    --champagne: #d4af37;
    --champagne-light: #e5c95c;
    --champagne-muted: #c5a028;
    --emerald: #2d5a47;
    --emerald-dark: #1b3d30;
    --emerald-light: #3a7a5f;
    --charcoal: #2c2c2c;
    --charcoal-soft: #3e3e3e;
    --text-primary: #2c2c2c;
    --text-secondary: #5a5a5a;
    --text-light: #8a8a8a;
    --white: #ffffff;
    --overlay-dark: rgba(20, 15, 10, 0.55);
    --overlay-light: rgba(255, 255, 255, 0.08);

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.12);
    --glass-bg-strong: rgba(255, 255, 255, 0.18);
    --glass-border: rgba(255, 255, 255, 0.25);
    --glass-blur: 20px;

    --glass-dark-bg: rgba(255, 255, 255, 0.06);
    --glass-dark-border: rgba(255, 255, 255, 0.12);

    /* Typography */
    --font-heading: "Playfair Display", "Georgia", serif;
    --font-body: "Poppins", "Segoe UI", sans-serif;

    /* Spacing */
    --section-pad-y: 100px;
    --section-pad-x: 20px;
    --container-max: 1200px;

    /* Transitions */
    --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration-fast: 0.25s;
    --duration-med: 0.4s;
    --duration-slow: 0.7s;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.15);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--ivory);
    line-height: 1.7;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--duration-fast) var(--ease-smooth);
}

ul,
ol {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-primary);
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--section-pad-x);
}

/* ---------- Section Titles ---------- */
.section-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--champagne);
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.8;
}

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

.section-header .section-subtitle {
    margin: 0 auto;
}

/* ---------- Scroll Reveal Animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity var(--duration-slow) var(--ease-smooth),
        transform var(--duration-slow) var(--ease-smooth);
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition:
        opacity var(--duration-slow) var(--ease-smooth),
        transform var(--duration-slow) var(--ease-smooth);
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition:
        opacity var(--duration-slow) var(--ease-smooth),
        transform var(--duration-slow) var(--ease-smooth);
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition:
        opacity var(--duration-slow) var(--ease-smooth),
        transform var(--duration-slow) var(--ease-smooth);
}

.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* Staggered children */
.stagger-children .reveal:nth-child(1) {
    transition-delay: 0s;
}
.stagger-children .reveal:nth-child(2) {
    transition-delay: 0.12s;
}
.stagger-children .reveal:nth-child(3) {
    transition-delay: 0.24s;
}
.stagger-children .reveal:nth-child(4) {
    transition-delay: 0.36s;
}
.stagger-children .reveal:nth-child(5) {
    transition-delay: 0.48s;
}
.stagger-children .reveal:nth-child(6) {
    transition-delay: 0.6s;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--duration-med) var(--ease-smooth);
}

.navbar.scrolled {
    background: rgba(253, 248, 240, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

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

.nav-brand {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    transition: color var(--duration-fast) var(--ease-smooth);
}

.navbar.scrolled .nav-brand {
    color: var(--text-primary);
}

.nav-brand span {
    color: var(--champagne);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    padding: 4px 0;
    transition: color var(--duration-fast) var(--ease-smooth);
}

.navbar.scrolled .nav-links a {
    color: var(--text-secondary);
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--champagne);
    transition: width var(--duration-med) var(--ease-smooth);
}

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

.nav-links a:hover {
    color: var(--champagne-light);
}

.navbar.scrolled .nav-links a:hover {
    color: var(--champagne);
}

.nav-cta {
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    padding: 10px 24px !important;
    background: var(--champagne);
    color: var(--white) !important;
    border-radius: 50px;
    transition:
        background var(--duration-fast) var(--ease-smooth),
        transform var(--duration-fast) var(--ease-smooth) !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--champagne-light);
    transform: translateY(-2px);
    color: var(--white) !important;
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--duration-med) var(--ease-smooth);
}

.navbar.scrolled .nav-toggle span {
    background: var(--text-primary);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   SECTION MIN-HEIGHT — All major sections
   ─────────────────────────────────────────────
   FIX: "100vh" di mobile browser (Chrome Android,
   Safari iOS) menghitung address bar yang muncul/
   hilang sehingga konten terdorong keluar layar.

   Solusi berlapis:
   1. min-height: 100vh      → fallback browser lama
   2. min-height: 100dvh     → dynamic viewport height
      (Chrome 108+, Firefox 101+, Safari 15.4+)
      Address bar tidak ikut dihitung → aman di mobile.
   ============================================ */
.hero,
.about,
.services,
.portfolio,
.testimonials,
.process,
.cta-section {
    min-height: 100vh;    /* fallback */
    min-height: 100dvh;   /* mobile fix — address bar tidak ikut */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ============================================
   HERO SECTION — Split Layout
   ============================================ */
.hero {
    position: relative;
    overflow: hidden;
    padding: 100px 0 60px;
    background: var(--charcoal);
}

.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 60%), radial-gradient(ellipse at 80% 20%, rgba(201, 169, 166, 0.06) 0%, transparent 50%),
        linear-gradient(160deg, #1a1a1a 0%, #2c2c2c 40%, #1f1f1f 100%);
    z-index: 0;
}

/* Floating particles */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--champagne);
    opacity: 0;
    animation: particleFloat 8s ease-in-out infinite;
}

.p1 {
    width: 4px;
    height: 4px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}
.p2 {
    width: 3px;
    height: 3px;
    top: 60%;
    left: 25%;
    animation-delay: 1.5s;
}
.p3 {
    width: 5px;
    height: 5px;
    top: 30%;
    right: 15%;
    animation-delay: 3s;
}
.p4 {
    width: 3px;
    height: 3px;
    top: 70%;
    right: 30%;
    animation-delay: 4.5s;
}
.p5 {
    width: 4px;
    height: 4px;
    top: 45%;
    left: 50%;
    animation-delay: 6s;
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }
    15% {
        opacity: 0.6;
        transform: translateY(-10px) scale(1);
    }
    85% {
        opacity: 0.3;
        transform: translateY(-60px) scale(0.6);
    }
    100% {
        opacity: 0;
        transform: translateY(-80px) scale(0);
    }
}

/* Hero Split Container */
.hero-split {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    width: 100%;
}

/* LEFT — Text Column */
.hero-left {
    text-align: center;
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--champagne-light);
    padding: 8px 24px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    margin-bottom: 24px;
    background: rgba(212, 175, 55, 0.06);
}

.hero h1 {
    font-size: 2.6rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.18;
    letter-spacing: -0.5px;
}

.hero h1 em {
    font-style: italic;
    color: var(--champagne-light);
}

.hero-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.85;
    margin-bottom: 32px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* Buttons */
.btn {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 14px 36px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all var(--duration-med) var(--ease-smooth);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--champagne);
    color: var(--white);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    background: var(--champagne-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
}

.btn-outline-dark {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.btn-outline-dark:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--champagne);
    color: var(--champagne-light);
    transform: translateY(-3px);
}

/* Hero Mini Stats */
.hero-mini-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 20px 32px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

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

.mini-stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--champagne);
    line-height: 1;
}

.mini-stat-label {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    display: block;
}

.mini-stat-divider {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
}

/* RIGHT — Visual Collage */
.hero-right {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.hero-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
}

.hero-img-main {
    position: relative;
    width: 85%;
    height: 75%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    z-index: 2;
    margin-left: auto;
}

.hero-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-img-accent {
    position: absolute;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    z-index: 3;
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.hero-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-img-accent-1 {
    width: 42%;
    height: 35%;
    bottom: 5%;
    left: 0;
    animation: accentFloat1 6s ease-in-out infinite;
}

.hero-img-accent-2 {
    width: 35%;
    height: 28%;
    top: 8%;
    left: 5%;
    animation: accentFloat2 7s ease-in-out infinite;
    animation-delay: 1s;
}

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

@keyframes accentFloat2 {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-6px) rotate(1deg);
    }
}

/* Gold frame accent */
.hero-frame-accent {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 55%;
    height: 40%;
    border: 1.5px solid rgba(212, 175, 55, 0.25);
    border-radius: var(--radius-lg);
    z-index: 1;
}

/* Floating ornament */
.hero-ornament {
    position: absolute;
    bottom: -20px;
    right: 10%;
    width: 100px;
    height: 100px;
    z-index: 1;
    animation: ornamentSpin 20s linear infinite;
}

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

.hero-scroll {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: float 2.5s ease-in-out infinite;
}

.hero-scroll .scroll-line {
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), transparent);
}

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

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: var(--section-pad-y) 0;
    background: var(--white);
}

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

.about-image-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-wrap img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-smooth);
}

.about-image-wrap:hover img {
    transform: scale(1.03);
}

.about-image-accent {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 100px;
    height: 100px;
    border: 3px solid var(--champagne);
    border-radius: var(--radius-md);
    z-index: -1;
}

.about-text .section-label {
    text-align: left;
}

.about-text .section-title {
    text-align: left;
    font-size: 2rem;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.9;
    font-size: 0.95rem;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--cream);
}

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

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--champagne);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   PACKAGES (SERVICES) SECTION
   ============================================ */
.services {
    padding: var(--section-pad-y) 0;
    background: var(--ivory-warm);
}

.packages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

.package-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--duration-med) var(--ease-smooth);
    display: flex;
    flex-direction: column;
}

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

/* Package Image — Portfolio-style hover */
.package-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-smooth);
}

.package-card:hover .package-image img {
    transform: scale(1.12);
}

.package-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20, 15, 10, 0.5) 0%, rgba(20, 15, 10, 0.05) 50%, transparent 100%);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 16px;
    opacity: 0;
    transition: opacity var(--duration-med) var(--ease-smooth);
}

.package-card:hover .package-image-overlay {
    opacity: 1;
}

.package-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
    background: var(--champagne);
    padding: 6px 16px;
    border-radius: 50px;
    box-shadow: 0 2px 12px rgba(212, 175, 55, 0.35);
}

/* Package Body */
.package-body {
    padding: 28px 28px 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.package-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.package-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Specification List */
.package-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    flex: 1;
}

.package-specs li {
    font-size: 0.82rem;
    color: var(--text-secondary);
    padding: 6px 0;
    border-bottom: 1px solid var(--cream);
    line-height: 1.6;
}

.package-specs li:last-child {
    border-bottom: none;
}

/* Package Footer — Price + CTA */
.package-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid var(--cream);
    flex-wrap: wrap;
}

.package-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.7rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-value {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--champagne);
    line-height: 1.2;
}

.btn-package {
    font-size: 0.75rem !important;
    padding: 12px 24px !important;
    letter-spacing: 0.8px;
    white-space: nowrap;
}

/* ============================================
   PORTFOLIO SECTION
   ============================================ */
.portfolio {
    padding: var(--section-pad-y) 0;
    background: var(--white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.portfolio-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-smooth);
}

.portfolio-item:hover img {
    transform: scale(1.12);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20, 15, 10, 0.8) 0%, rgba(20, 15, 10, 0.1) 60%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity var(--duration-med) var(--ease-smooth);
}

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

.portfolio-info h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 4px;
}

.portfolio-info span {
    font-size: 0.78rem;
    color: var(--champagne-light);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    padding: var(--section-pad-y) 0;
    background: var(--emerald-dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonials .section-title {
    color: var(--white);
}

.testimonials .section-subtitle {
    color: rgba(255, 255, 255, 0.65);
}

.testimonial-slider {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform var(--duration-slow) var(--ease-smooth);
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 20px;
}

.testimonial-card {
    background: var(--glass-dark-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-dark-border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
}

.testimonial-card .quote-icon {
    font-size: 2.4rem;
    color: var(--champagne);
    margin-bottom: 20px;
    opacity: 0.6;
    font-family: var(--font-heading);
    line-height: 1;
}

.testimonial-card p {
    font-size: 0.95rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.testimonial-author img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--champagne);
}

.testimonial-author-info h5 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--white);
    font-weight: 600;
}

.testimonial-author-info span {
    font-size: 0.75rem;
    color: var(--champagne-light);
}

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

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease-smooth);
}

.slider-dot.active {
    background: var(--champagne);
    width: 28px;
    border-radius: 5px;
}

.slider-arrows {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}

.slider-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: var(--white);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--duration-fast) var(--ease-smooth);
}

.slider-arrow:hover {
    background: var(--champagne);
    border-color: var(--champagne);
    transform: scale(1.05);
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process {
    padding: var(--section-pad-y) 0;
    background: var(--ivory-warm);
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 30px 20px;
}

.process-step-number {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--champagne), var(--dusty-rose));
    border-radius: 50%;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
}

.process-icon {
    font-size: 1.6rem;
    margin-bottom: 16px;
    display: block;
}

.process-step h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.process-step p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 260px;
    margin: 0 auto;
}

/* Connector line (desktop) */
.process-connector {
    display: none;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: var(--section-pad-y) 0;
    background: linear-gradient(135deg, var(--emerald-dark) 0%, var(--emerald) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.06);
}

.cta-section::after {
    content: "";
    position: absolute;
    bottom: -120px;
    left: -80px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
}

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

.cta-section h2 {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-section h2 em {
    color: var(--champagne-light);
    font-style: italic;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto 36px;
    line-height: 1.8;
}

.btn-cta-large {
    font-size: 0.9rem;
    padding: 18px 48px;
    background: var(--champagne);
    color: var(--white);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all var(--duration-med) var(--ease-smooth);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.btn-cta-large:hover {
    background: var(--champagne-light);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 36px rgba(212, 175, 55, 0.4);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 60px 0 30px;
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .nav-brand {
    font-size: 1.5rem;
    color: var(--white);
    display: inline-block;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.85rem;
    line-height: 1.8;
    max-width: 300px;
    color: rgba(255, 255, 255, 0.55);
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    transition: color var(--duration-fast) var(--ease-smooth);
}

.footer-col ul li a:hover {
    color: var(--champagne-light);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
}

.footer-contact-item .icon {
    color: var(--champagne);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.55);
    font-size: 1rem;
    transition: all var(--duration-fast) var(--ease-smooth);
}

.footer-social a:hover {
    background: var(--champagne);
    border-color: var(--champagne);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ============================================
   RESPONSIVE — Tablet (≥ 600px)
   ============================================ */
@media (min-width: 600px) {
    :root {
        --section-pad-x: 32px;
    }

    .hero h1 {
        font-size: 3.2rem;
    }

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

    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

/* ============================================
   RESPONSIVE — Desktop (≥ 992px)
   ============================================ */
@media (min-width: 992px) {
    :root {
        --section-pad-x: 40px;
        --section-pad-y: 120px;
    }

    .nav-toggle {
        display: none !important;
    }

    /* Hero — Desktop 2-column */
    .hero-split {
        flex-direction: row;
        align-items: center;
        gap: 60px;
    }

    .hero-left {
        flex: 1;
        text-align: left;
        max-width: 540px;
    }

    .hero-subtitle {
        margin-left: 0;
        margin-right: 0;
    }

    .hero-buttons {
        justify-content: flex-start;
    }

    .hero-mini-stats {
        justify-content: flex-start;
    }

    .hero h1 {
        font-size: 3.4rem;
    }

    .hero-right {
        flex: 1;
        max-width: 520px;
    }

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

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

    .about-image-wrap img {
        height: 500px;
    }

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

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

    .portfolio-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 2;
        aspect-ratio: auto;
    }

    .process-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
    }

    .process-connector {
        display: block;
        position: absolute;
        top: 48px;
        left: calc(50% + 35px);
        width: calc(100% - 70px);
        height: 1px;
        background: linear-gradient(90deg, var(--champagne), var(--dusty-rose-light));
        opacity: 0.4;
    }

    .process-step:last-child .process-connector {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 48px;
    }

    .cta-section h2 {
        font-size: 2.8rem;
    }
}

/* ============================================
   RESPONSIVE — Large Desktop (≥ 1200px)
   ============================================ */
@media (min-width: 1200px) {
    .hero h1 {
        font-size: 4rem;
    }

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

/* ============================================
   MOBILE NAV OVERLAY
   ============================================ */
@media (max-width: 991px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;   /* fallback */
        height: 100dvh;  /* mobile fix */
        background: rgba(44, 44, 44, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 40px;
        gap: 24px;
        transition: right var(--duration-med) var(--ease-smooth);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.8) !important;
    }

    .nav-links a:hover {
        color: var(--champagne-light) !important;
    }

    .nav-cta {
        margin-top: 16px;
        font-size: 0.85rem !important;
    }
}

/* Mobile overlay backdrop */
.nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 999;
    opacity: 0;
    transition: opacity var(--duration-med) var(--ease-smooth);
}

.nav-backdrop.show {
    display: block;
    opacity: 1;
}

/* ============================================
   UTILITY
   ============================================ */
.text-center {
    text-align: center;
}
.text-left {
    text-align: left;
}
.d-block {
    display: block;
}

/* Loading animation for page */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s var(--ease-smooth);
}

.page-loader.hide {
    opacity: 0;
    pointer-events: none;
}

.loader-ring {
    width: 48px;
    height: 48px;
    border: 3px solid var(--cream);
    border-top-color: var(--champagne);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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