/* =========================================
   VARIABLES & DESIGN SYSTEM
========================================= */
:root {
    /* Colors */
    --bg-color: #050505;
    --surface: rgba(20, 20, 25, 0.6);
    --surface-hover: rgba(30, 30, 40, 0.8);
    --primary: #00f0ff;
    --primary-glow: rgba(0, 240, 255, 0.4);
    --secondary: #6b21a8;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --border: rgba(255, 255, 255, 0.08);
    --border-bright: rgba(0, 240, 255, 0.3);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Effects */
    --glass-blur: blur(12px);
    --transition: all 0.3s ease;
}

/* =========================================
   RESET & BASE STYLES
========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

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

ul {
    list-style: none;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

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

/* Typography Utilities */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.cyan-text {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary-glow);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-title .line {
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: 0 0 10px var(--primary-glow);
}

.section-title .subtitle {
    margin-top: 15px;
    color: var(--text-muted);
}

.relative {
    position: relative;
}

/* =========================================
   COMPONENTS
========================================= */

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

.btn-primary {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    box-shadow: 0 0 15px transparent inset;
    text-shadow: 0 0 8px transparent;
}

.btn-primary:hover {
    background: rgba(0, 240, 255, 0.1);
    box-shadow: 0 0 20px var(--primary-glow) inset, 0 0 20px var(--primary-glow);
    text-shadow: 0 0 8px var(--primary);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--surface);
    color: var(--text-main);
    border: 1px solid var(--border);
    backdrop-filter: var(--glass-blur);
}

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

/* Glassmorphism Panel */
.glass-panel {
    background: var(--surface);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.glass-panel:hover {
    border-color: var(--border-bright);
    background: var(--surface-hover);
    transform: translateY(-5px);
}

/* Background Glows */
.glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--primary);
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
}

.glow-1 { top: -100px; left: -100px; }
.glow-2 { bottom: 10%; right: -50px; background: var(--secondary); opacity: 0.2;}
.glow-3 { top: 50%; left: 50%; transform: translate(-50%, -50%); opacity: 0.1; }
.glow-4 { top: 20%; right: 10%; }

/* =========================================
   NAVIGATION
========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: var(--glass-blur);
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: 1px;
}

.logo span {
    color: var(--primary);
    font-weight: 400;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding-bottom: 5px;
}

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

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
    box-shadow: 0 0 8px var(--primary-glow);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary);
    text-shadow: 0 0 8px rgba(0,240,255,0.3);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-main);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: var(--glass-blur);
    border-left: 1px solid var(--border);
    z-index: 2000;
    padding: 80px 40px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.close-menu {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-muted);
}

.close-menu:hover {
    color: var(--primary);
}

.mobile-links {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mobile-links a {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
}

.mobile-links a:hover {
    color: var(--primary);
}

/* =========================================
   HERO SECTION
========================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px; /* Offset for nav */
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    z-index: 2;
}

.hero-text {
    flex: 1.2;
}

.hero-text .greeting {
    font-family: var(--font-heading);
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.hero-text h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    margin-bottom: 10px;
    color: #fff;
}

.glitch-text {
    position: relative;
}

.hero-text h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--text-muted);
    margin-bottom: 30px;
    font-weight: 500;
}

.hero-text .intro {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: 20px;
}

.hero-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0.5;
    mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
}

/* Hero Image Styles */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.image-wrapper {
    position: relative;
    width: 320px;
    height: 420px;
    border-radius: 20px;
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.1) brightness(0.9);
    transition: var(--transition);
}

.image-border {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid var(--primary-glow);
    border-radius: 15px;
    pointer-events: none;
    z-index: 2;
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    opacity: 0.3;
    z-index: -1;
}

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

/* Responsiveness for Hero */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
        gap: 40px;
        padding-top: 50px;
    }

    .hero-text .intro {
        margin-left: auto;
        margin-right: auto;
    }

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

    .image-wrapper {
        width: 250px;
        height: 330px;
    }
}

/* =========================================
   ABOUT SECTION
========================================= */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.about-text p {
    margin-bottom: 20px;
}
.about-text p:last-child {
    margin-bottom: 0;
}

/* =========================================
   SKILLS SECTION
========================================= */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.skill-card {
    text-align: center;
    padding: 40px 20px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.skill-card .icon {
    font-size: 2.5rem;
    color: var(--primary);
    transition: var(--transition);
}

.skill-card:hover .icon {
    transform: scale(1.1);
    text-shadow: 0 0 15px var(--primary-glow);
}

.skill-card h3 {
    font-size: 1.2rem;
    font-weight: 500;
}

/* =========================================
   SERVICES SECTION
========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
    gap: 30px;
}

.service-card {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-card .icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.service-card h3 {
    font-size: 1.4rem;
}

.service-card p {
    color: var(--text-muted);
    flex-grow: 1;
}

.service-card .price {
    font-family: var(--font-heading);
    font-weight: 600;
    color: #fff;
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px solid var(--border);
}

/* =========================================
   PORTFOLIO SECTION
========================================= */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 350px), 1fr));
    gap: 30px;
}

.portfolio-item {
    padding: 15px;
    border-radius: 20px;
}

.portfolio-img {
    height: 250px;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

/* Placeholders acting as images */
.placeholder-img {
    background-size: cover;
    background-position: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.placeholder-img::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(5,5,5,0.9));
    z-index: 1;
}

.placeholder-img span {
    position: relative;
    z-index: 2;
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.02);
}

.bg-cyberpunk {
    background: linear-gradient(45deg, #1f0033, #001f3f, #008080);
}

.bg-neon {
    background: linear-gradient(135deg, #2a0845 0%, #6441A5 100%);
}

.bg-darktech {
    background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
}

.portfolio-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: #fff;
}

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

/* =========================================
   TESTIMONIALS SECTION
========================================= */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: 30px;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stars {
    color: #ffd700;
    font-size: 0.9rem;
}

.review-text {
    font-style: italic;
    color: var(--text-muted);
    flex-grow: 1;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid var(--border);
    padding-top: 15px;
}

.client-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--surface-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    color: var(--primary);
}

.client-details h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.client-details span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* =========================================
   CONTACT SECTION
========================================= */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 50px;
}

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

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

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
    background: rgba(255,255,255,0.02);
    border-radius: 12px;
    transition: var(--transition);
}

.contact-item:hover {
    background: rgba(255,255,255,0.05);
    transform: translateX(5px);
}

.icon-box {
    width: 50px;
    height: 50px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid var(--border-bright);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
}

.contact-item h4 {
    color: #fff;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-item span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Form */
.contact-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.form-group input, .form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(10, 10, 15, 0.5);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
    background: rgba(10, 10, 15, 0.8);
}

/* Success Notification Styles */
.form-success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.form-success-overlay.active {
    opacity: 1;
    visibility: visible;
}

.form-success-card {
    background: rgba(20, 20, 25, 0.9);
    border: 1px solid var(--border);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 240, 255, 0.1);
}

.form-success-overlay.active .form-success-card {
    transform: scale(1);
}

.success-icon {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px var(--primary-glow));
}

.form-success-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.form-success-card p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.btn-success-close {
    width: 100%;
}

.submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* =========================================
   FOOTER
========================================= */
footer {
    border-top: 1px solid var(--border);
    padding: 40px 0;
    text-align: center;
    background: #000;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
}
.footer-logo span {
    color: var(--primary);
    font-weight: 400;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.social-links a:hover {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
    transform: translateY(-3px);
}

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

/* =========================================
   MODALS
========================================= */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    width: 90%;
    max-width: 500px;
    position: relative;
    transform: translateY(30px);
    transition: var(--transition);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px; right: 15px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

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

.modal-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}

.modal-header i {
    font-size: 2rem;
    color: var(--primary);
}

.modal-title {
    font-size: 1.5rem;
}

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

/* =========================================
   ANIMATIONS & LOADER
========================================= */
.loader {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--bg-color);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

.loader.fade-out {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(0, 240, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}



/* =========================================
   FAQ SECTION
========================================= */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    padding: 25px;
    cursor: pointer;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-family: var(--font-body);
    font-weight: 600;
}

.faq-question i {
    color: var(--primary);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    opacity: 0;
    transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    opacity: 1;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
}

/* =========================================
   PRICING
========================================= */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 30px;
    align-items: center;
}

.pricing-card {
    position: relative;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.pricing-card.highlight {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.1);
    transform: scale(1.05);
    z-index: 2;
}

.popular-badge {
    position: absolute;
    top: -15px; left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #000;
    font-weight: 800;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Special Deal Card */
.deal-card {
    background: rgba(255, 0, 255, 0.02) !important;
    animation: borderPulse 4s infinite;
}

.deal-card h3 {
    color: #ff00ff;
}

.deal-card .amount {
    color: #ff00ff;
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
}

@keyframes borderPulse {
    0% { border-color: rgba(255, 0, 255, 0.3); box-shadow: 0 0 10px rgba(255, 0, 254, 0.05); }
    50% { border-color: rgba(255, 0, 255, 1); box-shadow: 0 0 25px rgba(255, 0, 254, 0.2); }
    100% { border-color: rgba(255, 0, 255, 0.3); box-shadow: 0 0 10px rgba(255, 0, 254, 0.05); }
}

.price-tag {
    font-family: var(--font-heading);
    color: #fff;
    margin: 10px 0;
}

.price-tag .currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.price-tag .amount {
    font-size: 3.5rem;
    font-weight: 800;
}

.pricing-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
    margin-bottom: 10px;
}

.pricing-features {
    text-align: left;
    margin-bottom: 20px;
    flex-grow: 1;
}

.pricing-features li {
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.pricing-features i {
    color: var(--primary);
    margin-right: 10px;
}

/* =========================================
   LIGHTBOX
========================================= */
.lightbox-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 4000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    box-shadow: 0 0 50px rgba(0, 240, 255, 0.2);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lightbox-overlay.active .lightbox-img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px; right: 40px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--primary);
    transform: scale(1.1);
}

.portfolio-img {
    cursor: zoom-in;
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 992px) {
    .pricing-card.highlight {
        transform: scale(1);
    }
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .hero-text h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links, .btn-nav {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    .section-padding {
        padding: 70px 0;
    }
    
    .hero-text h1 {
        font-size: 2.8rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .contact-wrapper {
        padding: 30px 20px;
    }
}
