/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Enable text selection for important content */
p, h1, h2, h3, h4, h5, h6, li, span, a {
    -webkit-user-select: text;
    -khtml-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* Touch device optimizations */
.touch-device {
    cursor: auto;
}

.touch-device .cursor,
.touch-device .cursor-follower {
    display: none !important;
}

/* Mesh Gradient Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(166, 255, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(166, 255, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(166, 255, 0, 0.08) 0%, transparent 50%);
    z-index: -1;
    animation: meshMove 20s ease-in-out infinite;
}

@keyframes meshMove {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Animated Cursor */
.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid #A6FF00;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
}

.cursor-follower {
    width: 8px;
    height: 8px;
    background-color: #A6FF00;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.15s ease;
}

.cursor.hover {
    transform: scale(1.5);
    background-color: #A6FF00;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.85) 100%);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(166, 255, 0, 0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-image {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.nav-logo h2 {
    background: linear-gradient(135deg, #A6FF00 0%, #7ACC00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border-radius: 8px;
}

.nav-link svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #A6FF00;
    background: rgba(166, 255, 0, 0.1);
    transform: translateY(-2px);
}

.nav-link:hover svg {
    stroke: #A6FF00;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    opacity: 0;
    animation: slideInLeft 0.8s ease forwards;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

.title-line.accent {
    background: linear-gradient(135deg, #A6FF00 0%, #7ACC00 50%, #A6FF00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: slideInLeft 0.8s ease forwards, gradientShift 3s ease infinite;
}

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

.hero-description {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.8s forwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1s forwards;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #A6FF00 0%, #7ACC00 100%);
    color: #000000;
    position: relative;
    z-index: 0;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #7ACC00 0%, #A6FF00 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50px;
    z-index: -1;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(166, 255, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid transparent;
    background-image: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), 
                      linear-gradient(135deg, #A6FF00 0%, #7ACC00 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #A6FF00 0%, #7ACC00 100%);
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(166, 255, 0, 0.3);
}

.btn-outline {
    background: transparent;
    color: #A6FF00;
    border: 2px solid transparent;
    background-image: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), 
                      linear-gradient(135deg, #A6FF00 0%, #7ACC00 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.btn-outline:hover {
    background: linear-gradient(135deg, #A6FF00 0%, #7ACC00 100%);
    color: #000000;
    box-shadow: 0 10px 30px rgba(166, 255, 0, 0.3);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-shapes {
    position: relative;
    width: 400px;
    height: 400px;
}

.shape {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #A6FF00, rgba(166, 255, 0, 0.3));
    top: 50px;
    left: 50px;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, rgba(166, 255, 0, 0.2), transparent);
    top: 150px;
    right: 50px;
    animation-delay: 2s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #A6FF00, rgba(166, 255, 0, 0.5));
    bottom: 100px;
    left: 100px;
    animation-delay: 4s;
}

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


/* Section Styles */
section {
    padding: 5rem 0;
    position: relative;
}

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

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    background: linear-gradient(135deg, #ffffff 0%, #A6FF00 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: fadeInUp 0.8s ease forwards, gradientShift 5s ease infinite;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

/* About Section */
.about {
    background: rgba(166, 255, 0, 0.02);
}

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

.about-description {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 3rem;
    line-height: 1.8;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.stat:nth-child(1) { animation-delay: 0.6s; }
.stat:nth-child(2) { animation-delay: 0.8s; }
.stat:nth-child(3) { animation-delay: 1s; }

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #A6FF00 0%, #7ACC00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #cccccc;
    font-size: 1rem;
}

/* Work Section */
.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.work-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(166, 255, 0, 0.02) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid transparent;
    background-image: linear-gradient(rgba(255, 255, 255, 0.05), rgba(166, 255, 0, 0.02)), 
                      linear-gradient(135deg, rgba(166, 255, 0, 0.1) 0%, rgba(166, 255, 0, 0.05) 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.work-link {
    display: block;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
}

.work-item:nth-child(1) { animation-delay: 0.2s; }
.work-item:nth-child(2) { animation-delay: 0.4s; }
.work-item:nth-child(3) { animation-delay: 0.6s; }

.work-item:hover {
    transform: translateY(-10px);
    border-image: linear-gradient(135deg, #A6FF00 0%, #7ACC00 100%) 1;
    box-shadow: 0 20px 40px rgba(166, 255, 0, 0.3), 
                0 0 30px rgba(166, 255, 0, 0.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(166, 255, 0, 0.05) 100%);
}

.work-image {
    height: 300px;
    position: relative;
    overflow: hidden;
}

.work-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(166, 255, 0, 0.1), rgba(166, 255, 0, 0.05));
    text-align: center;
    padding: 2rem;
}

.work-placeholder h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #A6FF00 0%, #7ACC00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.work-placeholder p {
    color: #cccccc;
}

.work-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(166, 255, 0, 0.05) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.work-item:hover .work-overlay {
    opacity: 1;
}

.work-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #A6FF00 0%, #7ACC00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.work-overlay p {
    color: #cccccc;
    margin-bottom: 1rem;
}

.work-category {
    background: linear-gradient(135deg, #A6FF00 0%, #7ACC00 100%);
    color: #000000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.work-link-text {
    color: #A6FF00;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.work-item:hover .work-link-text {
    opacity: 1;
}

.work-view-all {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

.work-view-all .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

/* Pricing Section */
.pricing {
    background: rgba(166, 255, 0, 0.02);
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.pricing-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(166, 255, 0, 0.02) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid transparent;
    background-image: linear-gradient(rgba(255, 255, 255, 0.05), rgba(166, 255, 0, 0.02)), 
                      linear-gradient(135deg, rgba(166, 255, 0, 0.1) 0%, rgba(166, 255, 0, 0.05) 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    width: 350px;
    max-width: 100%;
}

.pricing-card:nth-child(1) { animation-delay: 0.2s; }
.pricing-card:nth-child(2) { animation-delay: 0.4s; }
.pricing-card:nth-child(3) { animation-delay: 0.6s; }

.pricing-card:hover {
    transform: translateY(-10px);
    border-image: linear-gradient(135deg, #A6FF00 0%, #7ACC00 100%) 1;
    box-shadow: 0 20px 40px rgba(166, 255, 0, 0.3), 
                0 0 30px rgba(166, 255, 0, 0.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(166, 255, 0, 0.05) 100%);
}

.pricing-card.featured {
    border-image: linear-gradient(135deg, #A6FF00 0%, #7ACC00 100%) 1;
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(166, 255, 0, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #A6FF00 0%, #7ACC00 100%);
    color: #000000;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(166, 255, 0, 0.3);
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #A6FF00 0%, #7ACC00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-price {
    margin-bottom: 2rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #A6FF00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    color: #cccccc;
    font-size: 1rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: #cccccc;
    border-bottom: 1px solid rgba(166, 255, 0, 0.1);
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-top: 3rem;
}

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

.contact-item {
    opacity: 0;
    animation: fadeInLeft 0.8s ease forwards;
}

.contact-item:nth-child(1) { animation-delay: 0.2s; }
.contact-item:nth-child(2) { animation-delay: 0.4s; }
.contact-item:nth-child(3) { animation-delay: 0.6s; }

.contact-item h3 {
    background: linear-gradient(135deg, #A6FF00 0%, #7ACC00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.contact-item p {
    color: #cccccc;
    font-size: 1.1rem;
}

.booking-section {
    opacity: 0;
    animation: fadeInRight 0.8s ease 0.8s forwards;
}

.booking-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(166, 255, 0, 0.02) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid transparent;
    background-image: linear-gradient(rgba(255, 255, 255, 0.05), rgba(166, 255, 0, 0.02)), 
                      linear-gradient(135deg, rgba(166, 255, 0, 0.1) 0%, rgba(166, 255, 0, 0.05) 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
}

.booking-content h3 {
    font-size: 1.8rem;
    background: linear-gradient(135deg, #A6FF00 0%, #7ACC00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 700;
}

.booking-content p {
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.booking-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.booking-btn svg {
    transition: transform 0.3s ease;
}

.booking-btn:hover svg {
    transform: translate(3px, -3px);
}

.booking-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}

.booking-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #cccccc;
    font-size: 1rem;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: #A6FF00;
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.8);
    border-top: 1px solid rgba(166, 255, 0, 0.1);
    padding: 2rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.footer-logo-image {
    height: 35px;
    width: auto;
    object-fit: contain;
}

.footer-logo h3 {
    color: #A6FF00;
    margin: 0;
    font-weight: 700;
}

.footer-logo p {
    color: #cccccc;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #A6FF00;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(166, 255, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-founders-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.footer-bottom p {
    color: #cccccc;
    font-size: 0.9rem;
    margin: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger {
    width: 25px;
    height: 3px;
    background-color: #A6FF00;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.nav-toggle.active .hamburger:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.nav-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Responsive Design */
/* Large Tablets and Small Desktops */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-container {
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .work-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .pricing-grid {
        gap: 1.5rem;
    }
    
    .contact-content {
        gap: 3rem;
    }
}

/* Tablets */
@media (max-width: 768px) {
    /* Disable cursor on touch devices */
    body {
        cursor: auto;
    }
    
    .cursor, .cursor-follower {
        display: none;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .nav-link {
        font-size: 1.5rem;
        font-weight: 600;
        padding: 1rem;
    }
    
    .nav-link svg {
        width: 32px;
        height: 32px;
    }
    
    .logo-image {
        height: 40px;
    }
    
    .footer-logo-image {
        height: 30px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 1.5rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .hero-visual {
        height: 300px;
        margin-top: 2rem;
    }
    
    .floating-shapes {
        width: 250px;
        height: 250px;
    }
    
    .shape-1 {
        width: 60px;
        height: 60px;
        top: 30px;
        left: 30px;
    }
    
    .shape-2 {
        width: 90px;
        height: 90px;
        top: 90px;
        right: 30px;
    }
    
    .shape-3 {
        width: 50px;
        height: 50px;
        bottom: 60px;
        left: 60px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .work-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .work-item {
        margin-bottom: 1rem;
    }
    
    .work-image {
        height: 250px;
    }
    
    .pricing-grid {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .pricing-card {
        width: 100%;
        max-width: 400px;
        padding: 2rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .booking-content {
        padding: 2rem;
    }
    
    .booking-content h3 {
        font-size: 1.5rem;
    }
    
    .booking-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
    
    .booking-features {
        gap: 0.8rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .hero-container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.1;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    
    .floating-shapes {
        width: 200px;
        height: 200px;
    }
    
    .shape-1 {
        width: 50px;
        height: 50px;
        top: 25px;
        left: 25px;
    }
    
    .shape-2 {
        width: 75px;
        height: 75px;
        top: 75px;
        right: 25px;
    }
    
    .shape-3 {
        width: 40px;
        height: 40px;
        bottom: 50px;
        left: 50px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .about-description {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .work-image {
        height: 200px;
    }
    
    .work-placeholder h3 {
        font-size: 1.3rem;
    }
    
    .work-overlay h3 {
        font-size: 1.3rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .pricing-title {
        font-size: 1.3rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .pricing-features li {
        font-size: 0.9rem;
        padding: 0.4rem 0;
    }
    
    .booking-content {
        padding: 1.5rem;
    }
    
    .booking-content h3 {
        font-size: 1.3rem;
    }
    
    .booking-content p {
        font-size: 1rem;
    }
    
    .contact-item h3 {
        font-size: 1.1rem;
    }
    
    .contact-item p {
        font-size: 1rem;
    }
    
    .footer-logo h3 {
        font-size: 1.2rem;
    }
    
    .footer-links {
        gap: 1rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
}

/* Extra Small Mobile Phones */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .floating-shapes {
        width: 180px;
        height: 180px;
    }
    
    .shape-1 {
        width: 45px;
        height: 45px;
        top: 20px;
        left: 20px;
    }
    
    .shape-2 {
        width: 65px;
        height: 65px;
        top: 65px;
        right: 20px;
    }
    
    .shape-3 {
        width: 35px;
        height: 35px;
        bottom: 45px;
        left: 45px;
    }
    
    .pricing-card {
        padding: 1.2rem;
    }
    
    .booking-content {
        padding: 1.2rem;
    }
}

/* Landscape Mobile Orientation */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .hero-container {
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-visual {
        height: 200px;
    }
    
    .floating-shapes {
        width: 180px;
        height: 180px;
    }
    
    section {
        padding: 2rem 0;
    }
}

/* Performance optimizations for mobile */
@media (max-width: 768px) {
    /* Reduce animations on mobile for better performance */
    .shape {
        animation-duration: 8s;
    }
    
    /* Optimize transforms for mobile */
    .work-item,
    .pricing-card,
    .shape {
        will-change: transform;
        transform: translateZ(0);
    }
    
    /* Reduce blur effects on mobile for performance */
    .nav,
    .work-item,
    .pricing-card,
    .booking-content {
        backdrop-filter: blur(5px);
    }
    
    /* Optimize scrolling */
    .hero,
    section {
        -webkit-overflow-scrolling: touch;
    }
}

/* High DPI display optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-image,
    .footer-logo-image {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Accessibility improvements for mobile */
@media (max-width: 768px) {
    /* Ensure minimum touch target size */
    .nav-link,
    .btn,
    .work-link {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Improve focus states for keyboard navigation */
    .nav-link:focus,
    .btn:focus,
    .work-link:focus {
        outline: 2px solid #A6FF00;
        outline-offset: 2px;
    }
    
    /* Better spacing for touch */
    .nav-menu li {
        margin: 1.5rem 0;
    }
    
    .hero-buttons {
        gap: 1.5rem;
    }
    
    .booking-features {
        gap: 1.2rem;
    }
}