/* ==========================================================================
   Sharp Mind Web Solutions (SMWS) - Master CSS Design System
   Designed for Shared Server HTML/PHP Web Applications
   Copyright (c) 2016-2026 Sharp Mind Web Solutions. All Rights Reserved.
   ========================================================================== */

/* 1. Design Tokens & Variables */
:root {
    --bg-main: #090D16;
    --bg-secondary: #0F1626;
    --bg-card: rgba(18, 26, 43, 0.7);
    --bg-card-hover: rgba(28, 39, 64, 0.85);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-glow: rgba(0, 242, 254, 0.3);
    
    --primary-cyan: #00F2FE;
    --primary-blue: #4FACFE;
    --accent-purple: #7F00FF;
    --accent-pink: #E100FF;
    --accent-emerald: #00F5A0;
    
    --gradient-primary: linear-gradient(135deg, #00F2FE 0%, #4FACFE 100%);
    --gradient-accent: linear-gradient(135deg, #7F00FF 0%, #E100FF 100%);
    --gradient-emerald: linear-gradient(135deg, #00F5A0 0%, #00D9F5 100%);
    --gradient-dark: linear-gradient(180deg, rgba(9,13,22,0.8) 0%, rgba(15,22,38,1) 100%);
    
    --text-main: #F1F5F9;
    --text-muted: #94A3B8;
    --text-dim: #64748B;
    
    --font-heading: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Plus Jakarta Sans', 'Inter', sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    --shadow-glow-cyan: 0 0 25px rgba(0, 242, 254, 0.25);
    --shadow-glow-purple: 0 0 25px rgba(127, 0, 255, 0.25);
    --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    
    --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-bounce: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* 2. Global Reset & Base Setup */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

ul {
    list-style: none;
}

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

/* 3. Typography & Utility Classes */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: #FFFFFF;
}

.text-gradient-cyan {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-purple {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-emerald {
    background: var(--gradient-emerald);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

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

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.badge-cyan {
    background: rgba(0, 242, 254, 0.1);
    border: 1px solid rgba(0, 242, 254, 0.3);
    color: var(--primary-cyan);
}

.badge-purple {
    background: rgba(127, 0, 255, 0.1);
    border: 1px solid rgba(127, 0, 255, 0.3);
    color: var(--accent-pink);
}

.section-title {
    font-size: 2.75rem;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.125rem;
    line-height: 1.7;
}

/* Glassmorphism Card Style */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    transition: var(--transition-normal);
}

.glass-card:hover {
    border-color: var(--glass-border-glow);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow-cyan);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #050B14;
    box-shadow: 0 4px 20px rgba(0, 242, 254, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 242, 254, 0.5);
    color: #000000;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
}

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

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

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* 4. Header & Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 18px 0;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(9, 13, 22, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-text-smws {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 800;
    letter-spacing: 1px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(0, 242, 254, 0.3);
    transition: var(--transition-fast);
}

.brand-logo:hover .brand-text-smws {
    filter: brightness(1.2);
}

.nav-links-wrapper {
    display: flex;
    align-items: center;
}

.mobile-drawer-header, .mobile-drawer-actions {
    display: none;
}

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

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

.nav-link:hover, .nav-link.active {
    color: var(--primary-cyan);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-normal);
    border-radius: 2px;
}

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

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

.mobile-toggle {
    display: none;
    font-size: 1.3rem;
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--glass-border);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-fast);
}

.mobile-toggle:hover {
    color: var(--primary-cyan);
    border-color: var(--primary-cyan);
}

.nav-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(5, 8, 14, 0.75);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-backdrop.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* 5. Hero Section */
.hero {
    position: relative;
    padding-top: 170px;
    padding-bottom: 100px;
    overflow: hidden;
    background: radial-gradient(circle at 10% 20%, rgba(0, 242, 254, 0.08) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(127, 0, 255, 0.08) 0%, transparent 40%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-visual {
    position: relative;
}

.hero-img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--glass-border-glow);
    box-shadow: 0 20px 50px rgba(0, 242, 254, 0.2);
}

.hero-img-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: var(--transition-normal);
}

.floating-badge {
    position: absolute;
    padding: 16px 20px;
    background: rgba(15, 22, 38, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border-glow);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 10;
}

.badge-top-right {
    top: -20px;
    right: -20px;
    animation: floatAnim 4s ease-in-out infinite alternate;
}

.badge-bottom-left {
    bottom: -20px;
    left: -20px;
    animation: floatAnim 5s ease-in-out infinite alternate-reverse;
}

.floating-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: rgba(0, 242, 254, 0.15);
    color: var(--primary-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.floating-text h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.floating-text p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* 6. Stats & Trust Bar */
.trust-bar {
    padding: 40px 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    background: rgba(15, 22, 38, 0.4);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 6px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
}

/* 7. About Section & Founder Spotlight */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.founder-card {
    padding: 30px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border-glow);
    border-radius: var(--radius-md);
    position: relative;
}

.founder-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.founder-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 2rem;
    font-weight: 700;
    box-shadow: var(--shadow-glow-purple);
}

.founder-info h3 {
    font-size: 1.4rem;
}

.founder-info p {
    color: var(--primary-cyan);
    font-size: 0.9rem;
    font-weight: 600;
}

.founder-bio {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    font-style: italic;
}

.founder-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-cyan);
    font-weight: 600;
    font-size: 0.95rem;
}

.founder-link:hover {
    text-decoration: underline;
    color: var(--primary-blue);
}

.location-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 15px;
}

.location-badge i {
    color: var(--accent-pink);
}

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

.service-card {
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-normal);
}

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

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    background: rgba(0, 242, 254, 0.1);
    color: var(--primary-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 24px;
    transition: var(--transition-normal);
}

.service-card:hover .service-icon {
    background: var(--gradient-primary);
    color: #050B14;
    transform: scale(1.1);
    box-shadow: var(--shadow-glow-cyan);
}

.service-title {
    font-size: 1.35rem;
    margin-bottom: 14px;
}

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

.service-features {
    margin-bottom: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--text-main);
    margin-bottom: 8px;
}

.service-features i {
    color: var(--accent-emerald);
    font-size: 0.8rem;
}

/* 9. Cost Estimator Calculator Tool */
.calculator-box {
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border-glow);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.calc-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
}

.calc-options h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.service-checkboxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}

.calc-checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-fast);
}

.calc-checkbox-label:hover, .calc-checkbox-label.selected {
    background: rgba(0, 242, 254, 0.08);
    border-color: var(--primary-cyan);
}

.calc-checkbox-label input[type="checkbox"] {
    accent-color: var(--primary-cyan);
    width: 18px;
    height: 18px;
}

.calc-summary {
    background: rgba(9, 13, 22, 0.8);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.est-price-tag {
    margin: 20px 0;
    text-align: center;
}

.est-amount {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--accent-emerald);
}

/* 10. Portfolio Section */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.portfolio-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
}

.portfolio-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition-normal);
}

.portfolio-card:hover .portfolio-img {
    transform: scale(1.05);
}

.portfolio-overlay {
    padding: 24px;
    background: linear-gradient(180deg, transparent 0%, rgba(9, 13, 22, 0.95) 80%);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.portfolio-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 6px;
}

.portfolio-overlay p {
    color: var(--primary-cyan);
    font-size: 0.9rem;
    font-weight: 500;
}

/* 11. Contact Section & Forms */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 30px;
}

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

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    background: rgba(0, 242, 254, 0.1);
    color: var(--primary-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.info-text h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

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

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

.contact-form {
    padding: 40px;
}

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

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

.form-control {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    color: #FFFFFF;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-cyan);
    background: rgba(0, 242, 254, 0.04);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.15);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-status {
    margin-top: 15px;
    padding: 12px;
    border-radius: var(--radius-sm);
    display: none;
    font-size: 0.9rem;
}

.form-status.success {
    display: block;
    background: rgba(0, 245, 160, 0.15);
    border: 1px solid var(--accent-emerald);
    color: var(--accent-emerald);
}

.form-status.error {
    display: block;
    background: rgba(255, 75, 75, 0.15);
    border: 1px solid #FF4B4B;
    color: #FF4B4B;
}

/* 12. Footer */
.footer {
    padding: 80px 0 30px 0;
    border-top: 1px solid var(--glass-border);
    background: #05080E;
}

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

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

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-primary);
}

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

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

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

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-dim);
    font-size: 0.875rem;
}

/* 4. Header & Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 18px 0;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(9, 13, 22, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-text-smws {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 800;
    letter-spacing: 1px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(0, 242, 254, 0.3);
    transition: var(--transition-fast);
}

.brand-logo:hover .brand-text-smws {
    filter: brightness(1.2);
}

.nav-desktop-links {
    display: flex;
    align-items: center;
}

.nav-links-wrapper {
    display: none;
}

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

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

.nav-link:hover, .nav-link.active {
    color: var(--primary-cyan);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-normal);
    border-radius: 2px;
}

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

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

.mobile-toggle {
    display: none;
    font-size: 1.3rem;
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--glass-border);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-fast);
}

.mobile-toggle:hover {
    color: var(--primary-cyan);
    border-color: var(--primary-cyan);
}

.nav-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(5, 8, 14, 0.75);
    z-index: 99990;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-backdrop.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .nav-desktop-links {
        display: none !important;
    }

    .nav-btn-call, .nav-btn-wa {
        padding: 8px 14px;
        font-size: 0.85rem;
    }
    
    .mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-links-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        max-width: 85vw;
        height: 100dvh;
        max-height: 100dvh;
        background: #0B101D;
        border-top-left-radius: 24px;
        border-bottom-left-radius: 24px;
        border: 1px solid var(--glass-border-glow);
        border-right: none;
        box-shadow: -20px 0 50px rgba(0, 0, 0, 0.85);
        z-index: 100000;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding: 24px 20px 30px 20px;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        pointer-events: auto;
    }

    .nav-links-wrapper.active {
        right: 0;
    }

    .mobile-drawer-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 14px;
        border-bottom: 1px solid var(--glass-border);
        position: relative;
        z-index: 100010;
        flex-shrink: 0;
    }

    .mobile-close-btn {
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid var(--glass-border);
        color: var(--text-main);
        width: 36px;
        height: 36px;
        border-radius: var(--radius-sm);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        cursor: pointer;
        transition: var(--transition-fast);
        position: relative;
        z-index: 100010;
    }

    .mobile-close-btn:hover {
        background: rgba(255, 75, 75, 0.2);
        border-color: #FF4B4B;
        color: #FF4B4B;
    }

    .nav-links-mobile {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin: 16px 0;
        padding: 0;
        list-style: none;
        width: 100%;
        position: relative;
        z-index: 100010;
        overflow-y: auto;
    }

    .nav-links-mobile li {
        width: 100%;
    }

    .mobile-nav-link {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 0.95rem;
        font-weight: 600;
        color: #E2E8F0;
        padding: 10px 14px;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(255, 255, 255, 0.05);
        background: rgba(255, 255, 255, 0.02);
        transition: var(--transition-fast);
        text-decoration: none;
        cursor: pointer;
        position: relative;
        z-index: 100010;
    }

    .mobile-nav-link i {
        color: var(--primary-cyan);
        font-size: 0.9rem;
        width: 18px;
        text-align: center;
    }

    .mobile-nav-link:hover, .mobile-nav-link.active {
        background: rgba(0, 242, 254, 0.12);
        border-color: rgba(0, 242, 254, 0.4);
        color: var(--primary-cyan);
    }

    .mobile-drawer-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding-top: 16px;
        border-top: 1px solid var(--glass-border);
        width: 100%;
        margin-top: auto;
        position: relative;
        z-index: 100010;
        flex-shrink: 0;
    }

    .mobile-drawer-actions .btn {
        padding: 10px 16px;
        font-size: 0.88rem;
    }

    .hero-grid, .about-grid, .calc-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .btn-text-desktop {
        display: none;
    }

    .nav-btn-call, .nav-btn-wa {
        padding: 8px;
        border-radius: 50%;
        width: 36px;
        height: 36px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .calc-summary {
        padding: 24px 18px;
    }

    .calc-summary .btn {
        padding: 12px 16px;
        font-size: 0.88rem;
    }

    .btn-text-full {
        display: none;
    }

    .btn-text-short {
        display: inline;
    }
}

@media (min-width: 769px) {
    .btn-text-full {
        display: inline;
    }

    .btn-text-short {
        display: none;
    }
}

@media (max-width: 576px) {
    .brand-text-smws {
        font-size: 1.5rem;
    }

    .hero-content h1 {
        font-size: 2.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .stats-grid, .service-checkboxes, .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .btn-text-desktop {
        display: none;
    }

    .nav-btn-call, .nav-btn-wa {
        padding: 10px;
        border-radius: 50%;
        width: 38px;
        height: 38px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .brand-text-smws {
        font-size: 1.5rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.85rem;
    }
    
    .stats-grid, .service-checkboxes, .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}
