@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #60a5fa; /* Brighter Blue for Dark Mode */
    --secondary-color: #f1f5f9; /* Almost White for Headings */
    --accent-color: #a78bfa; /* Soft Purple */
    --background-dark: #0f172a; /* Deep Slate */
    --surface-glass: rgba(30, 41, 59, 0.6); /* Glassy Surface */
    --text-main: #e2e8f0;
    --text-light: #94a3b8;
    --white: #ffffff;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
    --glow-primary: 0 0 20px rgba(96, 165, 250, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--background-dark);
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(76, 29, 149, 0.15), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(37, 99, 235, 0.15), transparent 25%);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Premium Animated Background (Aurora Effect) */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 0% 0%, rgba(168, 85, 247, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 100% 100%, rgba(59, 130, 246, 0.15) 0%, transparent 40%);
    z-index: -2; /* Moved behind particles */
    animation: auroraMove 20s ease-in-out infinite alternate;
    pointer-events: none;
}

#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Above aurora, behind content */
    pointer-events: none;
}

@keyframes auroraMove {
    0% { transform: scale(1) translate(0, 0); }
    50% { transform: scale(1.1) translate(-20px, 10px); }
    100% { transform: scale(1) translate(0, 0); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navbar */
.navbar {
    background: var(--surface-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
    border-radius: 10px;
    -webkit-tap-highlight-color: transparent;
}

.menu-toggle .bar {
    display: block;
    width: 26px;
    height: 2px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 999px;
    transition: var(--transition);
}

.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

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

/* Hero Section */
.hero {
    text-align: center;
    padding: 8rem 0 4rem;
    position: relative; /* Ensure positioning context for ::after */
}

.hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
}

h1, .hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3; /* Increased line-height */
    
    /* Gradient Text Effect (Restored) */
    background: linear-gradient(to right, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    
    /* Glow Effect */
    filter: drop-shadow(0 0 15px rgba(96, 165, 250, 0.3));
    
    /* Spacing Fixes */
    letter-spacing: 2px; /* Distinct letter spacing */
    word-spacing: 0.8rem; /* Distinct word spacing */
    white-space: normal;
}

h1 i {
    margin-right: 20px;
    /* Reset gradient for icon to keep it distinct */
    background: none;
    -webkit-text-fill-color: initial;
    color: var(--primary-color);
    display: inline-block; /* Ensure spacing is respected */
    vertical-align: middle;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 2rem;
    animation: slideUp 1s ease-out 0.2s backwards;
}

.hero-trust {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 1.75rem;
    margin: 1.75rem auto 0;
    max-width: 860px;
}

.hero-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    padding: 0.85rem 1.05rem;
    min-width: 190px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-sm);
}

.hero-trust-number {
    font-size: 1.75rem;
    font-weight: 900;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.94);
    filter: drop-shadow(0 0 12px rgba(96, 165, 250, 0.22));
}

.hero-trust-number i {
    color: var(--primary-color);
}

.hero-trust-label {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.68);
}

/* Smart Banner */
.smart-banner {
    background: linear-gradient(90deg, #1e293b, #2563eb, #1e293b);
    color: white;
    padding: 12px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    margin-bottom: -20px;
    z-index: 900;
}

.smart-banner-track {
    display: inline-block;
    animation: marquee 30s linear infinite;
    padding-left: 100%;
    white-space: nowrap;
}

.smart-banner-item {
    display: inline-block;
    padding: 0 3rem;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
}

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

.smart-banner-item i {
    color: #60a5fa;
    margin-right: 10px;
}



/* Buttons */
.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

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

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.services-grid.sectors-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 720px) {
    .services-grid.sectors-grid {
        grid-template-columns: 1fr;
    }
}

/* Service Card Glassmorphism */
.service-card {
    background: var(--surface-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    box-shadow: var(--glow-primary);
    border-color: var(--primary-color);
    background: rgba(30, 41, 59, 0.8);
    /* Transform handled by JS Tilt Effect */
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px rgba(96, 165, 250, 0.4);
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 600;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Glass Section (Why Choose Us) */
.glass-section {
    background: var(--surface-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 4rem 2rem;
    margin-top: 8rem; /* Increased margin for consistency */
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.glass-section h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.glass-section p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

.glass-section i {
    text-shadow: 0 0 15px rgba(96, 165, 250, 0.4);
    transition: var(--transition);
}

.glass-section div:hover i {
    color: var(--accent-color);
    transform: scale(1.2);
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 0;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding: 0 1rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(96, 165, 250, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Most Popular Card Styles */
.pricing-card.popular {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(96, 165, 250, 0.05));
    border: 1px solid rgba(96, 165, 250, 0.3);
    box-shadow: 0 0 30px rgba(96, 165, 250, 0.1);
    transform: scale(1.05);
    z-index: 2;
    overflow: hidden;
}

.pricing-card.popular:hover {
    transform: scale(1.08);
    box-shadow: 0 25px 50px rgba(96, 165, 250, 0.15);
}

.popular-badge {
    position: absolute;
    top: 32px;
    right: -55px;
    transform: rotate(45deg);
    width: 200px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: white;
    padding: 0.6rem 0;
    text-align: center;
    border-radius: 0;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 10;
}

.pricing-header {
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #fff, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-desc {
    color: var(--text-light);
    font-size: 0.9rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pricing-features li {
    margin-bottom: 1rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.pricing-features li i {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 0.9rem;
}

.pricing-footer {
    margin-top: auto;
}

.btn-pricing {
    display: block;
    width: 100%;
    padding: 1rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-pricing:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-pricing.btn-popular {
    background: var(--white);
    color: #000;
    border: none;
}

.btn-pricing.btn-popular:hover {
    background: #f1f5f9;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

/* Pricing Disclaimer */
.pricing-disclaimer {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 2rem;
    opacity: 0.7;
    font-style: italic;
}

.pricing-disclaimer i {
    margin-right: 5px;
    color: var(--primary-color);
}

/* Portfolio Section (Premium Glass Cards) */
.portfolio-section {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Project Grid Responsive */
.project-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    padding: 1rem;
}

@media (min-width: 1024px) {
    .project-grid {
        grid-template-columns: repeat(4, 1fr);
        padding: 0;
    }
}

.project-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem 2rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.06), transparent 40%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.project-card:hover::before {
    opacity: 1;
}

.project-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.project-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
}

.project-card:hover .project-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
}

.project-icon-wrapper i {
    font-size: 2.5rem;
    background: linear-gradient(to right, #fff, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: white;
}

.project-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-category {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.project-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
    line-height: 1.2;
}

.project-desc {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1rem;
    flex-grow: 1;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
    margin-top: auto;
}

.project-link:hover {
    gap: 1rem;
    color: var(--primary-color);
}

.project-orb {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    opacity: 0.1;
    filter: blur(40px);
    border-radius: 50%;
    z-index: 0;
    transition: opacity 0.4s ease;
}

.project-card:hover .project-orb {
    opacity: 0.2;
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    margin-top: 8rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(168, 85, 247, 0.2));
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(96, 165, 250, 0.1), transparent 70%);
    pointer-events: none;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background: #000000; /* Vercel uses pure black or very dark gray */
    padding: 5rem 0 0; /* Removed bottom padding for full-width bottom bar */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 6rem;
    color: #888888; /* Vercel standard text color for footers */
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    column-count: 2;
    column-gap: 2rem;
    column-rule: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #888888; /* Neutral gray */
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-section ul li a:hover {
    color: var(--white); /* White on hover like Vercel */
    padding-left: 0; /* Removed padding shift for cleaner look */
}

/* Footer Icons */
.footer-section i {
    margin-right: 10px;
    color: var(--white); /* White icons */
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 1rem;
}

.social-icons a {
    color: #888888;
    font-size: 1.2rem;
    transition: color 0.2s ease;
}

.social-icons a:hover {
    color: var(--white);
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 1.25rem;
    align-items: center;
}

.payment-icons i {
    margin-right: 0;
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.86);
}

.payment-badge {
    display: inline-flex;
    align-items: center;
    height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: 0.2px;
    color: rgba(255, 255, 255, 0.86);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom {
    padding: 0.9rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: #111111;
    color: #666666;
    font-size: 0.82rem;
    margin-top: 3rem;
    width: 100%;
}

.footer-bottom-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 12px;
}

.footer-bottom-inner > p {
    margin: 0;
    justify-self: center;
    text-align: center;
}

.footer-brand-badge {
    justify-self: start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    overflow: hidden;
}

.footer-brand-badge img {
    height: 40px;
    width: auto;
    display: block;
    opacity: 0.92;
    transform: scale(1.18);
    transform-origin: center;
}

@media (max-width: 640px) {
    .footer-bottom-inner {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .footer-brand-badge {
        justify-self: center;
        height: 44px;
        border-radius: 16px;
    }

    .footer-brand-badge img {
        height: 44px;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Contact Form Styles - Optimized for Desktop */
.contact-wrapper {
    display: flex;
    justify-content: center;
    padding: 2rem 0;
    width: 100%;
}

.contact-premium-shell {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
}

.contact-premium-shell .contact-container {
    max-width: none;
}

.contact-intro {
    margin-bottom: 2rem;
}

.contact-intro h2 {
    color: var(--white);
    margin-bottom: 0.75rem;
    font-size: 1.6rem;
}

.contact-intro p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.contact-side {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-note {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
}

.contact-location {
    padding: 2rem !important;
    text-align: left;
    margin-top: 0 !important;
}

.contact-location-head h3 {
    color: var(--white);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.contact-location-head p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-smallprint {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.contact-map {
    margin-top: 1.25rem;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(15, 23, 42, 0.35);
}

.contact-map iframe {
    width: 100%;
    height: 280px;
    border: 0;
    display: block;
}

.contact-container {
    width: 100%;
    max-width: 1200px; /* Wider container for desktop */
    margin: 0 auto;
    text-align: left;
    padding: 4rem !important; /* Increased padding */
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns layout */
    gap: 2rem;
}

/* Full width elements in grid */
.contact-form .form-group:nth-last-child(2), /* Message textarea */
.contact-form .form-footer {
    grid-column: span 2;
}

.form-group {
    margin-bottom: 0; /* Let grid gap handle spacing */
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1.2rem;
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    background: rgba(15, 23, 42, 0.8);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(96, 165, 250, 0.2);
    outline: none;
}

/* Responsive adjustments for Contact Form */
@media (max-width: 768px) {
    .contact-container {
        padding: 2rem !important;
    }
    
    .contact-form {
        grid-template-columns: 1fr; /* Stack on mobile */
    }
    
    .contact-form .form-group:nth-last-child(2),
    .contact-form .form-footer {
        grid-column: span 1;
    }

    .contact-premium-shell {
        grid-template-columns: 1fr;
    }

    .contact-map iframe {
        height: 240px;
    }
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(15, 23, 42, 0.8);
    box-shadow: 0 0 0 2px rgba(96, 165, 250, 0.2);
}

.form-footer {
    text-align: center;
    margin-top: 2rem;
}

/* FAQ Styles */
.faq-section {
    padding: 2rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: var(--surface-glass);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.faq-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    background: rgba(30, 41, 59, 0.7);
}

.faq-item h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    line-height: 1.4;
}

.faq-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Mobile Menu */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .navbar {
        padding: 0.75rem 0;
    }

    .logo {
        font-size: 1.25rem;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #111111;
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 2rem;
        text-align: center;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        max-height: calc(100vh - 72px);
        overflow: auto;
    }

    .nav-links.active {
        display: flex;
    }

    .hero {
        padding: 5.5rem 0 3rem;
    }

    .hero::after {
        width: 420px;
        height: 420px;
    }

    h1, .hero h1 {
        font-size: 2.2rem;
        letter-spacing: 1px;
        word-spacing: 0.35rem;
    }

    .hero p {
        font-size: 1.05rem;
    }

    .smart-banner-item {
        padding: 0 1.5rem;
        font-size: 0.85rem;
        letter-spacing: 1.5px;
    }

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

    .service-card {
        padding: 2rem;
    }

    .pricing-section {
        padding: 4.5rem 0;
    }

    .pricing-card {
        padding: 2rem;
    }

    .pricing-card.popular,
    .pricing-card.popular:hover {
        transform: none;
    }

    .popular-badge {
        top: 22px;
        right: -62px;
        width: 190px;
        font-size: 0.8rem;
    }

    .section-title {
        margin-bottom: 3rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .project-card {
        padding: 2.25rem 1.5rem;
    }

    .footer-section ul {
        column-count: 1;
        column-rule: none;
    }

    .chat-toggle-btn {
        right: 16px;
        bottom: 16px;
        width: 54px;
        height: 54px;
    }

    .chat-widget {
        left: 12px;
        right: 12px;
        width: auto;
        height: 70vh;
        max-height: 520px;
        bottom: 86px;
    }

    .chat-body {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    h1, .hero h1 {
        font-size: 1.9rem;
        letter-spacing: 0.5px;
        word-spacing: 0.25rem;
    }

    .hero {
        padding: 5rem 0 2.5rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.9rem 1.5rem;
    }

    .service-card {
        padding: 1.75rem;
    }
}

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

.sector-section {
    scroll-margin-top: 110px;
    margin-top: 5rem;
}

.mockup-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 420px));
    gap: 1.5rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.mockup-grid--local .mockup {
    display: flex;
    flex-direction: column;
    height: 560px;
}

.mockup-grid--local .mockup-body {
    flex: 1;
    display: flex;
}

.mockup-grid--local .mockup-page--lux {
    flex: 1;
    min-height: 0;
}

.mockup {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    min-height: 260px;
}

.mockup-topbar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: #111111;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
}

.mockup-label {
    margin-left: 4px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
}

.mockup-body {
    padding: 1.25rem;
}

.mockup-svg {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
    margin-top: 0.75rem;
}

.mockup-screenshot {
    width: 100%;
    display: block;
    border-radius: 14px;
    margin-top: 0.75rem;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mockup-screenshot--banner {
    aspect-ratio: 21 / 9;
}

.mockup-screenshot--hero {
    aspect-ratio: 16 / 10;
}

.mockup-screenshot--square {
    aspect-ratio: 1 / 1;
}

.mockup-screenshot--fill {
    height: 100%;
    aspect-ratio: auto;
}

.mockup-page {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.mockup-page--lux {
    padding: 0.95rem;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.46);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    position: relative;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    --mockup-accent: rgba(96, 165, 250, 0.9);
    --mockup-accent-soft: rgba(96, 165, 250, 0.18);
    --mockup-accent-border: rgba(96, 165, 250, 0.25);
}

.mockup-center-stage {
    flex: 1;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 0;
}

.mockup-media-card {
    width: min(420px, 100%);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(2, 6, 23, 0.42);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.mockup-media-card--overlay {
    position: relative;
}

.mockup-media-card__overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 12px;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0) 0%, rgba(2, 6, 23, 0.78) 65%, rgba(2, 6, 23, 0.86) 100%);
}

.mockup-media-card__img {
    width: 100%;
    height: 180px;
    display: block;
    object-fit: cover;
}

.mockup-media-card__body {
    padding: 0.85rem 0.9rem 0.95rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.mockup-page--split .mockup-screenshot {
    margin-top: 0;
}

.mockup-theme--restaurant-home {
    --mockup-accent: rgba(251, 191, 36, 0.92);
    --mockup-accent-soft: rgba(251, 191, 36, 0.16);
    --mockup-accent-border: rgba(251, 191, 36, 0.26);
    background:
        radial-gradient(circle at 20% 25%, rgba(251, 191, 36, 0.18) 0%, transparent 55%),
        radial-gradient(circle at 85% 30%, rgba(239, 68, 68, 0.12) 0%, transparent 50%),
        linear-gradient(135deg, rgba(15, 23, 42, 0.56), rgba(2, 6, 23, 0.74));
}

.mockup-theme--restaurant-home .mockup-section--raised {
    padding: 0.7rem;
}

.mockup-theme--restaurant-home .mockup-card {
    height: 64px;
}

.mockup-theme--restaurant-menu {
    --mockup-accent: rgba(245, 158, 11, 0.92);
    --mockup-accent-soft: rgba(245, 158, 11, 0.16);
    --mockup-accent-border: rgba(245, 158, 11, 0.26);
    background:
        radial-gradient(circle at 15% 20%, rgba(245, 158, 11, 0.18) 0%, transparent 52%),
        radial-gradient(circle at 75% 55%, rgba(34, 197, 94, 0.12) 0%, transparent 55%),
        linear-gradient(135deg, rgba(15, 23, 42, 0.52), rgba(2, 6, 23, 0.78));
}

.mockup-theme--restaurant-reservation {
    --mockup-accent: rgba(34, 197, 94, 0.9);
    --mockup-accent-soft: rgba(34, 197, 94, 0.14);
    --mockup-accent-border: rgba(34, 197, 94, 0.24);
    background:
        radial-gradient(circle at 20% 75%, rgba(34, 197, 94, 0.16) 0%, transparent 55%),
        radial-gradient(circle at 85% 25%, rgba(96, 165, 250, 0.12) 0%, transparent 55%),
        linear-gradient(135deg, rgba(15, 23, 42, 0.5), rgba(2, 6, 23, 0.78));
}

.mockup-theme--restaurant-home,
.mockup-theme--restaurant-menu,
.mockup-theme--restaurant-reservation {
    height: clamp(440px, 56vh, 520px);
}

.mockup-theme--startup-landing {
    --mockup-accent: rgba(129, 216, 208, 0.92);
    --mockup-accent-soft: rgba(129, 216, 208, 0.18);
    --mockup-accent-border: rgba(129, 216, 208, 0.28);
    background:
        radial-gradient(circle at 18% 18%, rgba(129, 216, 208, 0.34) 0%, transparent 60%),
        radial-gradient(circle at 85% 32%, rgba(94, 234, 212, 0.22) 0%, transparent 62%),
        radial-gradient(circle at 35% 92%, rgba(165, 243, 252, 0.18) 0%, transparent 58%),
        linear-gradient(135deg, rgba(15, 118, 110, 0.28), rgba(15, 23, 42, 0.76));
}

.mockup-theme--startup-onboarding {
    --mockup-accent: rgba(129, 216, 208, 0.92);
    --mockup-accent-soft: rgba(129, 216, 208, 0.16);
    --mockup-accent-border: rgba(129, 216, 208, 0.26);
    background:
        radial-gradient(circle at 20% 72%, rgba(129, 216, 208, 0.3) 0%, transparent 62%),
        radial-gradient(circle at 82% 20%, rgba(165, 243, 252, 0.22) 0%, transparent 64%),
        radial-gradient(circle at 55% 8%, rgba(94, 234, 212, 0.2) 0%, transparent 58%),
        linear-gradient(135deg, rgba(13, 148, 136, 0.26), rgba(15, 23, 42, 0.76));
}

.mockup-theme--startup-dashboard {
    --mockup-accent: rgba(129, 216, 208, 0.92);
    --mockup-accent-soft: rgba(129, 216, 208, 0.18);
    --mockup-accent-border: rgba(129, 216, 208, 0.28);
    background:
        radial-gradient(circle at 18% 28%, rgba(165, 243, 252, 0.26) 0%, transparent 64%),
        radial-gradient(circle at 82% 68%, rgba(129, 216, 208, 0.22) 0%, transparent 66%),
        radial-gradient(circle at 55% 10%, rgba(94, 234, 212, 0.18) 0%, transparent 60%),
        linear-gradient(135deg, rgba(15, 118, 110, 0.3), rgba(15, 23, 42, 0.78));
}

.mockup-theme--startup-landing,
.mockup-theme--startup-onboarding,
.mockup-theme--startup-dashboard {
    height: clamp(560px, 70vh, 700px);
}

.mockup-theme--property-listing,
.mockup-theme--property-detail,
.mockup-theme--property-contact {
    height: clamp(600px, 70vh, 700px);
}

.mockup-theme--property-listing {
    --mockup-accent: rgba(34, 197, 94, 0.9);
    --mockup-accent-soft: rgba(34, 197, 94, 0.14);
    --mockup-accent-border: rgba(34, 197, 94, 0.24);
    background:
        radial-gradient(circle at 20% 20%, rgba(34, 197, 94, 0.18) 0%, transparent 55%),
        radial-gradient(circle at 82% 35%, rgba(96, 165, 250, 0.12) 0%, transparent 55%),
        linear-gradient(135deg, rgba(15, 23, 42, 0.5), rgba(2, 6, 23, 0.8));
}

.mockup-theme--property-detail {
    --mockup-accent: rgba(20, 184, 166, 0.92);
    --mockup-accent-soft: rgba(20, 184, 166, 0.14);
    --mockup-accent-border: rgba(20, 184, 166, 0.24);
    background:
        radial-gradient(circle at 20% 75%, rgba(20, 184, 166, 0.2) 0%, transparent 58%),
        radial-gradient(circle at 85% 30%, rgba(251, 191, 36, 0.1) 0%, transparent 60%),
        linear-gradient(135deg, rgba(15, 23, 42, 0.5), rgba(2, 6, 23, 0.8));
}

.mockup-theme--property-contact {
    --mockup-accent: rgba(59, 130, 246, 0.92);
    --mockup-accent-soft: rgba(59, 130, 246, 0.16);
    --mockup-accent-border: rgba(59, 130, 246, 0.26);
    background:
        radial-gradient(circle at 18% 25%, rgba(59, 130, 246, 0.22) 0%, transparent 55%),
        radial-gradient(circle at 80% 65%, rgba(34, 197, 94, 0.12) 0%, transparent 58%),
        linear-gradient(135deg, rgba(15, 23, 42, 0.5), rgba(2, 6, 23, 0.8));
}

.mockup-theme--local-home {
    --mockup-accent: rgba(14, 165, 233, 0.92);
    --mockup-accent-soft: rgba(14, 165, 233, 0.16);
    --mockup-accent-border: rgba(14, 165, 233, 0.26);
    height: clamp(560px, 70vh, 700px);
    gap: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(14, 165, 233, 0.2) 0%, transparent 56%),
        radial-gradient(circle at 82% 70%, rgba(34, 197, 94, 0.12) 0%, transparent 60%),
        linear-gradient(135deg, rgba(15, 23, 42, 0.5), rgba(2, 6, 23, 0.82));
}

.mockup-theme--local-reviews {
    --mockup-accent: rgba(244, 63, 94, 0.92);
    --mockup-accent-soft: rgba(244, 63, 94, 0.14);
    --mockup-accent-border: rgba(244, 63, 94, 0.24);
    background:
        radial-gradient(circle at 18% 20%, rgba(244, 63, 94, 0.2) 0%, transparent 58%),
        radial-gradient(circle at 85% 35%, rgba(129, 140, 248, 0.12) 0%, transparent 60%),
        linear-gradient(135deg, rgba(15, 23, 42, 0.52), rgba(2, 6, 23, 0.82));
}

.mockup-theme--local-contacts {
    --mockup-accent: rgba(34, 197, 94, 0.9);
    --mockup-accent-soft: rgba(34, 197, 94, 0.14);
    --mockup-accent-border: rgba(34, 197, 94, 0.24);
    background:
        radial-gradient(circle at 18% 70%, rgba(34, 197, 94, 0.18) 0%, transparent 58%),
        radial-gradient(circle at 85% 25%, rgba(96, 165, 250, 0.12) 0%, transparent 60%),
        linear-gradient(135deg, rgba(15, 23, 42, 0.52), rgba(2, 6, 23, 0.84));
}

.mockup-banner {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mockup-banner--full {
    margin: 0 -0.95rem;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
}

.mockup-banner--bleed-top {
    margin-top: -0.95rem;
    border-top: 0;
}

.mockup-banner--angled {
    clip-path: polygon(0 0, 100% 0, 100% 84%, 0 100%);
}

.mockup-banner .mockup-screenshot {
    margin-top: 0;
    border: 0;
    border-radius: 0;
}

.mockup-banner-overlay {
    position: absolute;
    inset: 0;
    padding: 0.95rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.22) 48%, rgba(0, 0, 0, 0.7) 100%);
}

.mockup-banner-overlay--compact {
    justify-content: flex-end;
    gap: 0.35rem;
}

.mockup-banner-overlay--top {
    justify-content: flex-start;
    padding-top: 0.65rem;
    gap: 0.35rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.66) 0%, rgba(0, 0, 0, 0.24) 42%, rgba(0, 0, 0, 0) 70%);
}

.mockup-banner-overlay--gallery {
    justify-content: space-between;
    padding: 0.75rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.04) 46%, rgba(0, 0, 0, 0.35) 100%);
}

.mockup-banner--gym {
    flex: 1;
    min-height: 0;
}

.mockup-banner-overlay--gym {
    justify-content: flex-end;
    gap: 0.35rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.1) 38%, rgba(0, 0, 0, 0.78) 100%);
}

.mockup-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.mockup-carousel-btn {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(15, 23, 42, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.mockup-carousel-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.mockup-carousel-dots span {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.32);
}

.mockup-carousel-dots span.active {
    width: 18px;
    background: rgba(255, 255, 255, 0.78);
}

.mockup-mini-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.mockup-mini-nav--bar {
    padding: 12px 16px;
    margin: -0.95rem -0.95rem 0;
    border-radius: 0;
    background: rgba(2, 6, 23, 0.55);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.mockup-mini-logo {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.mockup-mini-links {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.mockup-mini-links--navbar {
    flex-wrap: nowrap;
    gap: 12px;
    white-space: nowrap;
    overflow: hidden;
}

.mockup-mini-links span {
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.mockup-mini-links--navbar span {
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    font-size: 0.78rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.82);
    letter-spacing: 0.01em;
}

.mockup-mini-links--navbar span:first-child {
    color: rgba(255, 255, 255, 0.92);
}

.mockup-mini-hero {
    max-width: 90%;
}

.mockup-mini-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.78);
    letter-spacing: 0.02em;
    margin-bottom: 6px;
}

.mockup-mini-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.96);
    line-height: 1.15;
    margin-bottom: 6px;
}

.mockup-mini-subtitle {
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.35;
    margin-bottom: 10px;
}

.mockup-mini-footer {
    margin-top: auto;
    padding-top: 0.45rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mockup-mini-footer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.mockup-mini-footer-title {
    font-size: 0.74rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mockup-mini-footer-link {
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.66);
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mockup-mini-footer-col {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mockup-mini-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 8px;
}

.mockup-mini-footer-note {
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.56);
    white-space: nowrap;
}

.mockup-mini-footer-admin {
    font-size: 0.72rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.84);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 5px 9px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 54%;
}

.mockup-section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mockup-section--raised {
    padding: 0.9rem;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}

.mockup-landing-details {
    padding: 0.65rem;
    gap: 0.55rem;
}

.mockup-landing-details .mockup-section-title {
    font-size: 0.82rem;
}

.mockup-landing-details .mockup-section-action {
    font-size: 0.76rem;
}

.mockup-landing-details .mockup-menu-item {
    padding: 6px 8px;
    border-radius: 10px;
    font-size: 0.78rem;
}

.mockup-section--flat {
    padding: 0.85rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mockup-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-width: 0;
}

.mockup-section-title {
    flex: 1;
    min-width: 0;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mockup-section-action {
    font-weight: 700;
    color: var(--mockup-accent);
    font-size: 0.82rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 42%;
}

.mockup-split {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 0.9rem;
    align-items: start;
}

.mockup-split .mockup-screenshot {
    margin-top: 0;
}

.mockup-split--reverse > :first-child {
    grid-column: 2;
}

.mockup-split--reverse > :last-child {
    grid-column: 1;
}

.mockup-split-media {
    position: relative;
}

.mockup-split-figure {
    position: relative;
}

.mockup-split-badge {
    position: absolute;
    left: 10px;
    bottom: 10px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(15, 23, 42, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.mockup-oblique-split {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
}

.mockup-oblique-split--square {
    aspect-ratio: 1 / 1;
}

.mockup-oblique-split--fill {
    flex: 1;
    aspect-ratio: auto;
    min-height: 0;
}

.mockup-oblique-split--full {
    margin: 0 -0.95rem -0.95rem;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
}

.mockup-oblique-split::after {
    content: "";
    position: absolute;
    top: -50%;
    left: 51%;
    width: 3px;
    height: 220%;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
    box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.35);
    transform: rotate(-8deg);
    pointer-events: none;
}

.mockup-oblique-side {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.mockup-oblique-side::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.62) 100%);
}

.mockup-oblique-side--left {
    clip-path: polygon(0 0, 58% 0, 44% 100%, 0 100%);
}

.mockup-oblique-side--right {
    clip-path: polygon(58% 0, 100% 0, 100% 100%, 44% 100%);
}

.mockup-oblique-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}

.mockup-oblique-card {
    width: min(320px, 82%);
    padding: 12px 12px 10px;
    border-radius: 16px;
    background: rgba(2, 6, 23, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.mockup-oblique-card .mockup-mini-subtitle {
    font-size: 0.78rem;
    margin-bottom: 0;
}

.mockup-oblique-side--right .mockup-oblique-content {
    align-items: flex-end;
    text-align: right;
}

.mockup-oblique-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 2px;
}

.mockup-oblique-actions .mockup-pill {
    font-size: 0.82rem;
    padding: 7px 10px;
}

.mockup-split-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mockup-menu-title {
    font-weight: 900;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.92rem;
    margin-top: 2px;
}

.mockup-menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.82);
    font-weight: 700;
    font-size: 0.86rem;
}

.mockup-menu-item--active {
    background: rgba(15, 23, 42, 0.55);
    border-color: var(--mockup-accent-border);
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.35);
    transform: translateY(1px);
}

.mockup-menu-item--active .mockup-menu-price {
    color: rgba(255, 255, 255, 0.86);
}

.mockup-menu-price {
    color: rgba(255, 255, 255, 0.72);
    font-weight: 800;
}

.mockup-menu-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 6px 0;
}

.mockup-menu-footer {
    margin-top: 2px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.mockup-form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.mockup-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
}

.mockup-form-grid--three {
    grid-template-columns: repeat(3, 1fr);
}

.mockup-form-field {
    display: flex;
    flex-direction: column;
}

.mockup-field-label {
    font-size: 0.78rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 8px;
}

.mockup-field--tall {
    height: 78px;
}

.mockup-form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.mockup-form-note {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 700;
}

.mockup-reservation-card {
    gap: 10px;
}

.mockup-booking-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    align-items: end;
}

.mockup-booking-grid .mockup-field {
    margin-bottom: 0;
}

.mockup-booking-grid .mockup-field-label {
    margin-bottom: 6px;
}

.mockup-booking-action {
    display: flex;
    align-items: flex-end;
}

.mockup-booking-action .mockup-pill {
    width: 100%;
    text-align: center;
}

.mockup-progress {
    display: flex;
    gap: 10px;
}

.mockup-progress span {
    flex: 1;
    height: 7px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mockup-progress span.active {
    background: rgba(96, 165, 250, 0.55);
    border-color: rgba(96, 165, 250, 0.4);
}

.mockup-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mockup-filter-row span {
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.78);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.mockup-property-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 10px;
}

.mockup-property-footer .mockup-line {
    margin-bottom: 0;
}

.mockup-property-card {
    display: flex;
    gap: 10px;
    padding: 10px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mockup-property-thumb {
    width: 76px;
    height: 58px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.22), rgba(167, 139, 250, 0.16));
    border: 1px solid rgba(255, 255, 255, 0.08);
    flex: 0 0 auto;
    background-size: cover;
    background-position: center;
}

.mockup-property-lines {
    flex: 1;
    min-width: 0;
}

.mockup-property-brand {
    width: 86%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.94);
}

.mockup-property-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
}

.mockup-mini-nav--property-bar {
    margin: 12px -0.95rem 0;
    padding: 10px 16px;
}

.mockup-mini-nav--property-bar .mockup-search {
    margin-bottom: 0;
    flex: 1;
}

.mockup-mini-nav--property-bar .mockup-search--filled {
    height: 40px;
    font-size: 0.84rem;
}

.mockup-mini-nav--property-bar .mockup-mini-links--navbar {
    flex: 0 0 auto;
}

.mockup-mini-nav--property-top .mockup-search {
    margin-bottom: 0;
    flex: 1;
}

.mockup-mini-nav--property-top .mockup-search--filled {
    height: 40px;
    font-size: 0.84rem;
}

.mockup-mini-nav--property-top .mockup-mini-links--navbar {
    flex: 0 0 auto;
}

.mockup-banner--contact {
    margin-top: 0.85rem;
    border-radius: 18px;
}

.mockup-banner--contact .mockup-screenshot {
    border-radius: 18px;
}

.mockup-property-contact-card {
    margin-top: 0.85rem;
    padding: 0.75rem;
    gap: 8px;
}

.mockup-property-contact-card .mockup-form {
    gap: 0.55rem;
}

.mockup-property-contact-card .mockup-form-grid {
    gap: 0.55rem;
}

.mockup-property-contact-card .mockup-field-label {
    margin-bottom: 6px;
    font-size: 0.74rem;
}

.mockup-property-contact-card .mockup-field {
    height: 38px;
    margin-bottom: 0;
}

.mockup-property-contact-card .mockup-field--tall {
    height: 64px;
}

.mockup-property-contact-card .mockup-form-actions {
    margin-top: 2px;
}

.mockup-property-detail-card {
    margin-top: 0.85rem;
    padding: 0.85rem;
    gap: 10px;
}

.mockup-property-description {
    margin-top: 10px;
}

.mockup-property-description .mockup-line {
    height: 9px;
    margin-bottom: 8px;
}

.mockup-search--filled {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 16px;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 800;
    font-size: 0.85rem;
}

.mockup-search-icon {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    flex: 0 0 auto;
}

.mockup-search-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mockup-property-segments {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.mockup-property-segment {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mockup-property-segment span {
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.7);
}

.mockup-property-segment span.active {
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.mockup-property-lines .mockup-line {
    height: 9px;
    margin-bottom: 9px;
}

.mockup-thumb-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.mockup-thumb {
    height: 56px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mockup-review-card {
    padding: 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mockup-review-top {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}

.mockup-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.28), rgba(167, 139, 250, 0.18));
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex: 0 0 auto;
}

.mockup-review-meta {
    flex: 1;
}

.mockup-review-name {
    font-size: 0.86rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.2;
}

.mockup-review-meta .mockup-line {
    height: 8px;
    margin: 0;
}

.mockup-stars {
    margin-top: 6px;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.7);
}

.mockup-review-text {
    min-height: 44px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.32);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.35;
}

.mockup-review-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 0.9rem;
    align-items: start;
}

.mockup-review-summary {
    position: relative;
}

.mockup-review-summary .mockup-screenshot {
    margin-top: 0;
}

.mockup-review-badge {
    position: absolute;
    left: 12px;
    bottom: 12px;
    padding: 10px 12px;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.mockup-review-badge--below {
    position: static;
    width: fit-content;
    margin-top: 10px;
}

.mockup-review-score {
    font-size: 1.4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1;
}

.mockup-review-caption {
    margin-top: 6px;
    font-size: 0.78rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.68);
}

.mockup-review-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mockup-map-hero {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mockup-map-hero .mockup-screenshot {
    margin-top: 0;
    border: 0;
    border-radius: 0;
}

.mockup-map-overlay {
    position: absolute;
    inset: 0;
    padding: 0.95rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.8rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.12) 45%, rgba(0, 0, 0, 0.74) 100%);
}

.mockup-quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.mockup-hours {
    padding: 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mockup-hours-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.82rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.74);
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mockup-hours-row:last-child {
    border-bottom: 0;
}

.mockup-title {
    font-weight: 700;
    color: var(--white);
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
}

.mockup-line {
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    margin-bottom: 10px;
}

.mockup-line.short {
    width: 70%;
}

.mockup-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 14px 0;
}

.mockup-pill {
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--mockup-accent-soft);
    border: 1px solid var(--mockup-accent-border);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    font-size: 0.9rem;
}

.mockup-pill.secondary {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.75);
}

.mockup-block {
    height: 86px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mockup-block.tall {
    height: 130px;
}

.mockup-item {
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 10px;
    overflow: hidden;
}

.mockup-item-title {
    font-weight: 900;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.82rem;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mockup-item-subtitle {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.75rem;
    line-height: 1.25;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.mockup-chip {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(167, 139, 250, 0.12);
    border: 1px solid rgba(167, 139, 250, 0.22);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.mockup-field {
    height: 44px;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.12);
    margin-bottom: 12px;
}

.mockup-kpi-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 14px 0;
}

.mockup-dashboard-metrics .mockup-kpi-row {
    margin: 0;
}

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

.mockup-dashboard-marketing {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0.65rem;
    gap: 10px;
}

.mockup-dashboard-marketing .mockup-section-header {
    grid-column: 1 / -1;
}

.mockup-kpi {
    min-height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 9px 10px;
    overflow: hidden;
}

.mockup-kpi-label {
    font-size: 0.72rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.1;
}

.mockup-kpi-value {
    font-size: 0.95rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.92);
    letter-spacing: 0.01em;
    line-height: 1.1;
}

.mockup-dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0.15rem 0.1rem;
}

.mockup-dashboard-title {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mockup-dashboard-avatar {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
    flex: 0 0 auto;
}

.mockup-dashboard-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr);
    gap: 0.9rem;
    align-items: start;
}

.mockup-dashboard-main,
.mockup-dashboard-side {
    min-width: 0;
}

.mockup-dashboard-grid .mockup-section {
    gap: 0.65rem;
}

.mockup-dashboard-grid .mockup-media-card {
    box-shadow: none;
}

.mockup-dashboard-main .mockup-item,
.mockup-dashboard-side .mockup-item {
    margin-top: 0;
}

.mockup-dashboard-main,
.mockup-dashboard-side {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mockup-media-card {
    width: 100%;
    max-width: none;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.mockup-media-card .mockup-screenshot {
    margin-top: 0;
    border: 0;
    border-radius: 0;
}

.mockup-search {
    height: 44px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 14px;
}

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

.mockup-cards--spacious {
    gap: 14px;
}

.mockup-card {
    height: 78px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.mockup-card--labeled {
    position: relative;
}

.mockup-card-label {
    position: absolute;
    left: 10px;
    bottom: 10px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.75rem;
    line-height: 1;
    letter-spacing: 0.2px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.mockup-card-media {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.mockup-image {
    height: 110px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.18), rgba(167, 139, 250, 0.12));
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 14px;
}

.mockup-review {
    height: 54px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 10px;
}

.mockup-map {
    height: 120px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 14px;
}

@media (max-width: 768px) {
    .sector-section {
        margin-top: 4rem;
    }

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

    .mockup-grid--local .mockup {
        height: auto;
    }

    .mockup-grid--local .mockup-body {
        display: block;
    }

    .mockup-page--lux[class*="mockup-theme--"] {
        height: auto;
        overflow: visible;
    }

    .mockup-screenshot--banner {
        aspect-ratio: 16 / 10;
    }

    .mockup-split {
        grid-template-columns: 1fr;
    }

    .mockup-split--reverse > :first-child,
    .mockup-split--reverse > :last-child {
        grid-column: auto;
    }

    .mockup-form-grid {
        grid-template-columns: 1fr;
    }

    .mockup-form-grid--three {
        grid-template-columns: 1fr;
    }

    .mockup-property-grid {
        grid-template-columns: 1fr;
    }

    .mockup-cards {
        grid-template-columns: 1fr;
    }

    .mockup-review-layout {
        grid-template-columns: 1fr;
    }

    .mockup-dashboard-grid {
        grid-template-columns: 1fr;
    }
}
/* Chat Widget Styles */
.chat-toggle-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(96, 165, 250, 0.4);
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-toggle-btn:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 6px 20px rgba(96, 165, 250, 0.6);
    background: var(--accent-color);
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.chat-header button {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
    opacity: 0.8;
}

.chat-header button:hover {
    transform: rotate(90deg);
    opacity: 1;
}

.chat-widget {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 380px;
    height: 500px;
    background: #1e293b;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    z-index: 999;
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-body {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    background: #0f172a;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    align-self: flex-start;
    max-width: 95%;
}

.chat-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.chat-chip {
    appearance: none;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: #f1f5f9;
    border-radius: 999px;
    padding: 0.55rem 0.85rem;
    font-size: 0.9rem;
    line-height: 1;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.chat-chip:hover {
    transform: translateY(-1px);
    border-color: rgba(96, 165, 250, 0.55);
    background: rgba(96, 165, 250, 0.14);
}

.chat-chip:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.chat-chip--primary {
    background: rgba(96, 165, 250, 0.18);
    border-color: rgba(96, 165, 250, 0.5);
}

.chat-chip--link {
    background: rgba(30, 41, 59, 0.85);
}

/* Chat Messages */
.message {
    padding: 10px 15px;
    border-radius: 15px;
    margin-bottom: 10px;
    max-width: 80%;
    word-wrap: break-word;
    font-size: 0.95rem;
    line-height: 1.4;
}

.agent-message {
    background: #334155;
    color: #f1f5f9;
    align-self: flex-start;
    border-bottom-left-radius: 2px;
    box-shadow: var(--shadow-sm);
    margin-right: auto;
}

.user-message {
    background: var(--primary-color);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
    box-shadow: var(--shadow-sm);
    margin-left: auto;
}

.chat-widget.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.footer-bottom a {
    color: #888888;
    text-decoration: underline;
}

.footer-bottom a:hover {
    color: var(--white);
}

.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1100;
    padding: 14px 14px 18px;
    display: none;
}

.cookie-banner.is-visible {
    display: block;
}

.cookie-banner__inner {
    max-width: 980px;
    margin: 0 auto;
    padding: 16px 16px;
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: var(--shadow-lg);
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: space-between;
}

.cookie-banner__text {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
    line-height: 1.45;
}

.cookie-banner__text a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.cookie-banner__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
    flex: 0 0 auto;
}

.cookie-btn {
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 700;
}

@media (max-width: 640px) {
    .cookie-banner__inner {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-banner__actions {
        justify-content: stretch;
    }

    .cookie-btn {
        width: 100%;
    }
}

.center-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.center-modal.is-open {
    display: flex;
}

.center-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

.center-modal__panel {
    position: relative;
    width: 100%;
    max-width: 520px;
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 18px 18px 16px;
}

.center-modal__message {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.55;
}

.center-modal__actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 14px;
}