/* ==========================================================================
   Quickmenders24x7 Design System & Stylesheet
   ========================================================================== */

/* Variables & Theme */
:root {
    --bg-dark: #070a13;
    --bg-darker: #04060c;
    --card-bg: rgba(15, 23, 42, 0.55);
    --card-border: rgba(255, 255, 255, 0.08);
    
    /* Brand Accents */
    --accent-blue: #0ea5e9;       /* Robotics & Technology */
    --accent-rose: #f43f5e;       /* Decoration & Art */
    --accent-blue-green: #14b8a6; /* 3D Printing & Prototyping */
    
    /* Text Colors */
    --text-light: #f8fafc;
    --text-muted: #94a3b8;
    --text-dark: #0f172a;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Heights */
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-blue) var(--bg-dark);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

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

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

.highlight {
    color: var(--accent-rose);
    background: linear-gradient(135deg, var(--accent-rose), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-rose { color: var(--accent-rose); }
.text-blue { color: var(--accent-blue); }
.text-blue-green { color: var(--accent-blue-green); }

.badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: rgba(244, 63, 94, 0.1);
    color: var(--accent-rose);
    border: 1px solid rgba(244, 63, 94, 0.2);
    margin-bottom: 20px;
}

.badge-rose {
    background: rgba(244, 63, 94, 0.15);
    color: var(--accent-rose);
    border-color: rgba(244, 63, 94, 0.25);
}

.badge-blue {
    background: rgba(14, 165, 233, 0.15);
    color: var(--accent-blue);
    border-color: rgba(14, 165, 233, 0.25);
}

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

.btn-small {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.btn-whatsapp {
    background-color: #25d366;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-phone {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-blue-green));
    color: white;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.btn-phone:hover {
    background: linear-gradient(135deg, #0284c7, #0d9488);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.btn-submit {
    background: linear-gradient(135deg, var(--accent-rose), var(--accent-blue));
    color: white;
    width: 100%;
    box-shadow: 0 4px 15px rgba(244, 63, 94, 0.25);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 63, 94, 0.35);
}

/* Sections */
section {
    padding: 100px 0;
    position: relative;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(to right, var(--text-light) 40%, var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-divider {
    height: 4px;
    width: 80px;
    background: linear-gradient(to right, var(--accent-rose), var(--accent-blue));
    border-radius: 2px;
    margin: 0 auto 20px auto;
}

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

/* Navigation Header */
.main-header {
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(7, 10, 19, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--card-border);
    transition: var(--transition-normal);
}

.main-header.scrolled {
    height: 70px;
    background-color: rgba(4, 6, 12, 0.9);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.header-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 48px;
    width: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-blue);
    box-shadow: 0 0 15px rgba(14, 165, 233, 0.2);
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-light);
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-light);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--accent-rose), var(--accent-blue));
    transition: var(--transition-normal);
}

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

.header-ctas {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-light);
    border-radius: 2px;
    transition: var(--transition-normal);
}

/* Secondary Page Header Banner */
.page-header-banner {
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 60px;
    background-color: var(--bg-darker);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--card-border);
}

.page-header-banner .hero-bg-glow {
    top: -50%;
    right: 10%;
    width: 50%;
    height: 150%;
}

.page-header-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 10px;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.breadcrumbs a:hover {
    color: var(--text-light);
}

/* Hero Section (Home Page) */
.hero-section {
    min-height: 100vh;
    padding-top: calc(var(--header-height) + 40px);
    display: flex;
    align-items: center;
    background-color: var(--bg-darker);
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, rgba(244, 63, 94, 0.05) 50%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

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

.hero-content {
    max-width: 650px;
}

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

.accent-rose {
    color: var(--accent-rose);
    text-shadow: 0 0 30px rgba(244, 63, 94, 0.2);
}

.accent-blue {
    color: var(--accent-blue);
    text-shadow: 0 0 30px rgba(14, 165, 233, 0.2);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-card {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glowing-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-rose), var(--accent-blue));
    opacity: 0.15;
    filter: blur(40px);
    animation: rotateGlow 15s linear infinite;
}

.hero-logo {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    z-index: 3;
    border: 4px solid var(--card-border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 50px rgba(14, 165, 233, 0.2);
    animation: float 6s ease-in-out infinite;
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.wave-divider .shape-fill {
    fill: var(--bg-dark);
}

/* Animations */
@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
    z-index: 1;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.card-glow {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.1;
    transition: var(--transition-normal);
    pointer-events: none;
}

.card-glow.rose { background-color: var(--accent-rose); }
.card-glow.blue { background-color: var(--accent-blue); }
.card-glow.blue-green { background-color: var(--accent-blue-green); }

.service-card:hover .card-glow {
    opacity: 0.25;
    transform: scale(1.2);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.icon-rose { color: var(--accent-rose); border-color: rgba(244, 63, 94, 0.2); }
.icon-blue { color: var(--accent-blue); border-color: rgba(14, 165, 233, 0.2); }
.icon-blue-green { color: var(--accent-blue-green); border-color: rgba(20, 184, 166, 0.2); }

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text-light);
}

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

.service-list {
    list-style: none;
    margin-bottom: 24px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Detailed Information Grids for Sub-pages */
.details-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.details-row.reverse {
    direction: rtl;
}

.details-row.reverse .details-text-content {
    direction: ltr;
}

.details-img-box {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--card-border);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.details-img-box img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.details-text-content h3 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.details-text-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.details-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.details-feat-card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 20px;
    border-radius: 10px;
}

.details-feat-card i {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.details-feat-card h4 {
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.details-feat-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Specifications Grid */
.tech-specs-section {
    background-color: var(--bg-darker);
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
}

.specs-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.specs-box {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 30px;
}

.specs-box h3 {
    font-size: 1.4rem;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.specs-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 12px;
}

.spec-label {
    font-weight: 600;
    color: var(--text-light);
}

.spec-value {
    color: var(--text-muted);
    text-align: right;
}

/* FAQs Section */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    padding: 24px;
}

.faq-question {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-light);
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.faq-question i {
    color: var(--accent-blue);
    margin-top: 4px;
}

.faq-answer {
    color: var(--text-muted);
    padding-left: 26px;
    font-size: 0.95rem;
}

/* Reels Section */
.reels-section {
    background-color: var(--bg-darker);
}

.reels-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.reels-container {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 20px 0;
    width: 100%;
    scrollbar-width: none; /* Hide standard scrollbar */
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}

.reels-container::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome/Safari */
}

.reel-card {
    flex: 0 0 280px;
    height: 480px;
    scroll-snap-align: center;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--card-border);
    background-color: #000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: var(--transition-normal);
}

.reel-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.reel-video-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.reel-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.reel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px 20px 20px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    color: white;
    z-index: 2;
}

.reel-badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    background-color: var(--accent-blue);
}

.reel-card[data-video-index="1"] .reel-badge,
.reel-card[data-video-index="5"] .reel-badge,
.reel-card[data-video-index="8"] .reel-badge,
.reel-card[data-video-index="11"] .reel-badge {
    background-color: var(--accent-rose);
}

.reel-card[data-video-index="3"] .reel-badge,
.reel-card[data-video-index="6"] .reel-badge,
.reel-card[data-video-index="9"] .reel-badge,
.reel-card[data-video-index="12"] .reel-badge {
    background-color: var(--accent-blue-green);
}

.reel-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 1.3;
}

.reel-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

.reel-mute-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: var(--transition-fast);
}

.reel-mute-btn:hover {
    background: rgba(0, 0, 0, 0.75);
    transform: scale(1.05);
}

.play-state-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.5);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    opacity: 0;
    pointer-events: none;
    z-index: 4;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.play-state-indicator.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.reel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(15, 23, 42, 0.8);
    border: 1px solid var(--card-border);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition-normal);
}

.reel-nav-btn:hover {
    background-color: var(--accent-blue);
    border-color: var(--accent-blue);
    transform: translateY(-50%) scale(1.05);
}

.prev-btn { left: -25px; }
.next-btn { right: -25px; }

/* Gallery Section */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--card-border);
    color: var(--text-muted);
    transition: var(--transition-normal);
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--accent-blue);
    border-color: var(--accent-blue);
    color: white;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.25);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1;
    background-color: #0b0f19;
    border: 1px solid var(--card-border);
    cursor: pointer;
    transition: var(--transition-normal);
}

.gallery-item.hidden {
    display: none;
}

.gallery-img-box {
    width: 100%;
    height: 100%;
    position: relative;
}

.gallery-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 10, 19, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transition: var(--transition-normal);
}

.gallery-item:hover .gallery-img-box img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-item-hover {
    opacity: 1;
}

.gallery-item-cat {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: 4px;
    background-color: var(--accent-rose);
}

.gallery-item[data-category="robotics"] .gallery-item-cat {
    background-color: var(--accent-blue);
}

.gallery-item[data-category="3dprint"] .gallery-item-cat {
    background-color: var(--accent-blue-green);
}

.gallery-item-zoom {
    font-size: 1.8rem;
    color: white;
    transform: translateY(10px);
    transition: var(--transition-normal);
}

.gallery-item:hover .gallery-item-zoom {
    transform: translateY(0);
}

/* About Section */
.about-section {
    overflow: hidden;
}

.about-bg-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(244, 63, 94, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.about-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    display: flex;
    justify-content: center;
}

.image-stack {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 400px;
}

.stack-img {
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    position: absolute;
}

.main-img {
    width: 75%;
    height: 75%;
    top: 0;
    left: 0;
    z-index: 2;
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.secondary-img {
    width: 70%;
    height: 70%;
    bottom: 0;
    right: 0;
    z-index: 1;
    border: 3px solid var(--accent-blue);
    box-shadow: 0 15px 35px rgba(14, 165, 233, 0.2);
}

.about-lead {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 500;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 1rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-box {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.stat-num {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-rose), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* Contact Section */
.contact-section {
    background-color: var(--bg-darker);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.info-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 40px;
    height: 100%;
}

.info-card h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.info-desc {
    color: var(--text-muted);
    margin-bottom: 32px;
}

.info-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-item {
    display: flex;
    gap: 20px;
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    background-color: rgba(14, 165, 233, 0.1);
    color: var(--accent-blue);
    border: 1px solid rgba(14, 165, 233, 0.2);
    flex-shrink: 0;
}

.info-item:text-rose .info-icon,
.info-item:nth-child(2) .info-icon {
    background-color: rgba(244, 63, 94, 0.1);
    color: var(--accent-rose);
    border-color: rgba(244, 63, 94, 0.2);
}

.info-text h4 {
    font-size: 1.05rem;
    margin-bottom: 4px;
    color: var(--text-light);
}

.info-text p, .info-text a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.info-text a:hover {
    color: var(--text-light);
}

.contact-form-box {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 40px;
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

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

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    background-color: rgba(4, 6, 12, 0.6);
    border: 1px solid var(--card-border);
    color: var(--text-light);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 10px rgba(14, 165, 233, 0.15);
}

.form-group select option {
    background-color: var(--bg-darker);
    color: var(--text-light);
}

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

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-brand .logo-box {
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 380px;
}

.footer-links h4, .footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-light);
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.footer-links a:hover {
    color: var(--text-light);
    padding-left: 5px;
}

.footer-contact p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact p i {
    color: var(--accent-blue);
}

.footer-bottom {
    border-top: 1px solid var(--card-border);
    padding: 30px 0;
}

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

.footer-bottom a {
    color: var(--text-light);
}

/* Custom Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(4, 6, 12, 0.95);
    z-index: 2000;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 85%;
    max-height: 75vh;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
    border-radius: 8px;
    overflow: hidden;
}

.lightbox-content img, .lightbox-content video {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 3rem;
    color: var(--text-muted);
    background: transparent;
    border: none;
    cursor: pointer;
    line-height: 1;
    z-index: 2010;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    color: white;
}

.lightbox-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 2010;
    transition: var(--transition-normal);
}

.lightbox-nav-btn:hover {
    background-color: var(--accent-blue);
    border-color: var(--accent-blue);
    color: white;
}

.lightbox-prev { left: 40px; }
.lightbox-next { right: 40px; }

.lightbox-caption {
    margin-top: 24px;
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 60%;
    text-align: center;
    font-weight: 500;
}

/* Status Modal */
.status-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 3000;
    display: none;
    justify-content: center;
    align-items: center;
}

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

.status-modal-content {
    background-color: var(--bg-dark);
    border: 1px solid var(--card-border);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    max-width: 420px;
    width: 90%;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform var(--transition-normal);
}

.status-modal.active .status-modal-content {
    transform: scale(1);
}

.status-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.status-icon.success {
    color: #10b981;
}

.status-modal h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.status-modal p {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-image {
        order: 2;
    }
    
    .about-content {
        order: 1;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .details-row.reverse {
        direction: ltr;
    }
    
    .specs-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Desktop styles: Hide mobile nav bar by default */
.mobile-bottom-nav {
    display: none;
}

@media (max-width: 768px) {
    section {
        padding: 70px 0;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--bg-darker);
        padding: 40px 24px;
        transition: var(--transition-normal);
        border-top: 1px solid var(--card-border);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
    
    .nav-link {
        font-size: 1.2rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .prev-btn { left: 10px; }
    .next-btn { right: 10px; }
    
    .lightbox-prev, .lightbox-next {
        width: 40px;
        height: 40px;
    }
    .lightbox-prev { left: 15px; }
    .lightbox-next { right: 15px; }
    .lightbox-caption {
        max-width: 80%;
    }

    .page-header-title {
        font-size: 2.2rem;
    }

    .details-features-grid {
        grid-template-columns: 1fr;
    }
    
    /* Mobile Bottom Navigation */
    body {
        padding-bottom: 70px;
    }
    
    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 64px;
        background-color: rgba(7, 10, 19, 0.85);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.5);
        z-index: 1500;
        justify-content: space-around;
        align-items: center;
        padding: 0 10px;
    }
    
    .mobile-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: var(--text-muted);
        font-size: 0.75rem;
        font-weight: 500;
        text-align: center;
        flex: 1;
        height: 100%;
        gap: 4px;
        transition: var(--transition-fast);
    }
    
    .mobile-nav-item i {
        font-size: 1.25rem;
        transition: var(--transition-fast);
    }
    
    .mobile-nav-item:hover, .mobile-nav-item.active {
        color: var(--text-light);
    }
    
    .mobile-nav-item.active i {
        color: var(--accent-blue);
        transform: translateY(-2px);
        text-shadow: 0 0 15px rgba(14, 165, 233, 0.4);
    }
    
    /* Active color accents for distinct pages */
    .mobile-nav-item.active[href="decoration.html"] i {
        color: var(--accent-rose);
        text-shadow: 0 0 15px rgba(244, 63, 94, 0.4);
    }
    
    .mobile-nav-item.active[href="about.html"] i {
        color: var(--accent-blue-green);
        text-shadow: 0 0 15px rgba(20, 184, 166, 0.4);
    }
    
    .mobile-nav-item.active[href="contact.html"] i {
        color: var(--accent-blue);
        text-shadow: 0 0 15px rgba(14, 165, 233, 0.4);
    }
}

