/* ==========================================================================
   Hyderabad Signages Premium Style System
   Design: Apple + Tesla + Architectural Luxury Aesthetic (Multi-Page Redesign)
   ========================================================================== */

/* --- Google Fonts & Variables --- */
:root {
    --bg-dark: #07070a;
    --bg-card: #0f0f14;
    --bg-card-hover: #14141a;
    --border-grey: #1a1a22;
    --border-glow-blue: rgba(0, 229, 255, 0.3);
    --border-glow-orange: rgba(255, 85, 0, 0.3);
    
    --text-white: #f8f9fa;
    --text-silver: #a5a9b5;
    --text-dark: #4f515a;
    
    /* Neon LED Glow Colors */
    --neon-orange: #ff5500;
    --neon-orange-rgb: 255, 85, 0;
    --neon-blue: #00e5ff;
    --neon-blue-rgb: 0, 229, 255;
    
    /* Glassmorphism */
    --glass-bg: rgba(10, 10, 14, 0.75);
    --glass-border: rgba(255, 255, 255, 0.04);
    --glass-shadow: rgba(0, 0, 0, 0.5);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

/* --- Reset & Base Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

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

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

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

ul {
    list-style: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: #1c1c24;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--neon-blue);
}

/* --- Common Components & Typography --- */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    margin-bottom: 60px;
    text-align: left; /* Left aligned headers for high-end feel */
}
.section-tagline {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--neon-blue);
    display: inline-block;
    margin-bottom: 12px;
}
.section-title {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 18px;
    text-transform: uppercase;
}
.title-bar {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-orange));
    margin-bottom: 24px;
    margin-left: 0; /* Left aligned title bars */
}
.section-description {
    font-size: 1.05rem;
    color: var(--text-silver);
    max-width: 800px;
    margin: 0;
    font-weight: 300;
}

/* --- Glow Typography & Borders --- */
.glow-text-orange {
    color: var(--text-white);
    text-shadow: 0 0 6px rgba(var(--neon-orange-rgb), 0.6),
                 0 0 15px rgba(var(--neon-orange-rgb), 0.3);
}
.glow-text-blue {
    color: var(--text-white);
    text-shadow: 0 0 6px rgba(var(--neon-blue-rgb), 0.6),
                 0 0 15px rgba(var(--neon-blue-rgb), 0.3);
}
.accent-orange-text {
    color: var(--neon-orange);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
}
.btn-primary {
    background: var(--neon-orange);
    color: var(--text-white);
    border: 1px solid var(--neon-orange);
    box-shadow: 0 4px 15px rgba(var(--neon-orange-rgb), 0.25);
}
.btn-primary:hover {
    background: transparent;
    color: var(--neon-orange);
    box-shadow: 0 6px 25px rgba(var(--neon-orange-rgb), 0.45);
}
.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 1px solid var(--text-white);
}
.btn-secondary:hover {
    background: var(--text-white);
    color: var(--bg-dark);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
}
.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 1px solid var(--border-grey);
}
.btn-outline:hover {
    border-color: var(--neon-blue);
    color: var(--neon-blue);
    box-shadow: 0 4px 15px rgba(var(--neon-blue-rgb), 0.2);
}
.btn-block {
    width: 100%;
}

/* --- Loading Screen --- */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}
.loader-container.loaded {
    opacity: 0;
    pointer-events: none;
}
.loader-content {
    text-align: center;
}
.loader-logo {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--text-white);
    margin-bottom: 24px;
    display: block;
}
.loader-bar-bg {
    width: 180px;
    height: 2px;
    background: var(--border-grey);
    margin: 0 auto 16px;
    border-radius: 2px;
    overflow: hidden;
}
.loader-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-orange));
    animation: loadProgress 1.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}
.loader-subtitle {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--text-dark);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

@keyframes loadProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* --- Navigation Header --- */
.navbar-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 990;
    border-bottom: 1px solid transparent;
    transition: var(--transition-smooth);
}
.navbar-header.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px var(--glass-shadow);
}
.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition-smooth);
}
.navbar-header.scrolled .nav-container {
    padding: 14px 24px;
}
.nav-logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 0.01em;
}
.nav-menu ul {
    display: flex;
    gap: 36px;
}
.nav-link {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-silver);
    padding: 8px 0;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-blue);
    transition: var(--transition-fast);
}
.nav-link:hover, .nav-link.active {
    color: var(--text-white);
}
.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}
.nav-btn-phone {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-btn-phone i {
    color: var(--neon-blue);
}
.nav-btn-phone:hover {
    color: var(--neon-blue);
}
.nav-btn-quote {
    background: var(--text-white);
    color: var(--bg-dark);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 10px 22px;
    border-radius: 3px;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}
.nav-btn-quote:hover {
    background: var(--neon-orange);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(var(--neon-orange-rgb), 0.35);
}
.mobile-toggle-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}
.mobile-toggle-btn .bar {
    width: 25px;
    height: 2px;
    background: var(--text-white);
    transition: var(--transition-fast);
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 130px; /* Safe padding-top to avoid badge overlap */
}
.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.35;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, var(--bg-dark) 0%, rgba(7, 7, 10, 0.4) 60%, rgba(7, 7, 10, 0.85) 100%);
    z-index: 2;
}
.hero-content-wrapper {
    position: relative;
    z-index: 5;
    max-width: 950px;
    margin: 0; /* Left alignment */
    text-align: left; /* Left alignment */
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Left aligned content items */
}
.hero-badge {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--text-white);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    margin-top: 10px; /* Safe push down */
}
.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--neon-orange);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px var(--neon-orange);
    animation: pulseGlow 1.8s infinite alternate;
}
.hero-title {
    font-family: var(--font-heading);
    font-size: 4.2rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: -0.01em; /* No stretch! Clean proportion */
}
.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-silver);
    max-width: 700px;
    margin: 0 0 40px 0; /* Left aligned margin */
    font-weight: 300;
}
.hero-ctas {
    display: flex;
    gap: 20px;
    justify-content: flex-start; /* Left aligned ctas */
}
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    font-size: 0.75rem;
    font-family: var(--font-heading);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}
.mouse-icon {
    width: 24px;
    height: 38px;
    border: 2px solid var(--border-grey);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}
.mouse-icon .wheel {
    width: 4px;
    height: 8px;
    background: var(--neon-blue);
    border-radius: 2px;
    animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(12px); opacity: 0; }
}
@keyframes pulseGlow {
    0% { opacity: 0.3; box-shadow: 0 0 2px var(--neon-orange); }
    100% { opacity: 1; box-shadow: 0 0 10px var(--neon-orange); }
}

/* --- Services Grid Section (Clean - No Icons, No Text) --- */
.services-section {
    padding: 120px 0;
    position: relative;
    border-bottom: 1px solid var(--border-grey);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 36px;
}
.service-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-grey);
    padding: 30px;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}
.service-card-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Image Slider inside Service Cards */
.service-card-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border-grey);
    margin-bottom: 24px;
    background-color: #060608;
}
.service-card-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}
.service-card-slider .slide.active {
    opacity: 1;
}

.service-btn {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-white);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--border-grey);
    transition: var(--transition-fast);
}
.service-btn i {
    transition: var(--transition-fast);
}
.service-card:hover {
    transform: translateY(-6px);
    background-color: var(--bg-card-hover);
}
.service-card:hover .service-btn {
    color: var(--neon-blue);
    border-color: var(--neon-blue);
}
.service-card:hover .service-btn i {
    transform: translateX(6px);
}
.service-card:nth-child(odd):hover {
    border-color: var(--border-glow-orange);
    box-shadow: 0 10px 30px rgba(var(--neon-orange-rgb), 0.04);
}
.service-card:nth-child(even):hover {
    border-color: var(--border-glow-blue);
    box-shadow: 0 10px 30px rgba(var(--neon-blue-rgb), 0.04);
}

/* --- Before / After Slider --- */
.before-after-section {
    padding: 120px 0;
    background-color: #050508;
    border-bottom: 1px solid var(--border-grey);
}
.slider-wrapper {
    max-width: 1000px;
    margin: 0 auto; /* Centered layout */
}
.before-after-section .section-header {
    text-align: center;
}
.before-after-section .title-bar {
    margin: 16px auto;
}
.before-after-section .section-description {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.before-after-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-grey);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.6);
}
.image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.before-image {
    z-index: 10;
}
.after-image {
    z-index: 20;
    width: 50%;
    overflow: hidden;
}
.label {
    position: absolute;
    bottom: 24px;
    background: rgba(7, 7, 10, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.before-label {
    left: 24px;
    color: var(--text-dark);
}
.after-label {
    right: 24px;
    color: var(--neon-orange);
    border-color: var(--border-glow-orange);
}
.before-after-slider .after-label {
    position: absolute;
    right: 24px;
    z-index: 30;
}
.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--neon-blue), var(--neon-orange));
    z-index: 40;
    cursor: ew-resize;
    transform: translateX(-50%);
}
.handle-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: var(--bg-dark);
    border: 2px solid var(--neon-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    box-shadow: 0 0 15px rgba(var(--neon-blue-rgb), 0.4);
}
.slider-handle:hover .handle-button,
.before-after-slider:active .handle-button {
    border-color: var(--neon-orange);
    box-shadow: 0 0 15px rgba(var(--neon-orange-rgb), 0.4);
    color: var(--neon-orange);
}
.handle-line {
    width: 100%;
    height: calc(50% - 24px);
}

/* --- Homepage Featured Works Grid (3x3 Layout) --- */
.featured-works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.featured-works-grid .portfolio-item {
    aspect-ratio: 1 / 1; /* Mapped as square boxes */
}

/* --- General Portfolio Card Elements (Used in Grid) --- */
.portfolio-item {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border-grey);
    aspect-ratio: 4 / 3;
    cursor: pointer;
}
.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.portfolio-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(7, 7, 10, 0.95) 0%, rgba(7, 7, 10, 0.3) 60%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 30px;
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 5;
}
.portfolio-details {
    transform: translateY(20px);
    transition: var(--transition-smooth);
}
.project-tag {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--neon-blue);
    display: block;
    margin-bottom: 6px;
}
.project-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 6px;
    text-transform: uppercase;
}
.project-spec {
    font-size: 0.8rem;
    color: var(--text-silver);
}
.portfolio-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1rem;
    transform: translateY(20px) scale(0.8);
    transition: var(--transition-smooth);
}
.portfolio-item:hover .portfolio-img {
    transform: scale(1.04);
}
.portfolio-item:hover .portfolio-hover-overlay {
    opacity: 1;
}
.portfolio-item:hover .portfolio-details,
.portfolio-item:hover .portfolio-icon {
    transform: translateY(0) scale(1);
}
.portfolio-item:hover .portfolio-icon {
    border-color: var(--neon-blue);
    color: var(--neon-blue);
}

/* --- Projects Page (Separate Page tabs filter) --- */
.portfolio-filters {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}
.filter-btn {
    background: transparent;
    color: var(--text-silver);
    border: 1px solid var(--border-grey);
    padding: 10px 24px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition-fast);
}
.filter-btn.active, .filter-btn:hover {
    border-color: var(--neon-blue);
    color: var(--text-white);
    box-shadow: 0 2px 10px rgba(var(--neon-blue-rgb), 0.2);
}

/* --- About Us Page Layouts (Fixed Grid System) --- */
.about-hero-section {
    position: relative;
    padding: 180px 0 100px;
    background-color: #050508;
    border-bottom: 1px solid var(--border-grey);
    overflow: hidden;
}
.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 30%, rgba(var(--neon-blue-rgb), 0.04), transparent 40%),
                radial-gradient(circle at 20% 70%, rgba(var(--neon-orange-rgb), 0.04), transparent 40%);
}
.about-hero-content {
    max-width: 800px;
    margin: 0;
    text-align: left;
}
.about-hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.15;
    margin-bottom: 24px;
}
.about-hero-desc {
    font-size: 1.2rem;
    color: var(--text-silver);
    font-weight: 300;
}

.about-story-section {
    padding: 120px 0;
    border-bottom: 1px solid var(--border-grey);
}
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.story-image-wrap {
    position: relative;
}
.story-main-img {
    border-radius: 8px;
    border: 1px solid var(--border-grey);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.story-badge {
    position: absolute;
    bottom: -30px;
    right: 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-glow-orange);
    padding: 20px 24px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.6);
    z-index: 10;
}
.story-years {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--neon-orange);
    line-height: 1;
}
.story-badge-label {
    font-size: 0.75rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-white);
    margin-top: 4px;
}
.story-para {
    font-size: 1.05rem;
    color: var(--text-silver);
    margin-bottom: 24px;
    font-weight: 300;
}

/* --- Why Choose Us (Fixed Grid CSS) --- */
.why-choose-us-section {
    padding: 120px 0;
    background-color: #050508;
    border-bottom: 1px solid var(--border-grey);
}
.why-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}
.why-description {
    font-size: 1.05rem;
    color: var(--text-silver);
    margin-bottom: 48px;
    font-weight: 300;
}
.counters-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
.counter-box {
    border-left: 2px solid var(--border-grey);
    padding-left: 20px;
}
.counter-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}
.counter-box:nth-child(odd) .counter-number {
    color: var(--neon-blue);
    text-shadow: 0 0 10px rgba(var(--neon-blue-rgb), 0.2);
}
.counter-box:nth-child(even) .counter-number {
    color: var(--neon-orange);
    text-shadow: 0 0 10px rgba(var(--neon-orange-rgb), 0.2);
}
.counter-label {
    font-size: 0.85rem;
    color: var(--text-silver);
    font-weight: 500;
}
.why-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.why-card {
    background-color: var(--bg-dark);
    border: 1px solid var(--border-grey);
    border-radius: 6px;
    padding: 24px;
    display: flex;
    gap: 20px;
    transition: var(--transition-smooth);
}
.why-card-icon {
    font-size: 1.6rem;
    color: var(--neon-blue);
    margin-top: 4px;
}
.why-card:nth-child(even) .why-card-icon {
    color: var(--neon-orange);
}
.why-card-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
}
.why-card-desc {
    color: var(--text-silver);
    font-size: 0.9rem;
    line-height: 1.6;
    font-weight: 300;
}
.why-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background-color: var(--bg-card);
    transform: translateX(6px);
}

/* --- Work Process Section (Fixed Grid CSS) --- */
.process-section {
    padding: 120px 0;
    border-bottom: 1px solid var(--border-grey);
}
.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    margin-top: 60px;
}
.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-orange));
    z-index: 1;
    opacity: 0.25;
}
.timeline-item {
    position: relative;
    z-index: 5;
    text-align: left; /* Left align for cleaner flow */
}
.timeline-number-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--bg-card);
    border: 2px solid var(--border-grey);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    position: relative;
    transition: var(--transition-smooth);
    z-index: 10;
}
.timeline-num {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-silver);
    transition: var(--transition-smooth);
}
.timeline-content {
    padding-right: 12px;
}
.timeline-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
}
.timeline-desc {
    font-size: 0.9rem;
    color: var(--text-silver);
    line-height: 1.6;
    font-weight: 300;
}
.timeline-item:hover .timeline-number-box {
    transform: scale(1.08);
    background-color: var(--bg-dark);
}
.timeline-item:nth-child(odd):hover .timeline-number-box {
    border-color: var(--neon-blue);
    box-shadow: 0 0 15px rgba(var(--neon-blue-rgb), 0.35);
}
.timeline-item:nth-child(odd):hover .timeline-num { color: var(--neon-blue); }
.timeline-item:nth-child(even):hover .timeline-number-box {
    border-color: var(--neon-orange);
    box-shadow: 0 0 15px rgba(var(--neon-orange-rgb), 0.35);
}
.timeline-item:nth-child(even):hover .timeline-num { color: var(--neon-orange); }

/* --- Team Section --- */
.team-section {
    padding: 120px 0;
    border-bottom: 1px solid var(--border-grey);
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.team-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-grey);
    border-radius: 6px;
    padding: 40px;
    text-align: center;
    transition: var(--transition-smooth);
}
.team-avatar-box {
    width: 80px;
    height: 80px;
    background-color: var(--bg-dark);
    border: 1px solid var(--border-grey);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    color: var(--neon-orange);
}
.team-card:nth-child(even) .team-avatar-box {
    color: var(--neon-blue);
}
.team-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 750;
    margin-bottom: 6px;
}
.team-role {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-dark);
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 20px;
}
.team-bio {
    font-size: 0.9rem;
    color: var(--text-silver);
    line-height: 1.6;
    font-weight: 300;
}
.team-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.12);
}

/* --- Clients Marquee & Grid --- */
.clients-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    background: #050508;
    border-top: 1px solid var(--border-grey);
    border-bottom: 1px solid var(--border-grey);
    padding: 30px 0;
    margin-top: 24px;
}
.marquee-track {
    display: flex;
    width: max-content;
    gap: 80px;
    align-items: center;
    animation: marqueeRun 24s linear infinite;
}
.marquee-item {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: #22222a;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: var(--transition-fast);
}
.marquee-item:hover {
    color: var(--text-white);
    text-shadow: 0 0 10px rgba(var(--neon-blue-rgb), 0.3);
}

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

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.testimonial-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-grey);
    border-radius: 6px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}
.stars {
    color: var(--neon-orange);
    font-size: 0.85rem;
    margin-bottom: 24px;
}
.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-silver);
    line-height: 1.7;
    margin-bottom: 32px;
    font-style: italic;
}
.client-info {
    display: flex;
    align-items: center;
    gap: 16px;
}
.client-avatar {
    width: 48px;
    height: 48px;
    background-color: var(--bg-dark);
    border: 1px solid var(--border-grey);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-blue);
    font-size: 1.1rem;
}
.client-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 2px;
}
.client-meta {
    font-size: 0.8rem;
    color: var(--text-dark);
}
.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.12);
}

/* --- Call to Action Banner --- */
.cta-banner-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    border-bottom: 1px solid var(--border-grey);
}
.cta-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(7, 7, 10, 0.95) 0%, rgba(20, 20, 26, 0.8) 50%, rgba(7, 7, 10, 0.95) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    z-index: 1;
}
.relative-z {
    position: relative;
    z-index: 10;
}
.cta-banner-content {
    max-width: 800px;
    margin: 0;
    text-align: left;
}
.cta-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.cta-desc {
    font-size: 1.05rem;
    color: var(--text-silver);
    margin-bottom: 36px;
    font-weight: 300;
}
.cta-actions {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
}

/* --- Contact Section --- */
.contact-section {
    padding: 120px 0;
    position: relative;
    border-bottom: 1px solid var(--border-grey);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
}
.contact-form-container {
    background-color: var(--bg-card);
    border: 1px solid var(--border-grey);
    border-radius: 6px;
    padding: 48px;
}
.contact-sub-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.form-row-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-group label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-silver);
}
.form-group input,
.form-group select,
.form-group textarea {
    background-color: var(--bg-dark);
    border: 1px solid var(--border-grey);
    border-radius: 4px;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-white);
    outline: none;
    transition: var(--transition-fast);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--neon-blue);
    box-shadow: 0 0 10px rgba(var(--neon-blue-rgb), 0.25);
}
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}
.form-group select option {
    background-color: var(--bg-card);
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: space-between;
}
.info-sub-desc {
    color: var(--text-silver);
    margin-bottom: 24px;
}
.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-detail-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-grey);
    border-radius: 6px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition-smooth);
}
.detail-icon {
    width: 48px;
    height: 48px;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-grey);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--neon-blue);
}
.whatsapp-card .detail-icon {
    color: #25d366;
}
.detail-text-wrap {
    display: flex;
    flex-direction: column;
}
.detail-label {
    font-size: 0.75rem;
    color: var(--text-dark);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
}
.detail-value {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
}
.contact-detail-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background-color: var(--bg-card-hover);
    transform: translateX(4px);
}
.whatsapp-card:hover {
    border-color: rgba(37, 211, 102, 0.3);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.1);
}

.map-embed-container {
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border-grey);
}
.map-embed-container iframe {
    filter: invert(90%) hue-rotate(180deg) grayscale(100%);
    -webkit-filter: invert(90%) hue-rotate(180deg) grayscale(100%);
    display: block;
}

/* --- Interactive Pop-up Modal --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(4, 4, 6, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-fast);
}
.modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}
.modal-content {
    background-color: var(--bg-card);
    border: 1px solid var(--border-grey);
    border-radius: 8px;
    padding: 44px;
    max-width: 600px;
    width: 90%;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: var(--transition-smooth);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.modal-overlay.open .modal-content {
    transform: scale(1) translateY(0);
}
.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: var(--text-silver);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transition: var(--transition-fast);
}
.modal-close:hover {
    color: var(--neon-orange);
}
.modal-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.modal-subtitle {
    font-size: 0.9rem;
    color: var(--text-silver);
    margin-bottom: 30px;
    font-weight: 300;
}
.modal-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* --- Service Detail Pages specific Works section --- */
.service-hero-section {
    position: relative;
    padding: 180px 0 100px;
    border-bottom: 1px solid var(--border-grey);
    overflow: hidden;
    background-size: cover;
    background-position: center;
}
.led-signages-hero { background-image: linear-gradient(0deg, var(--bg-dark) 0%, rgba(7,7,10,0.7) 100%), url('assets/led_signage_1.jpg'); }
.acrylic-led-hero { background-image: linear-gradient(0deg, var(--bg-dark) 0%, rgba(7,7,10,0.7) 100%), url('assets/acrylic_led_1.jpg'); }
.backlight-boards-hero { background-image: linear-gradient(0deg, var(--bg-dark) 0%, rgba(7,7,10,0.7) 100%), url('assets/backlight_1.png'); }
.wall-brandings-hero { background-image: linear-gradient(0deg, var(--bg-dark) 0%, rgba(7,7,10,0.7) 100%), url('assets/wall_branding_1.png'); }
.pylons-hero { background-image: linear-gradient(0deg, var(--bg-dark) 0%, rgba(7,7,10,0.7) 100%), url('assets/pylon_1.jpg'); }
.hangings-hero { background-image: linear-gradient(0deg, var(--bg-dark) 0%, rgba(7,7,10,0.7) 100%), url('assets/hanging_1.png'); }
.ss-letters-hero { background-image: linear-gradient(0deg, var(--bg-dark) 0%, rgba(7,7,10,0.7) 100%), url('assets/ss_letter_1.png'); }
.directories-hero { background-image: linear-gradient(0deg, var(--bg-dark) 0%, rgba(7,7,10,0.7) 100%), url('assets/directory_1.png'); }
.reception-signages-hero { background-image: linear-gradient(0deg, var(--bg-dark) 0%, rgba(7,7,10,0.7) 100%), url('assets/reception_1.png'); }

.service-overview-section {
    padding: 120px 0;
    border-bottom: 1px solid var(--border-grey);
}
.overview-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}
.overview-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.overview-para {
    font-size: 1.05rem;
    color: var(--text-silver);
    margin-bottom: 24px;
    font-weight: 300;
}
.overview-main-img {
    border-radius: 6px;
    border: 1px solid var(--border-grey);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.service-works-section {
    padding: 120px 0;
    background-color: #050508;
    border-bottom: 1px solid var(--border-grey);
}
.service-works-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-faq-section {
    padding: 120px 0;
    border-bottom: 1px solid var(--border-grey);
}
.faq-accordion-wrapper {
    max-width: 850px;
    margin: 40px auto 0;
}
.faq-item {
    border-bottom: 1px solid var(--border-grey);
    padding: 24px 0;
}
.faq-item:first-child {
    border-top: 1px solid var(--border-grey);
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition-fast);
}
.faq-question i {
    font-size: 0.85rem;
    color: var(--text-dark);
    transition: transform 0.4s ease;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-answer p {
    padding-top: 16px;
    color: var(--text-silver);
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 300;
}
.faq-item.active .faq-question { color: var(--neon-blue); }
.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--neon-blue);
}

/* --- Floating Contact Actions --- */
.floating-whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    z-index: 980;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition-smooth);
}
.floating-whatsapp-btn:hover {
    transform: scale(1.1) rotate(8deg);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}
.tooltip-text {
    visibility: hidden;
    width: 110px;
    background-color: var(--bg-card);
    color: var(--text-white);
    text-align: center;
    border-radius: 4px;
    padding: 6px 0;
    font-size: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 700;
    border: 1px solid var(--border-grey);
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s;
}
.floating-whatsapp-btn:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* --- Distributed Footer Structure (Fixed collapsed cols) --- */
.footer-container {
    background-color: #030305;
    border-top: 1px solid var(--border-grey);
    padding: 80px 0 40px;
}
.footer-top-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr); /* Distributed horizontally */
    gap: 40px;
    margin-bottom: 60px;
}
.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}
.footer-brand-desc {
    color: var(--text-silver);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 320px;
    font-weight: 300;
}
.social-icons {
    display: flex;
    gap: 12px;
}
.social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 4px;
    border: 1px solid var(--border-grey);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: var(--text-silver);
}
.social-icons a:hover {
    border-color: var(--neon-blue);
    color: var(--neon-blue);
    background-color: rgba(0, 229, 255, 0.04);
}
.footer-col-title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
    color: var(--text-white);
}
.footer-links-col ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.footer-links-col a {
    font-size: 0.9rem;
    color: var(--text-silver);
    font-weight: 300;
}
.footer-links-col a:hover {
    color: var(--text-white);
    padding-left: 4px;
}
.hours-list li {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-silver);
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    font-weight: 300;
}
.hours-list li span:last-child {
    font-weight: 600;
    color: var(--text-white);
}

.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-bottom-bar p {
    font-size: 0.8rem;
    color: var(--text-dark);
}
.footer-bottom-links {
    display: flex;
    gap: 24px;
}
.footer-bottom-links a {
    font-size: 0.8rem;
    color: var(--text-dark);
}
.footer-bottom-links a:hover {
    color: var(--text-silver);
}

/* --- Scroll-Triggered Animations --- */
.reveal-fade, .reveal-slide-up, .reveal-scale {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}
.reveal-fade { transform: translateY(0); }
.reveal-slide-up { transform: translateY(40px); }
.reveal-scale { transform: scale(0.96); }

.reveal-fade.visible { opacity: 1; }
.reveal-slide-up.visible { opacity: 1; transform: translateY(0); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* --- Responsive Media Queries --- */

@media (max-width: 1024px) {
    .hero-title, .about-hero-title {
        font-size: 3.2rem;
    }
    .why-grid, .contact-grid, .story-grid, .overview-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .why-cards { order: -1; }
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .process-timeline::before { display: none; }
    .testimonials-grid, .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-top-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .story-image-wrap {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .mobile-toggle-btn {
        display: flex;
        z-index: 1000;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--bg-dark);
        border-left: 1px solid var(--border-grey);
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
        padding: 100px 40px;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 995;
    }
    .nav-menu.active { right: 0; }
    .nav-menu ul {
        flex-direction: column;
        gap: 24px;
    }
    .nav-link { font-size: 1.1rem; }
    .nav-actions { margin-right: 15px; }
    .nav-actions .nav-btn-quote,
    .nav-actions .nav-btn-phone span {
        display: none;
    }
    .nav-btn-phone {
        padding: 10px;
        border: 1px solid var(--border-grey);
        border-radius: 4px;
        background: rgba(255, 255, 255, 0.02);
    }
    
    .mobile-toggle-btn.active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .mobile-toggle-btn.active .bar:nth-child(2) { opacity: 0; }
    .mobile-toggle-btn.active .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .hero-title, .about-hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1.05rem; }
    .hero-ctas, .cta-actions {
        flex-direction: column;
        gap: 15px;
    }
    .btn { width: 100%; }
    .services-grid, .portfolio-grid, .testimonials-grid, .team-grid, .process-timeline {
        grid-template-columns: 1fr;
    }
    .portfolio-hover-overlay { padding: 24px; }
    .project-title { font-size: 1.25rem; }
    .counters-grid { gap: 20px; }
    .counter-number { font-size: 2.2rem; }
    
    .contact-form-container { padding: 24px; }
    .form-row-2 {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .cta-title { font-size: 2rem; }
    .footer-top-grid { grid-template-columns: 1fr; }
    .floating-whatsapp-btn {
        bottom: 20px;
        right: 20px;
        width: 54px;
        height: 54px;
    }
    .modal-content {
        padding: 30px 24px;
    }
}

/* --- Homepage Reviews Slider CSS --- */
.testimonials-slider-section {
    padding: 120px 0;
    background-color: var(--bg-card);
    border-bottom: 1px solid var(--border-grey);
}
.testimonials-slider-container {
    max-width: 850px;
    margin: 40px auto 0;
    position: relative;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-grey);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}
.testimonials-slider-wrapper {
    position: relative;
    min-height: 250px;
    display: flex;
    align-items: center;
}
.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.testimonial-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.testimonials-slider-section .stars {
    color: var(--neon-orange);
    margin-bottom: 20px;
    font-size: 1.1rem;
}
.testimonials-slider-section .testimonial-text {
    font-size: 1.25rem;
    line-height: 1.7;
    font-weight: 300;
    color: var(--text-white);
    margin-bottom: 30px;
    font-style: italic;
}
.testimonials-slider-section .client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}
.testimonials-slider-section .client-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-grey);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-blue);
    font-size: 1.2rem;
}
.testimonials-slider-section .client-name {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
}
.testimonials-slider-section .client-meta {
    font-size: 0.85rem;
    color: var(--text-silver);
}
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.slider-control-btn {
    background: none;
    border: 1px solid var(--border-grey);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    color: var(--text-silver);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}
.slider-control-btn:hover {
    border-color: var(--neon-blue);
    color: var(--neon-blue);
    background-color: rgba(0, 229, 255, 0.03);
}
.slider-dots {
    display: flex;
    gap: 8px;
}
.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition-fast);
}
.slider-dot.active {
    background-color: var(--neon-blue);
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.6);
}

@media (max-width: 768px) {
    .testimonials-slider-container {
        padding: 24px;
    }
    .testimonials-slider-section .testimonial-text {
        font-size: 1.05rem;
        margin-bottom: 20px;
    }
    .testimonials-slider-wrapper {
        min-height: 300px;
    }
}
