/* --- JSVSites Luxury Design System --- */

/* CSS Variables */
:root {
    --bg-dark: #fcfbfa;
    /* Off-white/linen cream background */
    --bg-darker: #f5f4ef;
    /* Slightly darker warm beige for layout sections/nav blocks */
    --card-bg: rgba(255, 255, 255, 0.7);
    /* Frosted glass white */
    --card-border: rgba(0, 0, 0, 0.07);
    --card-border-glow: rgba(197, 168, 128, 0.3);
    /* Warm gold glow */

    --primary: #b0926a;
    /* Warm luxury gold */
    --primary-light: #c5a880;
    /* Slightly lighter gold */
    --primary-glow: rgba(197, 168, 128, 0.08);
    --secondary: #2c2a29;
    /* Slate/charcoal secondary color */
    --accent: #5f756b;
    /* Sage green accent */
    --accent-glow: rgba(95, 117, 107, 0.08);

    --text-main: #1c1a19;
    /* Deep charcoal dark main text */
    --text-muted: #5c5a58;
    /* Grayish charcoal muted text */
    --text-dark: #8c8985;
    /* Lighter charcoal for deep subtext/borders */

    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Montserrat', sans-serif;

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);

    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 10px 30px 0 rgba(197, 168, 128, 0.12);
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

/* Global Resets */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

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

ul {
    list-style: none;
}

/* Utility Layouts */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-glow);
    border: 1px solid rgba(197, 168, 128, 0.25);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-tag {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 16px;
    background: linear-gradient(180deg, var(--text-main) 0%, var(--text-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Shared UI Components */
.card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 30px;
    transition: var(--transition-smooth);
}

.card:hover {
    border-color: var(--card-border-glow);
    box-shadow: var(--shadow-glow);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(197, 168, 128, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(197, 168, 128, 0.4);
}

.btn-secondary {
    background: rgba(0, 0, 0, 0.02);
    color: var(--text-main);
    border: 1px solid rgba(0, 0, 0, 0.07);
}

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

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
    border-radius: 8px;
}

.btn-full {
    width: 100%;
}

.btn-wa {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.btn-wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.35);
}

.btn-call {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(197, 168, 128, 0.2);
}

.btn-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(197, 168, 128, 0.3);
}

/* Header & Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(252, 251, 250, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--card-border);
    transition: var(--transition-fast);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(245, 244, 239, 0.9);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    color: var(--primary);
    display: flex;
    align-items: center;
}

.logo-accent {
    color: var(--primary);
}

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

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
}

.nav-link:hover {
    color: var(--text-main);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 160px 0 100px 0;
    background-color: var(--bg-darker);
    overflow: hidden;
}

.hero-glow-1 {
    position: absolute;
    top: -10%;
    left: 20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.08) 0%, rgba(197, 168, 128, 0) 70%);
    z-index: 1;
}

.hero-glow-2 {
    position: absolute;
    bottom: -20%;
    right: 10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(95, 117, 107, 0.06) 0%, rgba(95, 117, 107, 0) 70%);
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.8rem;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 560px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-main);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Device Mockups visual layout */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    overflow: hidden;
}

.mockup-container {
    position: relative;
    width: 100%;
    max-width: 480px;
    height: 340px;
}

.laptop-mockup {
    width: 100%;
    max-width: 420px;
    position: absolute;
    left: 0;
    top: 20px;
}

.screen-frame {
    background: #fbfbfa;
    border-radius: 12px 12px 0 0;
    border: 4px solid #dcdad5;
    border-bottom: none;
    aspect-ratio: 16/10;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.screen-bar {
    height: 24px;
    background: #f5f4ef;
    display: flex;
    align-items: center;
    padding: 0 10px;
    gap: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dots {
    display: flex;
    gap: 5px;
}

.dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
}

.dot-red {
    background: #ef4444;
}

.dot-yellow {
    background: #f59e0b;
}

.dot-green {
    background: #10b981;
}

.url-bar {
    background: #ffffff;
    height: 14px;
    border-radius: 3px;
    flex-grow: 1;
    max-width: 200px;
    font-size: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    gap: 4px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.lock-icon {
    width: 6px;
    height: 6px;
}

.screen-content {
    background: #ffffff;
    height: calc(100% - 24px);
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #1c1a19;
}

.demo-site-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.demo-logo {
    font-size: 10px;
    font-weight: 700;
}

.demo-btn {
    font-size: 8px;
    background: var(--primary);
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
}

.demo-hero {
    text-align: center;
    margin-top: 10px;
    flex-grow: 1;
}

.demo-hero h3 {
    font-size: 14px;
    margin-bottom: 4px;
    font-weight: 600;
}

.demo-hero p {
    font-size: 8px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.demo-products {
    display: flex;
    gap: 6px;
    justify-content: center;
}

.demo-p-card {
    background: #f5f4ef;
    padding: 6px;
    border-radius: 6px;
    font-size: 8px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    width: 70px;
    color: var(--text-main);
}

.laptop-base {
    height: 10px;
    background: #b8b6af;
    border-radius: 0 0 16px 16px;
    position: relative;
}

.laptop-base::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: #989690;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Floating Android Mockup */
.phone-mockup {
    width: 140px;
    height: 270px;
    background: #fbfbfa;
    border: 6px solid #dcdad5;
    border-radius: 24px;
    position: absolute;
    right: 0;
    bottom: -10px;
    box-shadow: var(--shadow-lg);
    z-index: 5;
    overflow: hidden;
    animation: floatingApp 4s ease-in-out infinite alternate;
}

@keyframes floatingApp {
    0% {
        transform: translateY(0) rotate(2deg);
    }

    100% {
        transform: translateY(-12px) rotate(-1deg);
    }
}

.phone-screen {
    height: 100%;
    position: relative;
    padding: 14px 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.phone-camera {
    width: 40px;
    height: 10px;
    background: #dcdad5;
    border-radius: 0 0 8px 8px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.phone-content {
    background: #ffffff;
    height: 100%;
    border-radius: 12px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #1c1a19;
}

.phone-header {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 8px;
    font-weight: 700;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 6px;
    color: var(--text-main);
}

.phone-header i {
    width: 10px;
    height: 10px;
    color: var(--primary);
}

.phone-promo {
    background: rgba(197, 168, 128, 0.08);
    border: 1px dashed var(--primary);
    border-radius: 6px;
    padding: 8px;
    text-align: center;
    margin: 12px 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.phone-promo span {
    font-size: 10px;
    font-weight: 700;
    color: var(--primary);
}

.phone-promo small {
    font-size: 6px;
    color: var(--text-muted);
}

.phone-nav-bar {
    display: flex;
    justify-content: space-around;
    padding-top: 6px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.phone-nav-bar i {
    width: 12px;
    height: 12px;
    color: var(--text-muted);
}

.phone-nav-bar i.active {
    color: var(--primary);
}

/* Services Section */
.services {
    padding: 100px 0;
    position: relative;
}

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

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 40px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.service-icon-wrapper i {
    width: 28px;
    height: 28px;
    color: white;
}

.service-icon-wrapper.purple {
    background: linear-gradient(135deg, #b0926a 0%, #8c7352 100%);
    box-shadow: 0 4px 15px rgba(176, 146, 106, 0.2);
}

.service-icon-wrapper.green {
    background: linear-gradient(135deg, #5f756b 0%, #46574f 100%);
    box-shadow: 0 4px 15px rgba(95, 117, 107, 0.2);
}

.service-icon-wrapper.blue {
    background: linear-gradient(135deg, #7a8a99 0%, #546270 100%);
    box-shadow: 0 4px 15px rgba(122, 138, 153, 0.2);
}

.service-icon-wrapper.orange {
    background: linear-gradient(135deg, #a8846c 0%, #82624d 100%);
    box-shadow: 0 4px 15px rgba(168, 132, 108, 0.2);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 20px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.service-features li i {
    width: 16px;
    height: 16px;
    color: var(--accent);
}

/* Models / Showcase Section */
.showcase {
    padding: 100px 0;
    position: relative;
}

.showcase-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.06) 0%, rgba(197, 168, 128, 0) 70%);
    z-index: 1;
}

.showcase-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.filter-btn {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.06);
    color: var(--text-muted);
    padding: 10px 22px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover {
    background: rgba(0, 0, 0, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--text-main);
}

.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.model-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    overflow: hidden;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
    display: flex;
    flex-direction: column;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
}

.model-card.hidden {
    display: none;
}

.model-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-main);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 3;
    box-shadow: var(--shadow-sm);
}

.model-visual {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 20px;
}

.model-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    transition: transform var(--transition-smooth);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0) scale(1);
    -webkit-transform: translate3d(0, 0, 0) scale(1);
}

.model-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 50%, rgba(252, 251, 250, 0.4) 100%);
}

.hotel-visual {
    background: linear-gradient(135deg, #f7f3ed 0%, #e2dacd 100%);
}

.saloon-visual {
    background: linear-gradient(135deg, #f7edf5 0%, #e5cbdc 100%);
}

.listking-visual {
    background: linear-gradient(135deg, #edf3f7 0%, #cbe1ed 100%);
}

.store-visual {
    background: linear-gradient(135deg, #edf7f3 0%, #cbe5db 100%);
}

.mobile-visual {
    background: linear-gradient(135deg, #edf6f7 0%, #cbdde5 100%);
}

.education-visual {
    background: linear-gradient(135deg, #edf0f7 0%, #cbd2e5 100%);
}

.company-visual {
    background: linear-gradient(135deg, #f3f3f5 0%, #d5d5db 100%);
}

.pv_web-visual {
    background: linear-gradient(135deg, #f7fdfb 0%, #cbebe1 100%);
}

.visual-inner {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform var(--transition-smooth);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0) scale(1);
    -webkit-transform: translate3d(0, 0, 0) scale(1);
}

.visual-logo {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-main);
}

.visual-ui {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.visual-row {
    background: rgba(255, 255, 255, 0.5);
    height: 12px;
    border-radius: 3px;
    padding: 0 6px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.font-sm {
    font-size: 6px;
    color: var(--text-muted);
}

.visual-row.grid-2 {
    background: none;
    height: auto;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    border: none;
}

.visual-box {
    background: rgba(255, 255, 255, 0.5);
    height: 16px;
    border-radius: 3px;
    font-size: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.visual-box-highlight {
    background: var(--primary-glow);
    border: 1px solid rgba(197, 168, 128, 0.3);
    height: 16px;
    border-radius: 3px;
    font-size: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.flex-between {
    background: none;
    padding: 0;
    font-size: 6px;
    justify-content: space-between;
    color: var(--text-main);
    border: none;
}

.visual-btn-small {
    background: var(--primary);
    padding: 2px 4px;
    border-radius: 2px;
    color: white;
}

.model-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.model-info h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.model-info p {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.model-features {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.model-features span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 4px 8px;
    border-radius: 6px;
    color: var(--text-muted);
}

.model-features span i {
    width: 12px;
    height: 12px;
}

.model-actions {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 10px;
}

/* Contact & Consultation */
.contact {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.contact-glow {
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(95, 117, 107, 0.05) 0%, rgba(95, 117, 107, 0) 70%);
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-info>p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.c-method {
    display: flex;
    align-items: center;
    gap: 16px;
}

.method-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-icon i {
    width: 20px;
    height: 20px;
    color: var(--primary-light);
}

.c-method h4 {
    font-size: 1rem;
    font-weight: 600;
}

.c-method p {
    font-size: 0.9rem;
}

.whatsapp-card {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(5, 150, 105, 0.02) 100%);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wa-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    background: rgba(16, 185, 129, 0.1);
    padding: 4px 10px;
    border-radius: 100px;
    margin-bottom: 10px;
    width: fit-content;
}

.pulse-green {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    display: inline-block;
    animation: pulseG 1.5s infinite alternate;
}

@keyframes pulseG {
    0% {
        transform: scale(0.9);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.3);
        opacity: 1;
    }
}

.wa-content h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.wa-content p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* Forms */
.contact-form-container {
    position: relative;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

input,
select,
textarea {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    padding: 12px 16px;
    color: var(--text-main);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: var(--transition-fast);
    outline: none;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(197, 168, 128, 0.2);
    background: rgba(0, 0, 0, 0.04);
}

select option {
    background: #ffffff;
    color: var(--text-main);
}

textarea {
    resize: vertical;
}

.submit-btn {
    margin-top: 10px;
}

/* Form Success State styling */
.success-message {
    display: none;
    position: absolute;
    inset: 0;
    background: var(--bg-dark);
    border-radius: 20px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    z-index: 5;
}

.success-message.active {
    display: flex;
    animation: fadeIn 0.4s ease-out;
}

.success-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 2px solid rgba(16, 185, 129, 0.2);
}

.success-icon i {
    width: 28px;
    height: 28px;
}

.success-message h4 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.success-message p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
    max-width: 320px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Footer Section */
.footer {
    background-color: var(--bg-darker);
    border-top: 1px solid var(--card-border);
    padding: 60px 0 30px 0;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-brand p {
    color: var(--text-muted);
    margin-top: 16px;
    font-size: 0.92rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-muted);
}

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

.footer-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.06);
    margin-bottom: 30px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Interactive Preview Modal Dialog */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(43, 41, 39, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: 20px;
    width: 100%;
    max-width: 960px;
    max-height: 90vh;
    box-shadow: var(--shadow-lg);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: modalSlide 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

@keyframes modalSlide {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-fast);
}

.modal-close:hover {
    color: var(--text-main);
}

.modal-body {
    padding: 40px;
    overflow-y: auto;
}

/* Mock Website Preview Styles (Inside Modal) */
.mock-browser {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    background: #fbfbfa;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-top: 20px;
}

.browser-header {
    background: #f5f4ef;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.browser-url {
    background: #ffffff;
    font-size: 0.75rem;
    color: var(--text-muted);
    padding: 4px 12px;
    border-radius: 6px;
    flex-grow: 1;
    max-width: 320px;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.browser-iframe-container {
    width: 100%;
    height: 480px;
    background: #f5f4ef;
    position: relative;
    overflow: hidden;
}

.browser-iframe {
    width: 100%;
    height: 100%;
    border: none;
    background: #ffffff;
}

/* Custom Scrollbar for premium feel */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 100px;
}

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


/* Responsive Breakpoints */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 20px;
        overflow: hidden;
    }

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

@media (max-width: 768px) {
    body {
        font-size: 15px;
    }

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

    .hero-title {
        font-size: 2.5rem;
    }

    /* Mobile Menu Toggle */
    .mobile-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #f5f4ef;
        border-bottom: 1px solid var(--card-border);
        flex-direction: column;
        padding: 30px 24px;
        gap: 20px;
        align-items: stretch;
        display: none;
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        display: flex;
        animation: slideDown 0.3s ease-out forwards;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

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

    .btn-nav {
        display: none;
        /* Hide from navbar actions, visible in hamburger list */
    }

    .nav-btn-mobile {
        display: inline-flex;
        background: var(--gradient-primary);
        color: white;
        padding: 12px;
        border-radius: 10px;
        text-align: center;
        justify-content: center;
        font-weight: 600;
    }

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

    .showcase-filters {
        gap: 8px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.82rem;
    }

    /* Disable heavy backdrop filters on mobile to prevent scrolling glitches */
    .card,
    .service-card,
    .navbar,
    .modal-overlay {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    .navbar {
        background: rgba(252, 251, 250, 0.98);
    }

    .card,
    .service-card {
        background: rgba(255, 255, 255, 0.95);
    }

    /* Tablet device scale adjustment */
    .mockup-container {
        width: 100%;
        max-width: 380px;
        height: 270px;
        margin: 0 auto;
    }

    .laptop-mockup {
        max-width: 320px;
    }

    .phone-mockup {
        width: 110px;
        height: 210px;
        bottom: -5px;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-num {
        font-size: 1.4rem;
    }

    .mockup-container {
        width: 100%;
        max-width: 290px;
        height: 210px;
        margin: 0 auto;
    }

    .laptop-mockup {
        max-width: 250px;
        top: 10px;
    }

    .phone-mockup {
        width: 90px;
        height: 170px;
        bottom: -5px;
    }

    .screen-bar {
        height: 16px;
        padding: 0 6px;
        gap: 10px;
    }

    .dots span {
        width: 4px;
        height: 4px;
    }

    .url-bar {
        height: 10px;
        font-size: 6px;
    }

    .demo-site-nav {
        padding-bottom: 4px;
    }

    .demo-logo {
        font-size: 7px;
    }

    .demo-btn {
        font-size: 5px;
        padding: 2px 4px;
    }

    .demo-hero h3 {
        font-size: 9px;
        margin-bottom: 2px;
    }

    .demo-hero p {
        font-size: 5px;
        margin-bottom: 4px;
    }

    .demo-products {
        gap: 3px;
    }

    .demo-p-card {
        padding: 3px;
        font-size: 5px;
        width: 40px;
    }

    .laptop-base {
        height: 6px;
    }

    .laptop-base::after {
        width: 40px;
        height: 2px;
        bottom: 2px;
    }

    .phone-camera {
        width: 24px;
        height: 6px;
    }

    .phone-content {
        padding: 4px;
    }

    .phone-header {
        font-size: 5px;
        padding-bottom: 3px;
    }

    .phone-header i {
        width: 6px;
        height: 6px;
    }

    .phone-promo {
        padding: 4px;
        margin: 6px 0;
    }

    .phone-promo span {
        font-size: 6px;
    }

    .phone-promo small {
        font-size: 4px;
    }

    .phone-nav-bar i {
        width: 8px;
        height: 8px;
    }

    .model-actions {
        grid-template-columns: 1fr;
    }

    .card {
        padding: 20px;
    }
}

/* Hover media query to disable hover transforms on touch screens, preventing scroll stutter */
@media (hover: hover) {
    .filter-btn:hover {
        background: rgba(0, 0, 0, 0.06);
        border-color: rgba(0, 0, 0, 0.12);
        color: var(--text-main);
    }

    .model-card:hover {
        transform: translate3d(0, -6px, 0);
        border-color: var(--card-border-glow);
        box-shadow: var(--shadow-glow);
    }

    .model-card:hover .model-img {
        transform: translate3d(0, 0, 0) scale(1.05);
    }

    .model-card:hover .visual-inner {
        transform: translate3d(0, 0, 0) scale(1.03);
    }

    .service-card:hover {
        transform: translateY(-8px);
        border-color: var(--card-border-glow);
        box-shadow: var(--shadow-glow);
    }
}