/* ========================================
   GROWTH WAVES - MAIN STYLES
   ======================================== */

/* ----- RESET & BASE ----- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: #f0f7ff;
    color: #0a1628;
    overflow-x: hidden;
    line-height: 1.6;
    cursor: none;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ----- CUSTOM CURSOR ----- */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: #00b4ff;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
}

.cursor-ring {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(0, 180, 255, 0.3);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.2s ease, width 0.2s ease, height 0.2s ease;
}

/* ----- GRADIENT TEXT ----- */
.gradient-text {
    background: linear-gradient(135deg, #00b4ff, #00d4ff, #00b4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ----- SECTION HEADER ----- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #00b4ff;
    background: rgba(0, 180, 255, 0.1);
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
}

.section-header p {
    color: #5a6b7e;
    max-width: 550px;
    margin: 12px auto 0;
    font-size: 1.05rem;
}

/* ----- BUTTONS ----- */
.btn-primary {
    background: linear-gradient(135deg, #00b4ff, #0088cc);
    color: #fff;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 30px rgba(0, 180, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 180, 255, 0.5);
}

.btn-ghost {
    color: #0a1628;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid rgba(0, 180, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
}

.btn-ghost:hover {
    border-color: #00b4ff;
    background: rgba(0, 180, 255, 0.05);
}

.btn-large {
    padding: 20px 48px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ========================================
   PRELOADER
   ======================================== */
#preloader {
    position: fixed;
    inset: 0;
    background: #f0f7ff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease;
}

#preloader.hide {
    opacity: 0;
    pointer-events: none;
}

.wave-loader {
    display: flex;
    gap: 6px;
    align-items: center;
}

.wave-loader span {
    width: 8px;
    height: 30px;
    background: linear-gradient(135deg, #00b4ff, #00d4ff);
    border-radius: 4px;
    animation: waveLoad 1.2s ease-in-out infinite;
}

.wave-loader span:nth-child(2) { animation-delay: 0.1s; height: 40px; }
.wave-loader span:nth-child(3) { animation-delay: 0.2s; height: 50px; }
.wave-loader span:nth-child(4) { animation-delay: 0.3s; height: 40px; }
.wave-loader span:nth-child(5) { animation-delay: 0.4s; height: 30px; }
.wave-loader span:nth-child(6) { animation-delay: 0.5s; height: 20px; }

@keyframes waveLoad {
    0%, 100% { transform: scaleY(0.4); }
    50% { transform: scaleY(1); }
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(240, 247, 255, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 180, 255, 0.08);
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    color: #00b4ff;
    font-size: 1.8rem;
}

.logo span {
    color: #00b4ff;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu a {
    font-weight: 600;
    color: #1a2a3a;
    transition: 0.3s;
    font-size: 0.95rem;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2.5px;
    background: #00b4ff;
    transition: 0.3s;
    border-radius: 4px;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover {
    color: #00b4ff;
}

.nav-cta {
    background: linear-gradient(135deg, #00b4ff, #0088cc);
    padding: 8px 24px;
    border-radius: 50px;
    color: #fff !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    transform: scale(1.05);
    color: #fff !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.nav-toggle span {
    width: 28px;
    height: 2.5px;
    background: #0a1628;
    border-radius: 4px;
    transition: 0.3s;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ========================================
   HERO
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #f0f7ff 0%, #e3f0ff 100%);
}

/* Waves Background */
.waves-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    pointer-events: none;
}

.waves {
    width: 100%;
    height: 100%;
}

.wave-parallax use {
    animation: waveMove 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

.wave-parallax use:nth-child(2) {
    animation-duration: 30s;
    animation-delay: -2s;
}

.wave-parallax use:nth-child(3) {
    animation-duration: 35s;
    animation-delay: -4s;
}

.wave-parallax use:nth-child(4) {
    animation-duration: 40s;
    animation-delay: -6s;
}

@keyframes waveMove {
    0% { transform: translateX(-90px); }
    100% { transform: translateX(85px); }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 180, 255, 0.08);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #0088cc;
    margin-bottom: 24px;
}

.hero-content h1 {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.1rem;
    color: #4a5b6e;
    max-width: 500px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-marquee {
    overflow: hidden;
    padding: 12px 0;
    border-top: 1px solid rgba(0, 180, 255, 0.08);
    border-bottom: 1px solid rgba(0, 180, 255, 0.08);
}

.marquee-content {
    display: flex;
    gap: 40px;
    animation: marqueeScroll 20s linear infinite;
    white-space: nowrap;
}

.marquee-content span {
    font-weight: 600;
    color: #2a3a4a;
    font-size: 0.9rem;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wave-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 32px;
    padding: 40px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 30px 60px rgba(0, 180, 255, 0.08);
}

.wave-circle {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto 30px;
}

.wave-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(0, 180, 255, 0.15);
    animation: ringPulse 3s ease-in-out infinite;
}

.wave-ring:nth-child(2) {
    animation-delay: 0.5s;
    border-color: rgba(0, 180, 255, 0.1);
}

.wave-ring:nth-child(3) {
    animation-delay: 1s;
    border-color: rgba(0, 180, 255, 0.05);
}

@keyframes ringPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.5; }
}

.wave-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #00b4ff;
}

.wave-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 180, 255, 0.08);
}

.wave-stat {
    text-align: center;
}

.wave-stat .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00b4ff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wave-stat label {
    font-size: 0.8rem;
    color: #5a6b7e;
    font-weight: 500;
}

/* ========================================
   SERVICES
   ======================================== */
.services {
    padding: 100px 0;
    background: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.service-card {
    background: #f8fcff;
    border: 1px solid rgba(0, 180, 255, 0.06);
    padding: 32px 28px;
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00b4ff, #00d4ff);
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 180, 255, 0.06);
    border-color: rgba(0, 180, 255, 0.12);
}

.service-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(0, 180, 255, 0.08);
    position: absolute;
    top: 12px;
    right: 20px;
    line-height: 1;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: rgba(0, 180, 255, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #00b4ff;
    margin-bottom: 18px;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.service-card p {
    color: #5a6b7e;
    font-size: 0.95rem;
    margin-bottom: 16px;
    line-height: 1.7;
}

.service-link {
    color: #00b4ff;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
}

.service-link:hover {
    gap: 12px;
}

/* ========================================
   ABOUT
   ======================================== */
.about {
    padding: 100px 0;
    background: #f8fcff;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-wave-bg {
    background: linear-gradient(135deg, #e3f0ff, #f0f7ff);
    border-radius: 30px;
    padding: 40px;
}

.about-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.about-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: 0.3s;
}

.about-card:hover {
    transform: scale(1.04);
}

.about-card i {
    font-size: 2rem;
    color: #00b4ff;
    margin-bottom: 8px;
}

.about-card span {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
}

.about-card p {
    color: #5a6b7e;
    font-size: 0.85rem;
}

.about-content h2 {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.about-content > p {
    color: #5a6b7e;
    margin-bottom: 28px;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.about-feature i {
    color: #00b4ff;
    font-size: 1.2rem;
    margin-top: 2px;
}

.about-feature h4 {
    font-size: 1rem;
}

.about-feature p {
    color: #5a6b7e;
    font-size: 0.9rem;
}

/* ========================================
   WORK / PORTFOLIO
   ======================================== */
.work {
    padding: 100px 0;
    background: #ffffff;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.work-item {
    aspect-ratio: 1;
    border-radius: 20px;
    background: #f8fcff;
    border: 1px solid rgba(0, 180, 255, 0.06);
    padding: 30px;
    display: flex;
    align-items: flex-end;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

.work-item:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 180, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 180, 255, 0.04);
}

.work-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 180, 255, 0.02));
    pointer-events: none;
}

.work-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.work-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #00b4ff;
    background: rgba(0, 180, 255, 0.08);
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 10px;
}

.work-content h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.work-content p {
    color: #5a6b7e;
    font-size: 0.9rem;
}

.work-arrow {
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 1.4rem;
    color: #00b4ff;
    opacity: 0.3;
    transition: 0.3s;
}

.work-item:hover .work-arrow {
    opacity: 1;
    transform: translate(4px, -4px);
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
    padding: 100px 0;
    background: #f8fcff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #ffffff;
    border: 1px solid rgba(0, 180, 255, 0.06);
    border-radius: 20px;
    padding: 32px 28px;
    transition: 0.3s;
}

.testimonial-card:hover {
    border-color: rgba(0, 180, 255, 0.12);
    box-shadow: 0 12px 28px rgba(0, 180, 255, 0.04);
}

.testimonial-card .stars {
    color: #fbbf24;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.testimonial-card blockquote {
    font-size: 0.95rem;
    color: #1a2a3a;
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.7;
}

.testimonial-card .client {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-card .client-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00b4ff, #00d4ff);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.testimonial-card .client-info h4 {
    font-size: 0.95rem;
}

.testimonial-card .client-info span {
    font-size: 0.8rem;
    color: #5a6b7e;
}

/* ========================================
   CTA
   ======================================== */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #e3f0ff, #f0f7ff);
}

.cta-container {
    text-align: center;
}

.cta-icon {
    font-size: 3rem;
    color: #00b4ff;
    margin-bottom: 16px;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-content p {
    color: #5a6b7e;
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto 32px;
}

/* ========================================
   CONTACT
   ======================================== */
.contact {
    padding: 100px 0;
    background: #ffffff;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.contact-info > p {
    color: #5a6b7e;
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: center;
}

.contact-item i {
    width: 44px;
    height: 44px;
    background: rgba(0, 180, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00b4ff;
    font-size: 1.1rem;
}

.contact-item h4 {
    font-size: 0.85rem;
    color: #5a6b7e;
    font-weight: 500;
}

.contact-item p {
    font-weight: 600;
}

.contact-social {
    display: flex;
    gap: 12px;
}

.contact-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(0, 180, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5a6b7e;
    transition: 0.3s;
}

.contact-social a:hover {
    border-color: #00b4ff;
    color: #00b4ff;
    background: rgba(0, 180, 255, 0.04);
    transform: translateY(-3px);
}

.contact-form {
    background: #f8fcff;
    border: 1px solid rgba(0, 180, 255, 0.06);
    border-radius: 24px;
    padding: 40px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    background: #ffffff;
    border: 1px solid rgba(0, 180, 255, 0.08);
    border-radius: 12px;
    font-size: 1rem;
    color: #0a1628;
    font-family: inherit;
    transition: 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #8a9baa;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #00b4ff;
    box-shadow: 0 0 0 4px rgba(0, 180, 255, 0.06);
}

.form-group select option {
    background: #fff;
    color: #0a1628;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: #0a1628;
    color: #aabbcc;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-brand .logo {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.footer-brand > p {
    color: #7a8b9e;
    max-width: 300px;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7a8b9e;
    transition: 0.3s;
}

.footer-social a:hover {
    border-color: #00b4ff;
    color: #00b4ff;
    background: rgba(0, 180, 255, 0.04);
}

.footer-links h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    padding: 5px 0;
    color: #7a8b9e;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #00b4ff;
    padding-left: 4px;
}

.footer-bottom {
    text-align: center;
    padding: 24px 0;
    color: #4a5b6e;
    font-size: 0.9rem;
}

/* ========================================
   BACK TO TOP
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00b4ff, #0088cc);
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 180, 255, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-4px) scale(1.05);
}

/* ========================================
   RESPONSIVE
   ======================================== */

/* Tablets & small laptops */
@media (max-width: 992px) {
    .hero-container,
    .about-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-visual {
        order: -1;
    }

    .wave-card {
        max-width: 100%;
    }

    .about-image {
        order: -1;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        padding: 80px 32px 32px;
        gap: 16px;
        border-left: 1px solid rgba(0, 180, 255, 0.06);
        transition: 0.4s ease;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.04);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .cursor-dot,
    .cursor-ring {
        display: none;
    }

    body {
        cursor: auto;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .wave-circle {
        width: 120px;
        height: 120px;
    }

    .wave-icon {
        font-size: 3rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .about-cards {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 12px;
    }

    .about-card {
        padding: 16px;
    }

    .about-card span {
        font-size: 1.4rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .work-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-ghost {
        width: 100%;
        justify-content: center;
    }

    .wave-card {
        padding: 24px;
    }

    .wave-stats {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 8px;
    }

    .wave-stat .stat-number {
        font-size: 1.4rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .work-grid {
        grid-template-columns: 1fr;
    }

    .about-cards {
        grid-template-columns: 1fr;
    }

    .about-content h2 {
        font-size: 1.8rem;
    }

    .contact-info h2 {
        font-size: 1.8rem;
    }

    .marquee-content {
        gap: 20px;
        font-size: 0.8rem;
    }
}