/* ==========================================
   RESET & SYSTEM VARIABLE SPECIFICATIONS
   ========================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Color Palette */
    --color-bg-deep: #0a0a0c;
    --color-bg-card: #121216;
    --color-bg-input: #1a1a22;
    --color-text-main: #ffffff;
    --color-text-muted: #9e9ea7;
    
    /* Psychedelic Neon Accents */
    --color-primary-neon: #ff007f; /* Electric Magenta */
    --color-secondary-neon: #00f0ff; /* Cyan Glow */
    --gradient-psychedelic: linear-gradient(135deg, #ff007f 0%, #7000ff 50%, #00f0ff 100%);
    --gradient-dark: linear-gradient(180deg, rgba(10,10,12,0.6) 0%, rgba(10,10,12,0.95) 100%);
    
    /* Layout Properties */
    --font-primary: 'Poppins', sans-serif;
    --border-radius-m: 8px;
    --border-radius-lg: 16px;
    --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-tint: rgba(255, 255, 255, 0.08);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg-deep);
    color: var(--color-text-main);
    font-family: var(--font-primary);
}

body {
    overflow-x: hidden;
    line-height: 1.6;
}

/* Typography elements */
h1, h2, h3, h4 {
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================
   REUSABLE INTERACTIVE COMPONENTS
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2rem;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--border-radius-m);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: var(--gradient-psychedelic);
    color: var(--color-text-main);
    box-shadow: 0 4px 15px rgba(255, 0, 127, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 240, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text-main);
    border: 1px solid var(--border-tint);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-secondary-neon);
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    background: var(--gradient-psychedelic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.75rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-top: 0.5rem;
}

/* ==========================================
   NAVIGATION
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 12, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-tint);
    transition: var(--transition-smooth);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 2rem;
}

/* Updated Image Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 900;
    font-size: 1.15rem;
    letter-spacing: 0.05em;
    color: var(--color-text-main);
}

.logo-img {
    height: 38px; /* Standard header logo scale */
    width: auto;
    object-fit: contain;
}

.logo span {
    background: var(--gradient-psychedelic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 1.8rem;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-muted);
}

.nav-links a:hover {
    color: var(--color-text-main);
}

.nav-btn {
    border: 1px solid var(--color-primary-neon);
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
}

.nav-btn:hover {
    background: var(--gradient-psychedelic);
    border-color: transparent;
    color: var(--color-text-main) !important;
}

/* Responsive Mobile Navigation Elements */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-text-main);
    transition: var(--transition-smooth);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 10%;
    background-image: url('https://images.unsplash.com/photo-1550684848-fac1c5b4e853?auto=format&fit=crop&w=1920');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(10, 10, 12, 0.7) 0%, rgba(10, 10, 12, 0.95) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.hero-subtitle {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--color-secondary-neon);
    margin-bottom: 1rem;
    display: inline-block;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 0.95;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 30%, var(--color-text-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    word-spacing: 0.05em;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

/* ==========================================
   ABOUT US SECTION
   ========================================== */
.about {
    padding: 8rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.image-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: var(--border-radius-lg);
    background: var(--gradient-psychedelic) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
}

.about-image img {
    width: 100%;
    transition: var(--transition-smooth);
}

.about-image:hover img {
    transform: scale(1.03);
}

/* Target Clients Tags */
.target-clients-tags {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-tint);
}

.target-clients-tags h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-main);
    margin-bottom: 1rem;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.tag {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-tint);
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-text-muted);
    transition: var(--transition-smooth);
}

.tag:hover {
    color: var(--color-secondary-neon);
    border-color: var(--color-secondary-neon);
    background: rgba(0, 240, 255, 0.05);
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services {
    padding: 8rem 2rem;
    background-color: rgba(18, 18, 22, 0.4);
    border-top: 1px solid var(--border-tint);
    border-bottom: 1px solid var(--border-tint);
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--color-bg-card);
    border: 1px solid var(--border-tint);
    border-radius: var(--border-radius-lg);
    padding: 3rem 2rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-psychedelic);
    opacity: 0;
    transition: var(--transition-smooth);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.service-card:hover::before {
    opacity: 1;
}

/* ==========================================
   FEATURED WORK SECTION
   ========================================== */
.featured-work {
    padding: 8rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.featured-container {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.featured-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.featured-card.reversed {
    direction: rtl;
}

.featured-card.reversed .featured-info {
    direction: ltr;
}

.featured-img {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    aspect-ratio: 16 / 10;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.featured-card:hover .featured-img img {
    transform: scale(1.03);
}

.feat-tag {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-primary-neon);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.8rem;
    display: inline-block;
}

.featured-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.featured-info p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
}

/* ==========================================
   PORTFOLIO SECTION
   ========================================== */
.portfolio {
    padding: 8rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.portfolio-item {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.portfolio-item .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,10,12,0) 40%, rgba(10,10,12,0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    opacity: 0.9;
    transition: var(--transition-smooth);
}

.portfolio-item .overlay .category {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-secondary-neon);
    margin-bottom: 0.4rem;
}

.portfolio-item .overlay h3 {
    font-size: 1.5rem;
    color: var(--color-text-main);
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-item:hover .overlay {
    opacity: 1;
    background: linear-gradient(180deg, rgba(10,10,12,0.1) 20%, rgba(10,10,12,0.95) 100%);
}

/* ==========================================
   WORK PROCESS SECTION
   ========================================== */
.process {
    padding: 8rem 2rem;
    background-color: rgba(18, 18, 22, 0.4);
    border-top: 1px solid var(--border-tint);
    border-bottom: 1px solid var(--border-tint);
}

.process-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.step-card {
    background: var(--color-bg-card);
    border: 1px solid var(--border-tint);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 1.8rem;
    position: relative;
    transition: var(--transition-smooth);
}

.step-num {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    background: var(--gradient-psychedelic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    opacity: 0.85;
}

.step-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
}

.step-card p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.step-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

/* ==========================================
   WHY CHOOSE US SECTION
   ========================================== */
.why-choose-us {
    padding: 8rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.why-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

.why-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    aspect-ratio: 1 / 1;
}

.why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.why-text p {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.benefit-row {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.benefit-icon {
    font-size: 1.3rem;
    color: var(--color-secondary-neon);
    line-height: 1.2;
}

.benefit-row h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.benefit-row p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

/* ==========================================
   CLIENT TESTIMONIALS SECTION
   ========================================== */
.testimonials {
    padding: 8rem 2rem;
    background-color: rgba(18, 18, 22, 0.4);
    border-top: 1px solid var(--border-tint);
    border-bottom: 1px solid var(--border-tint);
}

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--color-bg-card);
    border: 1px solid var(--border-tint);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card .quote {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.8rem;
}

.client-meta {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--border-tint);
    padding-top: 1.2rem;
}

.client-meta strong {
    font-size: 1rem;
    color: var(--color-text-main);
}

.client-meta span {
    font-size: 0.8rem;
    color: var(--color-secondary-neon);
    margin-top: 0.2rem;
}

/* ==========================================
   INQUIRY FORM SECTION
   ========================================== */
.form-section {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, var(--color-bg-deep) 0%, #0d0d12 100%);
    border-top: 1px solid var(--border-tint);
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.form-header h2 {
    font-size: 2.5rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.form-header p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
}

.form-container {
    background: var(--color-bg-card);
    border: 1px solid var(--border-tint);
    padding: 3.5rem 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.input-group {
    margin-bottom: 1.75rem;
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
    margin-bottom: 0.6rem;
}

.input-group input,
.input-group select,
.input-group textarea {
    background-color: var(--color-bg-input);
    border: 1px solid var(--border-tint);
    border-radius: var(--border-radius-m);
    padding: 1rem;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: var(--color-text-main);
    transition: var(--transition-smooth);
}

.input-group input::placeholder,
.input-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--color-primary-neon);
    box-shadow: 0 0 10px rgba(255, 0, 127, 0.15);
}

/* Dynamic inputs selector customized down arrow styling */
.select-wrapper select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239e9ea7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2em;
    padding-right: 2.5rem;
    cursor: pointer;
}

/* Input layout grids */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

/* Dynamic sub-sections */
.form-sub-section {
    display: none; /* Controlled primarily by JavaScript */
    background: rgba(255, 0, 127, 0.02);
    border-left: 3px solid var(--color-primary-neon);
    padding: 2rem;
    border-radius: 0 var(--border-radius-m) var(--border-radius-m) 0;
    margin: 2rem 0;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.form-sub-section.active {
    opacity: 1;
    transform: translateY(0);
}

.form-sub-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--color-text-main);
    border-bottom: 1px solid var(--border-tint);
    padding-bottom: 0.5rem;
}

.form-sub-section .input-group:last-child {
    margin-bottom: 0;
}

.submit-btn {
    width: 100%;
    background: var(--gradient-psychedelic);
    color: var(--color-text-main);
    padding: 1.1rem;
    font-size: 1rem;
    margin-top: 1rem;
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.faq {
    padding: 8rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    background: var(--color-bg-card);
    border: 1px solid var(--border-tint);
    border-radius: var(--border-radius-m);
    padding: 1.5rem 2rem;
    transition: var(--transition-smooth);
}

.faq-item summary {
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 2rem;
    user-select: none;
}

/* Custom arrow for FAQs */
.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--color-secondary-neon);
    transition: var(--transition-smooth);
}

.faq-item[open] summary::after {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
}

.faq-item p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-top: 1rem;
    line-height: 1.6;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact-section {
    padding: 8rem 2rem;
    background-color: rgba(18, 18, 22, 0.4);
    border-top: 1px solid var(--border-tint);
    border-bottom: 1px solid var(--border-tint);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.contact-card {
    background: var(--color-bg-card);
    border: 1px solid var(--border-tint);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-card p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    word-break: break-all;
}

.contact-card:hover {
    border-color: var(--color-secondary-neon);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 240, 255, 0.1);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background-color: #050507;
    border-top: 1px solid var(--border-tint);
    padding: 5rem 2rem 2rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    max-width: 320px;
}

.footer-links h4,
.footer-social h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    color: var(--color-text-main);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--color-secondary-neon);
}

.footer-social p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.social-icons {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.social-icons span {
    cursor: pointer;
    transition: var(--transition-smooth);
}

.social-icons span:hover {
    color: var(--color-primary-neon);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid var(--border-tint);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.85rem;
}

/* ==========================================
   RESPONSIVE LAYOUTS & BREAKPOINTS
   ========================================== */
@media (max-width: 1100px) {
    .process-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    .about-container,
    .why-container,
    .featured-card {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .featured-card.reversed {
        direction: ltr;
    }
    
    .services-grid,
    .testimonials-grid,
    .contact-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 68px; 
        left: -100%;
        width: 100%;
        height: calc(100vh - 68px);
        background-color: var(--color-bg-deep);
        flex-direction: column;
        justify-content: center;
        gap: 2.5rem;
        transition: left 0.4s ease;
        padding-bottom: 10%;
    }

    .nav-links.active {
        left: 0;
    }

    .mobile-menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .mobile-menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        justify-content: center;
        text-align: center;
        padding: 0 1.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .section-header h2,
    .about-text h2,
    .why-text h2,
    .form-header h2 {
        font-size: 2rem;
    }

    .services-grid,
    .portfolio-grid,
    .process-steps,
    .testimonials-grid,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .grid-2 {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-container {
        padding: 2rem 1.5rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-brand {
        grid-column: span 1;
    }
}