/* ============================================
   BASE STYLES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --neon-blue: #00d4ff;
    --dark-blue: #0099cc;
    --black: #000000;
    --dark-grey: #111111;
    --light-grey: #888888;
    --white: #ffffff;
    --red: #ff4444;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
    max-width: 100vw;
}

html {
    overflow-x: hidden;
    max-width: 100vw;
}

/* ============================================
   NAVIGATION
   ============================================ */

nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 5%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.3s ease;
}

nav.scrolled {
    padding: 1rem 5%;
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid rgba(0, 212, 255, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.text-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, var(--white) 0%, var(--neon-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-logo:hover {
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}

.logo-img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.3));
    transition: all 0.3s ease;
}

.logo-img:hover {
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.6));
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

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

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

.cta-button {
    background: linear-gradient(135deg, var(--neon-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 212, 255, 0.5);
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
}

/* ============================================
   HERO SECTION (Homepage)
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 5% 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background: 
        radial-gradient(circle at 20% 50%, var(--neon-blue) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, var(--dark-blue) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.2; }
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--neon-blue);
    border-radius: 50%;
    opacity: 0.3;
    animation: float-particle 20s infinite;
}

.particle:nth-child(1) { left: 10%; animation-duration: 15s; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-duration: 18s; animation-delay: 2s; }
.particle:nth-child(3) { left: 30%; animation-duration: 16s; animation-delay: 4s; }
.particle:nth-child(4) { left: 40%; animation-duration: 19s; animation-delay: 1s; }
.particle:nth-child(5) { left: 50%; animation-duration: 17s; animation-delay: 3s; }
.particle:nth-child(6) { left: 60%; animation-duration: 18s; animation-delay: 5s; }
.particle:nth-child(7) { left: 70%; animation-duration: 16s; animation-delay: 2s; }
.particle:nth-child(8) { left: 80%; animation-duration: 19s; animation-delay: 4s; }
.particle:nth-child(9) { left: 90%; animation-duration: 17s; animation-delay: 1s; }
.particle:nth-child(10) { left: 15%; animation-duration: 20s; animation-delay: 3s; }

@keyframes float-particle {
    0% {
        transform: translateY(100vh) translateX(0) scale(0);
        opacity: 0;
    }
    10% { opacity: 0.3; }
    90% { opacity: 0.3; }
    100% {
        transform: translateY(-100px) translateX(100px) scale(1);
        opacity: 0;
    }
}

.hero-content {
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    z-index: 1;
}

.hero-text {
    text-align: center;
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--neon-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text .highlight {
    color: var(--neon-blue);
    display: block;
}

.hero-text p {
    font-size: 1.3rem;
    color: var(--light-grey);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.secondary-button {
    background: transparent;
    color: var(--neon-blue);
    padding: 0.75rem 2rem;
    border: 2px solid var(--neon-blue);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.secondary-button:hover {
    background: var(--neon-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.hero-visual {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    animation: float 6s ease-in-out infinite;
}

.floating-card:nth-child(1) {
    top: 15%;
    left: 5%;
    animation-delay: 0s;
    z-index: 4;
}

.floating-card:nth-child(2) {
    top: 45%;
    right: 5%;
    animation-delay: 2s;
    z-index: 3;
}

.floating-card:nth-child(3) {
    bottom: 15%;
    left: 15%;
    animation-delay: 4s;
    z-index: 2;
}

.floating-card:nth-child(4) {
    top: 25%;
    right: 25%;
    animation-delay: 1s;
    z-index: 1;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--neon-blue);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--light-grey);
}

/* ============================================
   PAGE HEADER (for all pages except homepage)
   ============================================ */

.page-header {
    padding: 10rem 5% 5rem;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
    top: 8rem;
    left: 50%;
    transform: translateX(-50%);
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--neon-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    position: relative;
}

.page-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: var(--neon-blue);
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--light-grey);
    line-height: 1.8;
}

/* ============================================
   SECTION STYLES (Global)
   ============================================ */

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-header::before {
    content: '';
    position: absolute;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.section-tag {
    color: var(--neon-blue);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-tag::before,
.section-tag::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 1px;
    background: var(--neon-blue);
    top: 50%;
    opacity: 0.4;
}

.section-tag::before {
    left: -40px;
}

.section-tag::after {
    right: -40px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--neon-blue);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-description {
    font-size: 1.2rem;
    color: var(--light-grey);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ============================================
   BLACK FRIDAY OFFER SECTION
   ============================================ */

.black-friday-section {
    padding: 6rem 5%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 153, 204, 0.05) 100%);
    border-top: 2px solid var(--neon-blue);
    border-bottom: 2px solid var(--neon-blue);
}

/* Black Friday Contact Page Banner */
.black-friday-contact-banner {
    padding: 3rem 5%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(0, 153, 204, 0.08) 100%);
    border-top: 3px solid var(--neon-blue);
    border-bottom: 3px solid var(--neon-blue);
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.black-friday-contact-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.bf-banner-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.bf-badge-large {
    display: inline-block;
    background: linear-gradient(135deg, var(--neon-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
    animation: pulse-badge 2s ease-in-out infinite;
}

.bf-banner-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.bf-banner-content p {
    font-size: 1.2rem;
    color: var(--light-grey);
    line-height: 1.6;
}

/* Black Friday Callout in Contact Details */
.bf-special-callout {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(0, 153, 204, 0.08) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 2rem 0;
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.2);
}

.bf-special-callout::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--neon-blue), var(--dark-blue), var(--neon-blue));
    background-size: 200% 100%;
    animation: gradient-shift 3s ease infinite;
}

.bf-special-callout::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--neon-blue), var(--dark-blue), var(--neon-blue));
    background-size: 200% 100%;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.bf-special-callout h3 {
    color: var(--neon-blue);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.bf-special-callout .bf-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin: 0.5rem 0;
    font-family: 'Playfair Display', serif;
}

.bf-special-callout .bf-description {
    font-size: 1.3rem;
    color: var(--white);
    font-weight: 600;
    margin: 0.5rem 0 1rem 0;
}

.bf-special-callout .bf-note {
    font-size: 0.9rem;
    color: var(--light-grey);
    margin: 0;
    font-style: italic;
}

.bf-callout .contact-item-icon {
    background: linear-gradient(135deg, var(--neon-blue) 0%, var(--dark-blue) 100%);
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(0, 212, 255, 0.2);
    }
    50% {
        box-shadow: 0 8px 30px rgba(0, 212, 255, 0.4);
    }
}

.black-friday-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.offer-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--neon-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    padding: 1.5rem 4rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.8rem;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    animation: pulse-badge 2s ease-in-out infinite;
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.5);
    text-transform: uppercase;
}

@keyframes pulse-badge {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 10px 40px rgba(0, 212, 255, 0.5);
    }
    50% { 
        transform: scale(1.08);
        box-shadow: 0 15px 50px rgba(0, 212, 255, 0.8);
    }
}

.black-friday-content h2 {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.black-friday-content > p {
    font-size: 1.2rem;
    color: var(--light-grey);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.offer-form {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 30px;
    padding: 3rem;
    max-width: 700px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.offer-form input {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.offer-form input:focus {
    outline: none;
    border-color: var(--neon-blue);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.offer-form input::placeholder {
    color: var(--light-grey);
}

.offer-form .cta-button {
    width: 100%;
    margin-top: 1rem;
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

/* ============================================
   SERVICES PREVIEW (Homepage)
   ============================================ */

.services-preview {
    padding: 8rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.service-preview-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 30px;
    padding: 3rem;
    transition: all 0.4s ease;
    text-align: center;
}

.service-preview-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
    color: var(--neon-blue);
}

.service-preview-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.service-preview-card p {
    color: var(--light-grey);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* ============================================
   CLIENTS SECTION (Homepage)
   ============================================ */

.clients-section {
    padding: 6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    background: rgba(0, 212, 255, 0.03);
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    align-items: center;
    justify-items: center;
}

.client-logo {
    max-width: 200px;
    height: auto;
    opacity: 0.9;
    transition: all 0.4s ease;
    padding: 1rem;
}

.client-logo:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

.founders-section {
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.founder-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    transition: all 0.4s ease;
}

.founder-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
}

.founder-image-placeholder {
    width: 150px;
    height: 150px;
    margin: 0 auto 2rem;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--neon-blue);
    border: 2px solid rgba(0, 212, 255, 0.3);
    overflow: hidden;
}

.founder-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.founder-name {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.founder-title {
    color: var(--neon-blue);
    font-size: 1.1rem;
    font-weight: 600;
}

.story-section {
    padding: 6rem 5%;
    max-width: 900px;
    margin: 0 auto;
}

.story-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--neon-blue);
}

.story-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--light-grey);
    margin-bottom: 1.5rem;
}

.why-section {
    padding: 6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    background: rgba(0, 212, 255, 0.03);
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.why-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
}

.why-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.15);
}

.why-icon {
    font-size: 3rem;
    color: var(--neon-blue);
    margin-bottom: 1.5rem;
    display: block;
}

.why-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.why-item p {
    color: var(--light-grey);
    line-height: 1.8;
}

.values-section {
    padding: 6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

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

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.15);
}

.value-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--neon-blue);
}

.value-card p {
    color: var(--light-grey);
    line-height: 1.8;
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

.contact-section {
    padding: 4rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    max-width: 100%;
    box-sizing: border-box;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.contact-info > p {
    font-size: 1.2rem;
    color: var(--light-grey);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.get-in-touch-section {
    padding: 3rem 5%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.get-in-touch-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.get-in-touch-content p {
    font-size: 1.2rem;
    color: var(--light-grey);
    line-height: 1.8;
}

.contact-details-section {
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-details-section .contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-blue);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-item-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.contact-item-content a {
    color: var(--neon-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item-content a:hover {
    color: var(--dark-blue);
    text-decoration: underline;
}

.form-container {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 30px;
    padding: 3rem;
}

.form-container h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--white);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--white);
    font-weight: 500;
}

.required {
    color: var(--neon-blue);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    max-width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group select option {
    background: #1a1a1a;
    color: var(--white);
    padding: 1rem;
}

.form-group select option:hover,
.form-group select option:focus,
.form-group select option:checked {
    background: #2a2a2a;
    color: var(--neon-blue);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-blue);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, var(--neon-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 212, 255, 0.5);
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.success-message {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--neon-blue);
    border-radius: 10px;
    color: var(--neon-blue);
    text-align: center;
    display: none;
}

.success-message.show {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   SERVICES PAGE STYLES
   ============================================ */

.services-section {
    padding: 4rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.service-detailed {
    margin-bottom: 6rem;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 30px;
    padding: 4rem;
}

.service-content.reverse {
    grid-template-columns: 1fr;
}

.service-content.reverse .service-info {
    order: initial;
}

.service-content.reverse .service-visual {
    order: initial;
}

.service-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.service-tagline {
    color: var(--neon-blue);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.service-description {
    font-size: 1.2rem;
    color: var(--light-grey);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.service-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--light-grey);
    line-height: 1.6;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    color: var(--neon-blue);
    font-weight: 700;
    font-size: 1.2rem;
    font-family: 'Font Awesome 6 Free';
}

.service-features li:nth-child(1)::before { content: '\f53f'; } /* palette */
.service-features li:nth-child(2)::before { content: '\f10b'; } /* mobile */
.service-features li:nth-child(3)::before { content: '\f0e7'; } /* bolt */
.service-features li:nth-child(4)::before { content: '\f0e0'; } /* envelope */
.service-features li:nth-child(5)::before { content: '\f232'; } /* whatsapp */
.service-features li:nth-child(6)::before { content: '\f021'; } /* sync */
.service-features li:nth-child(7)::before { content: '\f233'; } /* server */
.service-features li:nth-child(8)::before { content: '\f080'; } /* chart */

.service-visual {
    display: none;
}

.service-icon-large {
    font-size: 8rem;
    color: var(--neon-blue);
    opacity: 0.3;
}

.ideal-for {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
}

.ideal-for h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--neon-blue);
    margin-bottom: 1rem;
}

.ideal-for p {
    color: var(--light-grey);
    line-height: 1.6;
}

.process-section {
    padding: 6rem 5%;
    background: rgba(0, 212, 255, 0.03);
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

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

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--neon-blue) 0%, var(--dark-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.process-step h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.process-step p {
    color: var(--light-grey);
    line-height: 1.6;
}

/* ============================================
   PORTFOLIO PAGE STYLES
   ============================================ */

.portfolio-section {
    padding: 4rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Make last 2 items span to center them */
.portfolio-grid .portfolio-card:nth-child(4) {
    grid-column: 1 / 2;
    margin-left: auto;
    margin-right: 1.5rem;
}

.portfolio-grid .portfolio-card:nth-child(5) {
    grid-column: 2 / 3;
    margin-left: 1.5rem;
    margin-right: auto;
}

.portfolio-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
}

.portfolio-preview {
    height: 250px;
    background: rgba(0, 212, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.portfolio-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
}

.portfolio-placeholder {
    font-size: 4rem;
    opacity: 0.3;
    position: absolute;
    z-index: 0;
}

.placeholder-text {
    color: var(--light-grey);
    font-size: 0.9rem;
    position: absolute;
    z-index: 0;
    bottom: 1rem;
}

.portfolio-info {
    padding: 2rem;
}

.portfolio-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.portfolio-info p {
    color: var(--light-grey);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.tag {
    background: rgba(0, 212, 255, 0.1);
    color: var(--neon-blue);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.view-project {
    color: var(--neon-blue);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.portfolio-card:hover .view-project {
    gap: 1rem;
}

/* ============================================
   CTA SECTION (Global)
   ============================================ */

.cta-section {
    padding: 8rem 5%;
    text-align: center;
    background: rgba(0, 212, 255, 0.05);
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.3rem;
    color: var(--light-grey);
    margin-bottom: 3rem;
    line-height: 1.8;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    padding: 3rem 5%;
    text-align: center;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-logo {
    height: 60px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.3));
}

.footer-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--neon-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-links a {
    color: var(--white);
    font-size: 1.8rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    color: var(--neon-blue);
    transform: translateY(-3px);
}

.footer-text {
    color: var(--light-grey);
    font-size: 0.9rem;
}

/* ============================================
   PROGRESS BAR
   ============================================ */

.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-blue) 0%, var(--dark-blue) 100%);
    z-index: 9999;
    transition: width 0.1s ease;
}

/* ============================================
   ADMIN PAGE STYLES
   ============================================ */

.admin-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 5%;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    flex-wrap: wrap;
    gap: 2rem;
}

.admin-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--neon-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.admin-logo {
    height: 50px;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
}

.controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-button {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-button:hover,
.filter-button.active {
    background: var(--neon-blue);
    color: var(--black);
    border-color: var(--neon-blue);
}

.clear-all-button {
    background: var(--red);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.clear-all-button:hover {
    background: #cc0000;
    transform: translateY(-2px);
}

.enquiries-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.enquiry-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.enquiry-card:hover {
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.1);
}

.enquiry-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.enquiry-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.enquiry-business {
    color: var(--neon-blue);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.enquiry-timestamp {
    color: var(--light-grey);
    font-size: 0.85rem;
}

.service-tag {
    background: linear-gradient(135deg, var(--neon-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.enquiry-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-label {
    color: var(--light-grey);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-value {
    color: var(--white);
    font-size: 1rem;
}

.enquiry-message {
    margin-bottom: 2rem;
}

.message-label {
    color: var(--light-grey);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.message-text {
    color: var(--white);
    line-height: 1.6;
    padding: 1rem;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 10px;
    border-left: 3px solid var(--neon-blue);
}

.action-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.action-button {
    background: linear-gradient(135deg, var(--neon-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 0.9rem;
}

.action-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 212, 255, 0.5);
}

.email-button {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
}

.whatsapp-button {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.delete-button {
    background: var(--red);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.delete-button:hover {
    background: #cc0000;
    transform: translateY(-2px);
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 30px;
}

.empty-state-icon {
    font-size: 5rem;
    margin-bottom: 2rem;
    opacity: 0.3;
}

.empty-state h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.empty-state p {
    color: var(--light-grey);
    font-size: 1.1rem;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual {
        display: none;
    }

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

    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .service-content,
    .service-content.reverse {
        grid-template-columns: 1fr;
    }

    .service-content.reverse .service-info,
    .service-content.reverse .service-visual {
        order: initial;
    }
}

@media (max-width: 768px) {
    .nav-container {
        position: relative;
    }

    .nav-container > .cta-button {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
        order: 3;
        margin-left: auto;
    }

    .logo-container {
        order: 1;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        padding: 3rem;
        transition: left 0.3s ease;
        gap: 2rem;
        order: 2;
    }

    .nav-links.active {
        left: 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        display: block;
        position: relative;
        height: 300px;
        margin-top: 0.5rem;
    }

    .floating-card {
        font-size: 0.8rem;
        padding: 1rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .hero-text h1 {
        font-size: 5rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .page-subtitle {
        font-size: 1.1rem;
    }

    .page-header {
        padding: 8rem 5% 3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .portfolio-grid {
        display: flex;
        flex-direction: row;
        gap: 2rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 1rem 0;
        position: relative;
    }

    .portfolio-grid::after {
        content: '→';
        position: fixed;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 3rem;
        color: var(--neon-blue);
        animation: pulse-arrow 2s ease-in-out infinite;
        pointer-events: none;
        z-index: 10;
    }

    @keyframes pulse-arrow {
        0%, 100% {
            opacity: 0.5;
            transform: translateY(-50%) translateX(0);
        }
        50% {
            opacity: 1;
            transform: translateY(-50%) translateX(10px);
        }
    }

    .portfolio-grid .portfolio-card {
        flex: 0 0 85%;
        max-width: 85%;
        scroll-snap-align: center;
    }

    .portfolio-grid .portfolio-card:nth-child(4),
    .portfolio-grid .portfolio-card:nth-child(5) {
        margin: 0;
        flex: 0 0 85%;
        max-width: 85%;
    }

    .portfolio-section {
        overflow: visible;
        padding: 2rem 5%;
        position: relative;
    }

    /* Hide scrollbar but keep functionality */
    .portfolio-grid::-webkit-scrollbar {
        display: none;
    }

    .portfolio-grid {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .black-friday-content h2 {
        font-size: 2rem;
    }

    .offer-badge {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
        letter-spacing: 1.5px;
    }

    .offer-form {
        padding: 1.5rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-section {
        padding: 2rem 5%;
        overflow-x: hidden;
        width: 100%;
    }

    .form-container {
        padding: 1.5rem;
        width: 100%;
        max-width: 100%;
    }

    .contact-info {
        width: 100%;
        max-width: 100%;
    }

    .contact-info h2 {
        font-size: 2rem;
    }

    .contact-details {
        width: 100%;
    }

    .contact-item {
        width: 100%;
    }

    .form-group {
        width: 100%;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    body {
        overflow-x: hidden;
        width: 100%;
    }

    * {
        max-width: 100vw;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 3.5rem;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-button,
    .secondary-button {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .form-container {
        padding: 2rem;
    }

    .service-content {
        padding: 2rem;
    }
}

/* ============================================
   SCROLLBAR STYLING
   ============================================ */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--neon-blue);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-blue);
}
