/* ===================================
   UNIVERSAL BUSINESS PLATFORM
   Premium Adaptive CSS
   =================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&family=Cormorant+Garamond:wght@400;500;600;700&display=swap');

/* Theme Presets */
@import url('themes.css');

/* CSS Variables — Structural (non-color) */
:root {
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    --radius: 12px;

    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-elegant: 'Cormorant Garamond', serif;

    /* Spacing */
    --section-padding: 100px;
    --container-width: 1400px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

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

::-webkit-scrollbar-track {
    background: var(--surface);
}

.tab-content {
    padding: 20px !important;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-normal);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(15, 17, 19, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--background);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
}

.logo-tagline {
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition-normal);
}

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

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

.nav-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary) 100%);
    color: var(--background) !important;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600 !important;
}

.nav-cta:hover {
    box-shadow: 0 0 30px rgba(197, 160, 89, 0.3);
}

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

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    width: 30px;
    height: 2px;
    background: var(--primary);
    transition: all var(--transition-normal);
}

.mobile-nav-backdrop {
    display: none;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,
            rgba(15, 17, 19, 0.7) 0%,
            rgba(15, 17, 19, 0.4) 50%,
            rgba(15, 17, 19, 0.9) 100%);
}

.hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(197, 160, 89, 0.1);
    border: 1px solid rgba(197, 160, 89, 0.3);
    padding: 10px 25px;
    border-radius: 50px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.hero-badge span {
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(48px, 10vw, 90px);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-family: var(--font-elegant);
    font-size: clamp(20px, 4vw, 28px);
    color: var(--text-muted);
    margin-bottom: 40px;
    font-weight: 400;
    font-style: italic;
}

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

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 14px;
}

.hero-feature svg {
    color: var(--primary);
    width: 20px;
    height: 20px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary) 100%);
    color: var(--background);
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(197, 160, 89, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    color: var(--primary);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--text);
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 10px;
    background: var(--primary);
    border-radius: 3px;
    animation: scroll 2s infinite;
}

@keyframes scroll {

    0%,
    100% {
        top: 10px;
        opacity: 1;
    }

    50% {
        top: 25px;
        opacity: 0.3;
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

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

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

/* ===================================
   PACKAGES SECTION
   =================================== */
.packages {
    padding: var(--section-padding) 0;
    background: var(--surface);
    position: relative;
}

.packages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

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

.section-label {
    display: inline-block;
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    font-size: clamp(36px, 6vw, 56px);
    margin-bottom: 20px;
}

.section-description {
    color: var(--text-muted);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.package-card {
    background: var(--surface);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: 1px solid transparent;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
    border-color: rgba(197, 160, 89, 0.3);
}

.package-card.selected {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(197, 160, 89, 0.3);
}

.package-card.popular {
    border-color: var(--primary);
}

.package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary) 100%);
    color: var(--background);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 10;
}

.package-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.package-content {
    padding: 26px;
}

.package-features {
    list-style: none;
    display: grid;
    gap: 10px;
    margin: 18px 0 24px;
}

.package-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-muted);
    font-size: 14px;
}

.package-features svg {
    width: 16px;
    height: 16px;
    min-width: 16px;
    margin-top: 3px;
    color: var(--primary);
}

.package-select-btn {
    width: 100%;
    padding: 13px 16px;
    border: 0;
    border-radius: 8px;
    background: var(--primary);
    color: var(--background);
    font-weight: 700;
    cursor: pointer;
}

.menu-category {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    margin-bottom: 16px;
    overflow: hidden;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 18px;
    cursor: pointer;
}

.category-info {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.category-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 10px;
    background: var(--surface-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 1;
}

.category-toggle svg {
    width: 18px;
    height: 18px;
    display: block;
}

.category-items {
    padding: 0 18px 18px;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    color: var(--text-muted);
}

.menu-item:hover,
.menu-item.selected {
    background: var(--surface-light);
    color: var(--text);
}

/* ===================================
   ADD-ONS SECTION (From Backup)
   =================================== */
.addon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.addon-card {
    background: var(--surface);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--border);
    transition: all var(--transition-normal);
}

.addon-card:hover {
    border-color: rgba(197, 160, 89, 0.3);
    transform: translateY(-5px);
}

.addon-card.selected {
    border-color: var(--primary);
    background: rgba(197, 160, 89, 0.05);
}

.addon-variants {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.variant-option {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-muted);
    cursor: pointer;
    padding: 5px 0;
}

.variant-option:hover {
    color: var(--primary);
}

.variant-option input[type="checkbox"] {
    accent-color: var(--primary);
    width: 16px;
    height: 16px;
}

.addon-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.addon-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.addon-title {
    font-size: 20px;
}

.addon-price {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
}

.addon-check {
    width: 18px;
    height: 18px;
    border: 1.5px solid var(--border);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.addon-sub-item.selected .addon-check {
    background: var(--primary);
    border-color: var(--primary);
}

.addon-sub-item.selected .addon-check::after {
    content: '✓';
    font-size: 12px;
    color: var(--background);
    font-weight: bold;
}

.addon-variants {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.variant-option {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-muted);
    cursor: pointer;
    padding: 5px 0;
}

.variant-option:hover {
    color: var(--primary);
}

.variant-option input[type="radio"] {
    accent-color: var(--primary);
    width: 16px;
    height: 16px;
}

.addon-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.addon-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.addon-title {
    font-size: 20px;
}

.addon-price {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
}

.addon-items {
    list-style: none;
}

.addon-items li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 14px;
}

.addon-items li:last-child {
    border-bottom: none;
}

/* ===================================
   INFO SECTION
   =================================== */
.info {
    padding: var(--section-padding) 0;
    background: var(--background);
}

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

.info-card {
    background: var(--surface);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all var(--transition-normal);
}

.info-card:hover {
    border-color: rgba(197, 160, 89, 0.3);
}

.info-icon {
    width: 70px;
    height: 70px;
    background: rgba(197, 160, 89, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.info-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.info-title {
    font-size: 20px;
    margin-bottom: 10px;
}

.info-text {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--surface);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(197, 160, 89, 0.2);
}

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

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--background);
}

.footer-logo-text {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.footer-description {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--background);
}

.footer-links h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--primary);
}

.footer-links ul {
    list-style: none;
}

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

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-badges {
    display: flex;
    gap: 15px;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 12px;
    color: var(--text-muted);
}

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

/* ===================================
   WHATSAPP FLOATING BUTTON
   =================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--text);
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transition: all var(--transition-normal);
    animation: pulse 2s infinite;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
}

/* ===================================
   ORDERING FLOW / PROJECT SUMMARY
   =================================== */
.ordering-flow {
    padding: var(--section-padding) 0;
    background: var(--background);
}

.ordering-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 40px;
    align-items: start;
}

.ordering-content {
    min-width: 0;
}

.ordering-sidebar {
    position: sticky;
    top: 100px;
}

.order-summary {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.summary-toggle {
    display: none;
}

.summary-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.summary-header svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
    flex-shrink: 0;
}

.summary-header h3 {
    font-size: 22px;
}

.summary-clear-btn {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #ef4444;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 11px;
    cursor: pointer;
    font-weight: 600;
}

.summary-section {
    margin-bottom: 24px;
}

.summary-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.summary-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
}

.summary-value small {
    display: block;
    margin-top: 4px;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 500;
}

.summary-input {
    width: 100%;
    background: var(--surface-light);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 12px 15px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    transition: all var(--transition-fast);
}

.summary-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(197, 160, 89, 0.2);
}

.option-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.option-btn {
    background: var(--surface-light);
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.3s ease;
}

.option-btn:hover,
.option-btn.active {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--background);
}

.project-summary-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.project-summary-list .summary-row {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 13px;
}

.project-summary-list .summary-row span {
    color: var(--text-muted);
}

.project-summary-list .summary-row strong {
    color: var(--text);
    text-align: right;
    font-weight: 600;
}

.summary-items {
    list-style: none;
}

.summary-items li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
}

.summary-items .category {
    color: var(--text-muted);
}

.summary-items .item {
    color: var(--text);
}

.summary-total {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid var(--primary);
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 10px;
}

.total-label {
    font-size: 16px;
    color: var(--text-muted);
}

.total-amount {
    font-size: 24px;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--primary);
    text-align: right;
    line-height: 1.15;
}

.delivery-hint,
.date-status {
    font-size: 12px;
    color: var(--text-muted);
}

.order-actions-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.order-btn {
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: var(--background);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.order-btn svg,
.summary-toggle svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.order-btn:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1200px) {
    .ordering-layout {
        display: block;
    }

    .ordering-sidebar {
        position: static;
    }

    .menu-container {
        grid-template-columns: 1fr;
    }

    .order-summary {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 20px 20px 0 0;
        z-index: 100;
        max-height: 82vh;
        overflow-y: auto;
        transform: translateY(calc(100% - 64px));
        transition: transform var(--transition-normal);
        display: flex;
        flex-direction: column;
        will-change: transform;
    }

    .order-summary.expanded {
        transform: translateY(0);
    }

    .summary-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 14px;
        cursor: pointer;
        margin: -30px -30px 16px;
        background: rgba(212, 175, 55, 0.1);
        border-radius: 20px 20px 0 0;
        height: 64px;
        position: relative;
        flex-shrink: 0;
    }

    .summary-toggle span {
        font-weight: 600;
        color: var(--gold);
    }

    .summary-addon-btn {
        border: 1px solid rgba(255, 255, 255, 0.12);
        background: rgba(255, 255, 255, 0.06);
        color: #fff;
        border-radius: 999px;
        padding: 6px 10px;
        font-size: 11px;
        font-weight: 700;
        cursor: pointer;
        white-space: nowrap;
    }

    .summary-addon-btn:disabled {
        opacity: 0.45;
        cursor: not-allowed;
    }

    .order-summary::before {
        content: '';
        position: absolute;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        width: 42px;
        height: 4px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.18);
        pointer-events: none;
    }
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

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

    .navbar .container {
        position: relative;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 10px);
        left: 20px;
        right: 20px;
        flex-direction: column;
        gap: 10px;
        padding: 14px;
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 14px;
        background: rgba(10, 12, 16, 0.98);
        backdrop-filter: blur(16px);
        box-shadow: 0 20px 50px rgba(0,0,0,0.35);
        z-index: 1200;
    }

    .navbar.menu-open .nav-links {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a,
    .nav-links .lang-toggle {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .nav-links a {
        padding: 12px 14px;
        border-radius: 10px;
        background: rgba(255,255,255,0.03);
    }

    .mobile-nav-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.35);
        z-index: 900;
    }

    .mobile-nav-backdrop.active {
        display: block;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .hero-features {
        flex-direction: column;
        gap: 15px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .logo {
        gap: 10px;
    }

    .logo-name {
        font-size: clamp(18px, 5.8vw, 24px);
        letter-spacing: 1px;
        line-height: 1;
        white-space: nowrap;
    }

    .logo-tagline {
        display: none;
    }

    .hero-title {
        font-size: clamp(22px, 7vw, 36px);
        line-height: 1.02;
        margin-bottom: 12px;
    }

    .hero-title .highlight {
        white-space: nowrap;
    }

    .hero-title br {
        display: none;
    }

    .hero-subtitle {
        display: none;
    }

    .hero-content {
        padding-top: 18px;
    }
}

@media (max-width: 480px) {
    .category-items {
        grid-template-columns: 1fr;
    }

    .pax-selector {
        width: 100%;
        justify-content: center;
    }

    .navbar {
        padding: 14px 0;
    }

    .navbar.scrolled {
        padding: 10px 0;
    }

    .logo-name {
        font-size: clamp(16px, 5.6vw, 20px);
    }
}

/* ===================================
   LOADING ANIMATION
   =================================== */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.loader-logo {
    width: 100px;
    height: 100px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--bg-primary);
    margin: 0 auto 20px;
    animation: logoSpin 2s ease-in-out infinite;
}

@keyframes logoSpin {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.loader-text {
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 18px;
    letter-spacing: 3px;
}

/* ===== REVIEWS SLIDER ===== */
.reviews-section { padding: 80px 0; background: var(--surface-light, #111); }
.reviews-slider-wrap { position: relative; overflow: hidden; margin-top: 40px; }
.reviews-track { display: flex; transition: transform 0.5s cubic-bezier(.4,0,.2,1); will-change: transform; }
.review-card { flex: 0 0 calc(100% / 3); min-width: calc(100% / 3); padding: 0 12px; box-sizing: border-box; }
.review-card-inner { background: var(--surface, #1a1a1a); border: 1px solid rgba(255,255,255,0.07); border-radius: 16px; padding: 28px 24px; height: 100%; display: flex; flex-direction: column; gap: 14px; transition: border-color 0.3s; box-sizing: border-box; }
.review-card:hover .review-card-inner { border-color: rgba(197,160,89,0.3); }
.review-stars { display: flex; gap: 2px; }
.review-text { color: var(--text-muted, #aaa); font-size: 14px; line-height: 1.7; flex: 1; margin: 0; }
.review-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; color: #fff; flex-shrink: 0; }
.review-name { font-weight: 600; font-size: 14px; }
.review-date { font-size: 12px; color: var(--text-muted, #888); margin-top: 2px; }
.reviews-dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
.rv-dot { width: 8px; height: 8px; border-radius: 50%; border: none; background: rgba(255,255,255,0.2); cursor: pointer; transition: all 0.3s; padding: 0; }
.rv-dot.active { background: var(--primary, #c5a059); width: 24px; border-radius: 4px; }
.flatpickr-day.disabled,
.flatpickr-day.disabled:hover,
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover,
.flatpickr-day.notAllowed,
.flatpickr-day.notAllowed:hover,
.flatpickr-day.prevMonthDay.disabled,
.flatpickr-day.nextMonthDay.disabled,
.flatpickr-day.pc-unavailable-date {
    background: #424653 !important;
    border-color: #424653 !important;
    color: #9ca3af !important;
    cursor: not-allowed !important;
    text-decoration: line-through;
    opacity: 0.75 !important;
}

.media-watermark {
    position: absolute;
    z-index: 4;
    padding: 8px 12px;
    border-radius: 6px;
    background: rgba(0,0,0,0.38);
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.02em;
    pointer-events: none;
    text-shadow: 0 1px 8px rgba(0,0,0,0.65);
}
.media-watermark img { max-width: 110px; max-height: 46px; display: block; object-fit: contain; }
.wm-bottom-right { right: 14px; bottom: 14px; }
.wm-bottom-left { left: 14px; bottom: 14px; }
.wm-top-right { right: 14px; top: 14px; }
.wm-top-left { left: 14px; top: 14px; }
.wm-center { left: 50%; top: 50%; transform: translate(-50%, -50%); }
.section-title.typing-title::after { content: "|"; color: var(--primary); animation: typingBlink 0.7s steps(1) infinite; }
@keyframes typingBlink { 50% { opacity: 0; } }
.ba-featured { margin-bottom: 30px; }
.ba-featured .ba-container { max-width: 980px; margin: 0 auto; min-height: clamp(240px, 58vw, 420px); }
.ba-featured .ba-caption { text-align: center; font-size: 16px; }
.review-property-image { width: 46px; height: 46px; border-radius: 8px; object-fit: cover; border: 1px solid rgba(255,255,255,0.12); flex-shrink: 0; }
@media (max-width: 1023px) { .review-card { flex: 0 0 50%; min-width: 50%; } }
@media (max-width: 639px) { .review-card { flex: 0 0 100%; min-width: 100%; } }
@media (max-width: 480px) {
    .ba-featured .ba-container {
        min-height: 240px;
        aspect-ratio: 4 / 3;
    }
    .ba-featured .ba-caption {
        font-size: 14px;
        line-height: 1.5;
    }
    .ba-slider-handle {
        width: 40px;
        height: 40px;
    }
    .ba-slider-handle svg {
        width: 18px;
        height: 18px;
    }
    .ba-label {
        padding: 5px 10px;
        font-size: 10px;
    }
}

/* ===== INFO + FB WIDGET 2-COLUMN LAYOUT ===== */
.info-fb-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}
.fb-widget-wrap {
    position: sticky;
    top: 100px;
    background: var(--surface, #1a1a1a);
    border: 1px solid rgba(24,119,242,0.2);
    border-radius: 16px;
    overflow: hidden;
    min-height: 400px;
}
.fb-widget-wrap .fb-page,
.fb-widget-wrap .fb-page span,
.fb-widget-wrap .fb-page span iframe {
    width: 100% !important;
    min-height: 500px;
}
@media (max-width: 900px) {
    .info-fb-layout {
        grid-template-columns: 1fr;
    }
    .fb-widget-wrap {
        position: static;
        min-height: 300px;
    }
}

