@charset "UTF-8";

/* ==========================================================================
   Bespoke UI/UX Design System for Qaid Company
   ========================================================================== */

:root {
    /* Color Palette */
    --clr-gold: #0EA5E9; /* Vibrant Sky Blue Accent */
    --clr-gold-dark: #0284C7;
    --clr-gold-light: rgba(14, 165, 233, 0.12);
    
    --clr-navy: #0B1121; /* Ultra Deep Sky/Slate for Headings */
    --clr-navy-light: #1E293B;
    --clr-navy-muted: #475569; /* Slate for highly legible body text */
    
    --clr-gray-100: #F8FAFC;
    --clr-gray-200: #F1F5F9;
    --clr-gray-300: #E2E8F0;
    --clr-gray-600: #475569;
    
    --clr-white: #FFFFFF;
    --clr-whatsapp: #25D366;
    --clr-danger: #EF4444;

    /* Fluid Typography Scale */
    --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
    --text-sm: clamp(0.875rem, 0.8rem + 0.38vw, 1rem);
    --text-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
    --text-lg: clamp(1.125rem, 0.95rem + 0.88vw, 1.5rem);
    --text-xl: clamp(1.5rem, 1.2rem + 1.5vw, 2.25rem);
    --text-2xl: clamp(2.25rem, 1.8rem + 2.25vw, 3.5rem);
    --text-display: clamp(3rem, 2rem + 5vw, 5.5rem);

    /* Spacing Rhythm */
    --space-2: 0.5rem;
    --space-4: 1rem;
    --space-8: 2rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-24: 6rem;
    --space-32: 8rem;

    /* Effects */
    --shadow-soft: 0 10px 40px -10px rgba(15, 23, 42, 0.08);
    --shadow-hover: 0 20px 50px -15px rgba(15, 23, 42, 0.15);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-blur: blur(12px);
    
    /* Layout */
    --max-width: 1400px;
    --content-width: 1100px;
    
    /* Animation */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --transition: 0.4s var(--ease-out-expo);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', 'Tajawal', sans-serif;
    color: var(--clr-navy-muted);
    background-color: var(--clr-gray-100);
    line-height: 1.7;
    font-size: var(--text-base);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--clr-navy);
    line-height: 1.2;
    font-weight: 800;
}

p {
    margin-bottom: var(--space-4);
    max-width: 65ch; /* Optimal reading width */
}

a {
    text-decoration: none;
    color: inherit;
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* Containers */
.container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
}
.container-narrow {
    width: 90%;
    max-width: var(--content-width);
    margin: 0 auto;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 90px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    transition: var(--transition);
}

.logo {
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--clr-navy);
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo span {
    color: var(--clr-gold);
}

.logo-icon {
    color: var(--clr-gold);
    font-size: 2.2rem;
}

.logo-text-stack {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    line-height: 1;
}

.logo-main-name {
    font-size: 1.2em;
    line-height: 1;
}

.logo-sub-name {
    font-size: 0.38em;
    color: var(--clr-gray-600);
    font-weight: 700;
    margin-top: 4px;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    gap: var(--space-4);
    align-items: center;
}

.nav-links a {
    font-weight: 600;
    color: var(--clr-navy-muted);
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--clr-gold);
    transition: width 0.3s ease;
}

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

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

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--clr-navy);
    background: none;
    border: none;
    cursor: pointer;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 0; /* Sharp, custom look instead of generic pills */
    font-weight: 700;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.1);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--ease-out-expo);
    z-index: -1;
}

.btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-primary {
    background: var(--clr-gold);
    color: var(--clr-white);
}

.btn-primary:hover {
    box-shadow: 10px 10px 0 var(--clr-gold-dark);
    transform: translate(-5px, -5px);
}

.btn-whatsapp {
    background: var(--clr-whatsapp);
    color: var(--clr-white);
}

.btn-whatsapp:hover {
    box-shadow: 10px 10px 0 rgba(37, 211, 102, 0.3);
    transform: translate(-5px, -5px);
}

.btn-outline {
    background: transparent;
    color: var(--clr-navy);
    border: 2px solid var(--clr-navy);
}

.btn-outline:hover {
    background: var(--clr-navy);
    color: var(--clr-white);
}

/* ==========================================================================
   Hero Section (Asymmetrical Layout)
   ========================================================================== */
.hero {
    padding-top: 150px;
    padding-bottom: var(--space-24);
    background-color: var(--clr-gray-100);
    position: relative;
    overflow: hidden;
}

/* Decorative architectural background lines */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-12);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    padding-right: 5%;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--clr-gold-light);
    color: var(--clr-gold-dark);
    font-weight: 700;
    font-size: var(--text-sm);
    margin-bottom: var(--space-8);
    border-left: 4px solid var(--clr-gold);
}

.hero-title {
    font-size: var(--text-display);
    margin-bottom: var(--space-8);
    letter-spacing: -1px;
}

.hero-title span {
    color: var(--clr-gold);
    display: block;
    position: relative;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 0;
    width: 100%;
    height: 30%;
    background: var(--clr-gold-light);
    z-index: -1;
    transform: rotate(-1deg);
}

.hero-desc {
    font-size: var(--text-lg);
    color: var(--clr-gray-600);
    margin-bottom: var(--space-12);
    max-width: 50ch;
}

.hero-actions {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

/* Image masking */
.hero-visual {
    position: relative;
    height: 100%;
    min-height: 600px;
}

.hero-image-mask {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
    background: var(--clr-navy);
}

.hero-image-mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.hero-image-mask:hover img {
    transform: scale(1.02);
}

.floating-availability {
    position: absolute;
    bottom: 10%;
    left: -10%;
    background: var(--clr-white);
    padding: 1.5rem;
    box-shadow: var(--shadow-hover);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 10;
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background-color: var(--clr-whatsapp);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==========================================================================
   Editorial Split Section (About)
   ========================================================================== */
.editorial-section {
    padding: var(--space-32) 0;
    background: var(--clr-white);
}

.editorial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.editorial-images {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.img-main {
    width: 80%;
    height: 80%;
    object-fit: cover;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}

.img-offset {
    width: 60%;
    height: 60%;
    object-fit: cover;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    border: 10px solid var(--clr-white);
    box-shadow: var(--shadow-soft);
}

.editorial-content h2 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-8);
}

.editorial-content p {
    font-size: var(--text-lg);
    margin-bottom: var(--space-4);
}

.stat-callout {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-top: var(--space-8);
    padding-top: var(--space-8);
    border-top: 1px solid var(--clr-gray-300);
}

.stat-number {
    font-size: var(--text-display);
    color: var(--clr-gold);
    font-weight: 900;
    line-height: 1;
}

.stat-text {
    font-size: var(--text-sm);
    color: var(--clr-gray-600);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

/* ==========================================================================
   Dark Numbered Section (Importance)
   ========================================================================== */
.dark-list-section {
    background: var(--clr-navy);
    color: var(--clr-white);
    padding: var(--space-32) 0;
}

.dark-list-section .section-header {
    max-width: 800px;
    margin-bottom: var(--space-24);
}

.dark-list-section h2 {
    color: var(--clr-white);
    font-size: var(--text-2xl);
}

.dark-list-section h2 span {
    color: var(--clr-gold);
}

.dark-list-section p {
    font-size: var(--text-lg);
    color: var(--clr-gray-300);
}

.staggered-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-12);
    counter-reset: issue-counter;
}

.staggered-item {
    position: relative;
    padding-top: var(--space-8);
    border-top: 2px solid rgba(255,255,255,0.1);
}

.staggered-item::before {
    counter-increment: issue-counter;
    content: "0" counter(issue-counter);
    position: absolute;
    top: -2.5rem;
    left: 0; /* RTL adjusted below if needed, but numbers are universal */
    font-size: var(--text-display);
    font-weight: 900;
    color: rgba(255,255,255,0.05);
    z-index: 0;
}

.staggered-item h3 {
    color: var(--clr-gold);
    font-size: var(--text-lg);
    margin-bottom: var(--space-4);
    position: relative;
    z-index: 1;
}

.staggered-item p {
    color: var(--clr-gray-300);
    font-size: var(--text-base);
    margin: 0;
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   Zig-Zag Services Section
   ========================================================================== */
.zig-zag-section {
    padding: var(--space-32) 0;
    background: var(--clr-gray-100);
}

.zig-zag-row {
    display: flex;
    align-items: center;
    gap: var(--space-16);
    margin-bottom: var(--space-24);
}

.zig-zag-row:nth-child(even) {
    flex-direction: row-reverse;
}

.zz-image {
    flex: 1;
    position: relative;
}

.zz-image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    box-shadow: var(--shadow-hover);
}

.zz-image::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 20px;
    right: -20px;
    border: 2px solid var(--clr-gold);
    z-index: -1;
}

.zig-zag-row:nth-child(even) .zz-image::after {
    right: auto;
    left: -20px;
}

.zz-content {
    flex: 1;
    padding: var(--space-8);
}

.zz-icon {
    font-size: 2.5rem;
    color: var(--clr-navy);
    margin-bottom: var(--space-4);
}

.zz-content h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-4);
}

.zz-content p {
    color: var(--clr-gray-600);
}

/* ==========================================================================
   Shutter Section
   ========================================================================== */
.glass-panel-section {
    position: relative;
    padding: var(--space-32) 0;
    display: flex;
    align-items: center;
    background: var(--clr-gray-200);
}

.glass-card {
    position: relative;
    background: var(--clr-white);
    padding: var(--space-12);
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-left: 6px solid var(--clr-gold);
    box-shadow: var(--shadow-soft);
    z-index: 1;
}

.glass-card h2 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-4);
}

.glass-card ul {
    margin-top: var(--space-4);
}

.glass-card li {
    padding-right: 1.5rem;
    position: relative;
    margin-bottom: var(--space-2);
    color: var(--clr-navy-muted);
}

.glass-card li::before {
    content: '■';
    color: var(--clr-gold);
    position: absolute;
    right: 0;
    top: 2px;
    font-size: 0.8rem;
}

/* ==========================================================================
   Timeline & Bespoke Icon List (When & Why)
   ========================================================================== */
.split-features {
    padding: var(--space-32) 0;
    background: var(--clr-white);
}

.split-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-24);
}

.timeline {
    position: relative;
    padding-right: 2rem;
    border-right: 2px dashed var(--clr-gray-300);
}

.timeline-item {
    position: relative;
    margin-bottom: var(--space-8);
}

.timeline-item::before {
    content: '';
    position: absolute;
    right: -2.4rem;
    top: 5px;
    width: 16px;
    height: 16px;
    background: var(--clr-white);
    border: 4px solid var(--clr-danger);
    border-radius: 50%;
}

.timeline-item h4 {
    font-size: var(--text-lg);
    color: var(--clr-navy);
}

.icon-list-bespoke {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
}

.icon-list-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
}

.icon-box-custom {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--clr-navy);
    color: var(--clr-gold);
    font-size: 1.5rem;
    transform: rotate(45deg);
}

.icon-box-custom i {
    transform: rotate(-45deg);
}

.icon-list-text h4 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-2);
}

/* ==========================================================================
   Masonry Gallery
   ========================================================================== */
.gallery-section {
    padding: var(--space-32) 0;
    background: var(--clr-gray-100);
}

.gallery-tabs {
    display: flex;
    justify-content: flex-start;
    gap: var(--space-4);
    margin-bottom: var(--space-12);
    border-bottom: 2px solid var(--clr-gray-300);
    padding-bottom: var(--space-4);
}

.tab-btn {
    background: none;
    border: none;
    font-size: var(--text-lg);
    font-family: inherit;
    font-weight: 700;
    color: var(--clr-gray-600);
    cursor: pointer;
    position: relative;
    padding: 0 0.5rem;
}

.tab-btn.active {
    color: var(--clr-navy);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: calc(var(--space-4) * -1 - 2px);
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--clr-gold);
}

.gallery-content {
    display: none;
    animation: fadeUp 0.6s var(--ease-out-expo);
}
.gallery-content.active {
    display: block;
}

/* True CSS Masonry */
.masonry-grid {
    column-count: 3;
    column-gap: var(--space-4);
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: var(--space-4);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--clr-gray-200);
}

.masonry-item img, .masonry-item video {
    width: 100%;
    display: block;
    opacity: 0.9;
    transition: var(--transition);
}

.masonry-item:hover img, .masonry-item:hover video {
    opacity: 1;
    transform: scale(1.03);
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: rgba(255,255,255,0.8);
    pointer-events: none;
}

/* Lightbox */
.lightbox {
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(15, 23, 42, 0.98); z-index: 9999; justify-content: center; align-items: center;
}
.lightbox.active { display: flex; animation: fadeUp 0.3s ease; }
.lightbox-content-wrapper { position: relative; max-width: 90%; max-height: 90%; }
.lightbox img, .lightbox video { max-width: 100%; max-height: 85vh; display: none; box-shadow: var(--shadow-hover); }
.close-lightbox { position: absolute; top: 20px; right: 40px; color: white; font-size: 50px; cursor: pointer; transition: 0.3s; z-index: 10000; font-weight: 300; }
.close-lightbox:hover { color: var(--clr-gold); transform: rotate(90deg); }

/* ==========================================================================
   Sticky Sidebar FAQ
   ========================================================================== */
.faq-section {
    padding: var(--space-32) 0;
    background: var(--clr-white);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-16);
    align-items: start;
}

.faq-title-area {
    position: sticky;
    top: 120px;
}

.faq-title-area h2 {
    font-size: var(--text-display);
    line-height: 1;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
}

.faq-item {
    border-bottom: 1px solid var(--clr-gray-300);
    padding-bottom: var(--space-4);
}

.faq-item h4 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-2);
    color: var(--clr-navy);
}

.faq-item p {
    color: var(--clr-gray-600);
    font-size: var(--text-lg);
}

/* ==========================================================================
   Keywords Layout
   ========================================================================== */
.keywords-section {
    padding: var(--space-16) 0;
    background: var(--clr-navy);
    color: var(--clr-white);
}

.keywords-section h3 {
    color: var(--clr-white);
    margin-bottom: var(--space-8);
    text-align: center;
}

.keyword-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    justify-content: center;
}

.keyword-pill {
    padding: 0.5rem 1.2rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px; /* One place where pills make sense */
    font-size: var(--text-sm);
    color: var(--clr-gray-300);
    transition: var(--transition);
}

.keyword-pill:hover {
    background: var(--clr-white);
    color: var(--clr-navy);
    border-color: var(--clr-white);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: var(--clr-navy-light);
    color: var(--clr-gray-300);
    padding: var(--space-16) 0 var(--space-8);
    text-align: center;
}

.footer-title {
    color: var(--clr-white);
    font-size: var(--text-2xl);
    margin-bottom: var(--space-4);
}

.footer-phone {
    font-size: var(--text-display);
    font-weight: 900;
    color: var(--clr-gold);
    display: inline-block;
    margin: var(--space-8) 0;
    letter-spacing: 2px;
}

/* ==========================================================================
   Floating Actions & Bottom Bar
   ========================================================================== */
.floating-actions {
    position: fixed;
    bottom: 30px;
    left: 30px; /* RTL logic puts floating on left visually */
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 100;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: var(--shadow-hover);
    transition: transform 0.3s;
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-5px);
}

.floating-call { background: var(--clr-navy); }
.floating-wa { background: var(--clr-whatsapp); }

.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    width: 100%;
    background: var(--clr-white);
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 10px;
}

.btn-mobile-call {
    display: block;
    text-align: center;
    background: var(--clr-navy);
    color: var(--clr-white);
    padding: 15px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
}

/* ==========================================================================
   Animations & Responsive
   ========================================================================== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
    .hero-grid, .editorial-grid, .split-features-grid, .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-visual {
        min-height: 400px;
    }
    
    .hero-image-mask {
        clip-path: none;
        border-radius: 0;
    }
    
    .faq-title-area {
        position: static;
        margin-bottom: var(--space-8);
    }
    
    .masonry-grid {
        column-count: 2;
    }
}

@media (max-width: 768px) {
    .navbar {
        height: 80px;
    }
    
    .logo {
        font-size: 1.5rem;
        gap: 8px;
    }
    
    .logo-icon {
        font-size: 1.8rem;
    }
    
    .logo-sub-name {
        font-size: 0.32em;
        white-space: normal;
        max-width: 160px;
        line-height: 1.4;
        margin-top: 4px;
    }

    .nav-phone-btn { display: none; }
    
    .mobile-menu-toggle { display: block; }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        background: var(--clr-white);
        flex-direction: column;
        padding: var(--space-4);
        box-shadow: var(--shadow-soft);
        text-align: center;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .hero {
        padding-top: 120px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .zig-zag-row, .zig-zag-row:nth-child(even) {
        flex-direction: column;
    }
    
    .glass-card {
        margin: 0;
        border-left: none;
        border-top: 6px solid var(--clr-gold);
    }
    
    .masonry-grid {
        column-count: 1;
    }
    
    .floating-actions { display: none; }
    .mobile-bottom-bar { display: block; }
    .footer { padding-bottom: 100px; }
}