:root {
    --primary-color: #1a1a1a;
    /* Dark charcoal for main elements */
    --accent-gold: #c5a059;
    /* More muted elegant gold */
    --bg-color: #ffffff;
    --section-bg: #fafafa;
    --card-bg: #ffffff;
    --text-color: #1a1a1a;
    --text-muted: #888888;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.04);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Hide scrollbar */
*::-webkit-scrollbar {
    display: none;
}

* {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
}

body.locked {
    overflow: hidden;
    height: 100vh;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Lightbox */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.lightbox-overlay.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-overlay.active .lightbox-content {
    transform: scale(1);
}

.lightbox-image {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 90vh;
    border-radius: 4px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
}

.lightbox-close {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 2rem;
    color: #000;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2001;
    font-weight: 200;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transform: translateY(-100%);
    background: transparent;
    padding: 30px 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    gap: 40px;
    border-bottom: 1px solid transparent;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        background 0.5s ease,
        padding 0.5s ease,
        border-color 0.5s ease,
        opacity 0.8s;
    opacity: 0;
}

.navbar.show {
    transform: translateY(0);
    opacity: 1;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    padding: 20px 0;
    border-bottom-color: rgba(0, 0, 0, 0.05);
}

.navbar a {
    color: #fff;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.4s;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled a {
    color: var(--text-color);
    text-shadow: none;
}

.navbar a:hover {
    color: var(--accent-gold);
    letter-spacing: 4px;
}


/* Floating WhatsApp Button - Line Art Theme */
.floating-wa-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.floating-wa-btn svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: #333;
    stroke-width: 1.2;
    transition: all 0.4s ease;
}

.floating-wa-btn:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.floating-wa-btn:hover svg {
    stroke: var(--accent-gold);
}

/* Pulse effect for line art */
.floating-wa-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid var(--accent-gold);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.6s ease;
    z-index: -1;
}

.floating-wa-btn:hover::after {
    transform: scale(1.3);
    opacity: 0;
    animation: wa-pulse 1.5s infinite;
}

@keyframes wa-pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}


/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.video-background-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

@media (min-aspect-ratio: 16/9) {
    .video-background-wrapper iframe {
        width: 100vw;
        height: 56.25vw;
        /* 9/16 * 100 */
    }
}

@media (max-aspect-ratio: 16/9) {
    .video-background-wrapper iframe {
        width: 177.78vh;
        /* 16/9 * 100 */
        height: 100vh;
    }
}

.video-background-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: -2;
}

.video-background-wrapper iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.carousel-item.active {
    opacity: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 6rem;
    font-weight: 400;
    letter-spacing: 20px;
    margin-bottom: 30px;
    color: #fff;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
}

.hero-content p {
    font-size: 1rem;
    letter-spacing: 6px;
    margin-bottom: 50px;
    color: #f4f4f4;
    text-transform: uppercase;
    font-weight: 300;
}

.btn-start {
    display: inline-block;
    padding: 18px 50px;
    border: 1px solid #fff;
    color: #fff;
    background: transparent;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 4px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 0;
    /* Sharp corners like Axioo */
    text-transform: uppercase;
}

.btn-start:hover {
    background-color: #fff;
    color: #000;
    transform: translateY(-5px);
    letter-spacing: 5px;
}

/* Sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    color: var(--text-color);
    font-weight: 400;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-top: -45px;
    margin-bottom: 80px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 6px;
    text-transform: uppercase;
}

/* Portfolio */
.portfolio-section {
    padding: 100px 0;
    background: var(--bg-color);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.portfolio-card.circular-card {
    background: transparent;
    text-align: center;
}

.portfolio-image-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.portfolio-photo-btn {
    position: relative;
    display: block;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    padding: 12px;
    border: 1px solid var(--text-color);
    cursor: pointer;
    z-index: 5;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-photo-btn::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 1px solid var(--text-color);
    border-radius: 50%;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.4;
}

.portfolio-img-circle {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-card:hover .portfolio-photo-btn {
    transform: scale(1.05);
    border-color: var(--accent-gold);
}

.portfolio-card:hover .portfolio-photo-btn::before {
    transform: scale(1.06);
    border-color: var(--accent-gold);
    opacity: 0.8;
}

.portfolio-card:hover .portfolio-img-circle {
    transform: scale(1.05);
}

.card-body {
    padding: 10px;
}

.card-body h3 {
    font-family: var(--font-heading);
    color: var(--text-color);
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 8px;
}

.card-body p {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.category-tag {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: none;
    /* Changed from uppercase to allow mixed case Wedding / Prewedding */
    margin-bottom: 15px;
    letter-spacing: 4px;
    color: var(--accent-gold);
}

/* Pricing */
.pricing-section {
    padding: 100px 0;
    background: var(--section-bg);
}

.pricing-card {
    background: #fff;
    padding: 60px 40px;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-soft);
}

.pricing-card.featured {
    border: 1px solid var(--accent-gold);
    background: #fff;
}

/* About Section */
.about-section {
    padding: 150px 0;
    background: #fff;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 100px;
    flex-wrap: wrap;
}

.about-image-wrapper {
    flex: 1;
    min-width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-photo-btn {
    position: relative;
    display: block;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    padding: 15px;
    border: 1px solid var(--text-color);
    text-decoration: none;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-photo-btn::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border: 1px solid var(--text-color);
    border-radius: 50%;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.6;
}

.about-img-circle {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-photo-btn:hover {
    transform: scale(1.02);
    border-color: var(--accent-gold);
}

.about-photo-btn:hover::before {
    transform: scale(1.05);
    border-color: var(--accent-gold);
    opacity: 1;
}

.about-photo-btn:hover .about-img-circle {
    transform: scale(1.05);
}

.about-content {
    flex: 1;
    min-width: 400px;
}

.about-content h2 {
    text-align: left;
    margin-bottom: 35px;
    font-size: 3rem;
}

.about-text p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 2;
}

/* WhatsApp Line Art Button */
.btn-wa-line {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    padding: 12px 0;
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.btn-wa-line i,
.btn-wa-line svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    transition: transform 0.4s ease;
}

.btn-wa-line:hover {
    color: var(--accent-gold);
    border-bottom-color: var(--accent-gold);
    padding-left: 10px;
}

.btn-wa-line:hover i,
.btn-wa-line:hover svg {
    transform: rotate(15deg) scale(1.1);
}

/* Footer */
footer {
    padding: 100px 0;
    background: #000;
    color: #fff;
    text-align: center;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.7rem;
}

/* Responsive */

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    animation: fadeIn 1.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Admin Sidebar Expansion */
.admin-sidebar {
    overflow-y: auto;
    scrollbar-width: none;
    /* Firefox */
}

.admin-sidebar::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.sidebar-nested-group {
    margin-bottom: 5px;
}

/* Sub Menu (Categories) - Bold */
.sidebar-cat-link {
    display: block;
    font-weight: 700 !important;
    /* Bold */
    color: #444 !important;
    flex: 1;
}

/* Sidebar Toggle Button - Left Side with Plus Icon */
.sidebar-toggle-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: #999;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.sidebar-toggle-btn:hover {
    color: #444;
}

.sidebar-toggle-btn svg {
    transition: transform 0.3s ease;
}

/* Minus icon when expanded (rotate vertical line to hide it) */
.sidebar-toggle-btn.expanded svg line:first-child {
    transform: rotate(90deg);
    opacity: 0;
}

.sidebar-sub-nav {
    display: flex;
    flex-direction: column;
    padding-left: 28px;
    /* Align with text after + icon */
    border-left: 1px solid #f0f0f0;
    margin-left: 10px;
    gap: 10px !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
    opacity: 0;
}

.sidebar-sub-nav.expanded {
    max-height: 1000px;
    opacity: 1;
    margin-top: 10px;
}

/* Sub-Sub Menu (Stories) - Regular */
.sidebar-story-link {
    font-size: 0.6rem !important;
    letter-spacing: 1px !important;
    color: #777 !important;
    text-transform: none !important;
    font-weight: 400 !important;
    /* Regular */
    transition: all 0.3s ease;
}

.sidebar-story-link:hover,
.sidebar-story-link.active {
    color: #111 !important;
    padding-left: 5px;
}

/* Admin Panel - Line Art Theme Extensions */
.admin-page-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.admin-card {
    position: relative;
    background: #fff;
    padding: 30px;
    border: 1px solid #1a1a1a;
    border-radius: 15px;
    /* Soft edges */
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.admin-card::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 11px;
    /* Slightly smaller for nested effect */
    pointer-events: none;
}

.admin-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #111;
}

.admin-form-group {
    margin-bottom: 25px;
}

.admin-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: #444;
}

.admin-input,
.admin-textarea,
.admin-select {
    width: 100%;
    padding: 12px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    color: #1a1a1a;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: border-color 0.4s ease;
    border-radius: 0;
}

.admin-input:focus,
.admin-textarea:focus,
.admin-select:focus {
    outline: none;
    border-bottom-color: #1a1a1a;
}

.admin-btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid #1a1a1a;
    background: transparent;
    color: #1a1a1a;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.admin-btn-outline:hover {
    background: #1a1a1a;
    color: #fff;
    transform: translateY(-2px);
}

.admin-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}

.admin-table th {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #444;
    padding: 10px 20px;
    text-align: left;
}

.admin-table td {
    background: #fff;
    padding: 20px;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.admin-table td:first-child {
    border-left: 1px solid #f0f0f0;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.admin-table td:last-child {
    border-right: 1px solid #f0f0f0;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

/* Admin Sidebar Layout */
.admin-wrapper {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 280px;
    background: #fff;
    border-right: 1px solid #eee;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 1000;
}

.admin-sidebar .sidebar-logo {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 1.2rem;
    margin-bottom: 60px;
    text-decoration: none;
    color: #111;
}

.admin-sidebar .sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.admin-sidebar .sidebar-nav a {
    text-decoration: none;
    color: #666;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Main Menu - Larger and darker than sub menu */
.admin-sidebar .sidebar-nav>a {
    font-size: 0.8rem;
    /* Slightly larger than sub menu (0.75rem) */
    color: #444;
    /* Darker than sub menu (#666) */
    font-weight: 800;
    /* Heavier than sub menu (700) */
}

.admin-sidebar .sidebar-nav a:hover,
.admin-sidebar .sidebar-nav a.active {
    color: #111;
    padding-left: 10px;
}

.admin-sidebar .sidebar-footer {
    margin-top: auto;
}

.admin-main-content {
    flex: 1;
    margin-left: 280px;
    padding: 60px;
    background: #fff;
}

@media (max-width: 992px) {
    .admin-sidebar {
        width: 80px;
        padding: 40px 10px;
        align-items: center;
    }

    .admin-sidebar .sidebar-logo {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    .admin-sidebar .sidebar-nav a span {
        display: none;
    }

    .admin-main-content {
        margin-left: 80px;
    }
}


/* Admin Modals */
.admin-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.admin-modal-overlay.show {
    display: flex;
    opacity: 1;
}

.admin-modal-container {
    background: #fff;
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 60px;
    position: relative;
    border: 1px solid #111;
    box-shadow: 20px 20px 0px rgba(0, 0, 0, 0.02);
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.admin-modal-overlay.show .admin-modal-container {
    transform: translateY(0);
}

.admin-modal-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
}

.admin-modal-close:hover {
    color: #111;
}

.admin-modal-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

/* Relocated Responsive Queries for Priority */
@media (max-width: 1200px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .about-container {
        gap: 50px;
    }

    .about-image-wrapper,
    .about-content {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .navbar {
        gap: 20px;
        padding: 15px 0;
    }

    .navbar a {
        font-size: 0.65rem;
        letter-spacing: 2px;
    }

    .floating-wa-btn {
        position: fixed !important;
        bottom: 20px !important;
        right: 20px !important;
        width: 50px !important;
        height: 50px !important;
        z-index: 99999 !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* Hero Responsive */
    .hero-content h1 {
        font-size: 1.1rem !important;
        letter-spacing: 3px !important;
        margin-bottom: 8px !important;
        line-height: 1.1 !important;
        width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
    }

    .hero-content p {
        font-size: 0.55rem !important;
        letter-spacing: 1px !important;
        margin-bottom: 30px !important;
        padding: 0 20px;
        line-height: 1.4;
    }

    .btn-start {
        padding: 10px 25px;
        font-size: 0.65rem;
        letter-spacing: 2px;
    }

    .container {
        padding: 0 25px;
    }

    h2 {
        font-size: 2rem !important;
        margin-bottom: 40px;
    }

    .section-subtitle {
        margin-top: -30px;
        margin-bottom: 50px;
        font-size: 0.6rem;
        letter-spacing: 4px;
    }

    /* Portfolio Mobile Adjustment */
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .portfolio-photo-btn {
        width: 180px;
        height: 180px;
    }

    /* About Mobile Adjustment */
    .about-photo-btn {
        width: 250px;
        height: 250px;
    }

    .about-content h2 {
        text-align: center;
        font-size: 2.2rem;
    }

    .btn-wa-line {
        justify-content: center;
        width: 100%;
    }

    /* Global Page Mobile Adjustments */
    .portfolio-section {
        padding-top: 80px !important;
        padding-bottom: 80px !important;
    }

    .portfolio-section .admin-page-title {
        font-size: 2rem !important;
        margin-bottom: 10px !important;
    }

    .portfolio-section .section-subtitle {
        font-size: 0.55rem !important;
        letter-spacing: 3px !important;
        margin-bottom: 40px !important;
    }

    /* Category Feed (Story Feed) */
    .portfolio-section div[style*="gap: 120px"] {
        gap: 60px !important;
        margin-top: 40px !important;
    }

    .story-item h2 {
        font-size: 1.8rem !important;
        margin: 15px 0 !important;
    }

    .story-item p {
        font-size: 0.85rem !important;
        line-height: 1.6 !important;
    }

    /* Story Detail Gallery */
    div[style*="columns: 2"] {
        columns: 1 !important;
        column-gap: 0 !important;
    }

    .portfolio-section h1.admin-page-title {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
    }

    .portfolio-section div[style*="line-height: 2"] {
        font-size: 0.95rem !important;
        line-height: 1.7 !important;
    }

    /* Footer adjustments for categories */
    div[style*="margin-top: 150px"],
    div[style*="margin-top: 100px"] {
        margin-top: 60px !important;
        padding-top: 40px !important;
    }

    .admin-btn-outline {
        padding: 10px 20px !important;
        font-size: 0.7rem !important;
    }
}

/* ========================================
   ANDROID WEBVIEW MOBILE SUPPORT
   ======================================== */

/* Hamburger Menu Button */
.hamburger-btn {
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 2001;
    background: #1a1a1a;
    color: #fff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: all 0.3s ease;
}

.hamburger-btn:hover {
    background: #333;
}

.hamburger-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Sidebar Overlay Backdrop */
.sidebar-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-backdrop.show {
    display: block;
    opacity: 1;
}

/* Dashboard Grid Class */
.admin-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

/* Pricing Grid Class */
.admin-pricing-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

/* Mobile Responsive - Android WebView Optimized */
@media (max-width: 768px) {

    /* Show Hamburger Menu */
    .hamburger-btn {
        display: flex;
    }

    /* Sidebar Overlay Mode */
    .admin-sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        width: 280px;
        z-index: 2000;
        box-shadow: 4px 0 10px rgba(0, 0, 0, 0.1);
    }

    .admin-sidebar.open {
        transform: translateX(0);
    }

    /* Main Content Full Width */
    .admin-main-content {
        margin-left: 0;
        padding: 80px 20px 40px;
        width: 100%;
    }

    /* Modal Responsive */
    .admin-modal-container {
        padding: 30px 20px;
        width: 95%;
        max-height: 85vh;
    }

    .admin-modal-title {
        font-size: 1.2rem;
        margin-bottom: 25px;
    }

    /* Cards Responsive */
    .admin-card {
        padding: 20px;
    }

    .admin-card h3 {
        font-size: 1.2rem;
    }

    /* Grid Layouts - Single Column */
    .admin-dashboard-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .admin-pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 20px;
    }

    /* Touch-Friendly Buttons */
    .admin-btn-outline {
        min-height: 44px;
        padding: 12px 24px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    button,
    input[type="submit"],
    input[type="button"] {
        min-height: 44px;
    }

    /* Form Elements */
    .admin-input,
    .admin-textarea,
    .admin-select {
        font-size: 16px;
        /* Prevents zoom on iOS */
        padding: 14px 0;
    }

    .admin-label {
        font-size: 0.65rem;
    }

    /* Page Title */
    .admin-page-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    /* Container Padding */
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* Sidebar Navigation - Better Touch Targets */
    .admin-sidebar .sidebar-nav a {
        padding: 10px 0;
        font-size: 0.7rem;
    }

    /* Login Page Responsive */
    .login-wrapper {
        padding: 15px;
    }

    .login-card {
        padding: 40px 25px;
    }

    .login-card h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .form-group input {
        font-size: 16px;
        /* Prevents zoom */
    }

    .btn-login {
        padding: 16px;
        font-size: 0.7rem;
    }
}

/* Extra Small Devices (< 360px) */
@media (max-width: 360px) {
    .admin-sidebar {
        width: 100%;
    }

    .admin-modal-container {
        padding: 20px 15px;
        width: 98%;
    }

    .admin-dashboard-grid,
    .admin-pricing-grid {
        gap: 15px;
    }

    .admin-card {
        padding: 15px;
    }

    .admin-page-title {
        font-size: 1.5rem;
    }
}

/* Portfolio Management Icons */
.admin-table td a svg {
    transition: all 0.3s ease;
}

.admin-table td a:hover svg {
    transform: scale(1.15);
}

.admin-table td a:hover {
    color: #1a1a1a !important;
}

.admin-table td a[title*="Remove"]:hover {
    color: #ff4d4d !important;
}

.admin-table td a[title*="View"]:hover,
.admin-table td a[title*="Manage"]:hover {
    color: var(--accent-gold) !important;
}

/* ========================================
   DATATABLES CUSTOM STYLING
   ======================================== */

/* DataTables Wrapper */
.dataTables_wrapper {
    font-family: var(--font-body);
    padding: 20px 0;
}

/* Search Box */
.dataTables_filter {
    float: right;
    margin-bottom: 20px;
}

.dataTables_filter label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #444;
}

.dataTables_filter input {
    margin-left: 10px;
    padding: 8px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    outline: none;
}

.dataTables_filter input:focus {
    border-color: #1a1a1a;
    box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.05);
}

/* Length Menu */
.dataTables_length {
    float: left;
    margin-bottom: 20px;
}

.dataTables_length label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #444;
}

.dataTables_length select {
    margin: 0 10px;
    padding: 6px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    font-size: 0.85rem;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dataTables_length select:focus {
    border-color: #1a1a1a;
}

/* Info Text */
.dataTables_info {
    float: left;
    padding-top: 15px;
    font-size: 0.75rem;
    color: #666;
    letter-spacing: 1px;
}

/* Pagination */
.dataTables_paginate {
    float: right;
    padding-top: 10px;
}

.dataTables_paginate .paginate_button {
    display: inline-block;
    padding: 8px 15px;
    margin: 0 3px;
    border: 1px solid #e0e0e0;
    background: #fff;
    color: #444;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.dataTables_paginate .paginate_button:hover {
    background: #f5f5f5;
    border-color: #1a1a1a;
    color: #1a1a1a;
}

.dataTables_paginate .paginate_button.current {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}

.dataTables_paginate .paginate_button.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.dataTables_paginate .paginate_button.disabled:hover {
    background: #fff;
    border-color: #e0e0e0;
    color: #444;
}

/* Sorting Icons */
table.dataTable thead th {
    position: relative;
}

table.dataTable thead .sorting:before,
table.dataTable thead .sorting_asc:before,
table.dataTable thead .sorting_desc:before {
    right: 10px;
    content: "↕";
    opacity: 0.3;
    font-size: 0.9rem;
}

table.dataTable thead .sorting_asc:before {
    content: "↑";
    opacity: 1;
}

table.dataTable thead .sorting_desc:before {
    content: "↓";
    opacity: 1;
}

/* Remove default DataTables styling */
table.dataTable thead .sorting:after,
table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting_desc:after {
    display: none;
}

/* Processing Indicator */
.dataTables_processing {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #1a1a1a;
    padding: 20px 40px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {

    .dataTables_wrapper .dataTables_length,
    .dataTables_wrapper .dataTables_filter {
        float: none;
        text-align: left;
        margin-bottom: 15px;
    }

    .dataTables_wrapper .dataTables_info,
    .dataTables_wrapper .dataTables_paginate {
        float: none;
        text-align: center;
        margin-top: 15px;
    }

    .dataTables_paginate .paginate_button {
        padding: 6px 10px;
        font-size: 0.65rem;
        margin: 0 2px;
    }
}