/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Oswald:wght@400;500;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    /* Colors - Revo Style (Darker, bolder) */
    --color-bg: #111111;
    --color-text: #ffffff;
    --color-text-muted: #888888;
    --color-accent: #D4AF37;
    /* Gold */
    --color-border: rgba(255, 255, 255, 0.1);

    /* Fonts */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Oswald', sans-serif;
    /* For impact headers */
    --font-serif: 'Playfair Display', serif;
    /* For elegance */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-primary);
    overflow-x: hidden;
    cursor: none;
    /* Hide default cursor */
}

/* Smooth scroll behavior */
html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

/* Custom Cursor */
.cursor {
    width: 12px;
    height: 12px;
    background: var(--color-accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: all 0.15s ease;
}

.cursor.active {
    transform: translate(-50%, -50%) scale(2);
    background: transparent;
    border: 2px solid var(--color-accent);
}

.cursor-follower.active {
    width: 60px;
    height: 60px;
    border-color: var(--color-accent);
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-inner {
    text-align: center;
}

.preloader-text {
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--color-accent);
    letter-spacing: 10px;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

.preloader-line {
    width: 100px;
    height: 2px;
    background: rgba(212, 175, 55, 0.3);
    margin: 20px auto 0;
    position: relative;
    overflow: hidden;
}

.preloader-line::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 100%;
    background: var(--color-accent);
    animation: preloaderLine 1s ease-in-out infinite;
}

@keyframes preloaderPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

@keyframes preloaderLine {
    0% {
        left: -50%;
    }

    100% {
        left: 100%;
    }
}

/* Floating Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-accent);
    border-radius: 50%;
    opacity: 0.3;
    animation: floatParticle 15s infinite linear;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.3;
    }

    90% {
        opacity: 0.3;
    }

    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

/* Number Suffix Styling */
.number-suffix {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-accent);
}

/* 3D Tilt Effect Class */
.tilt-effect {
    transform-style: preserve-3d;
    transform: perspective(1000px);
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1400px;
    /* Wide layout */
    margin: 0 auto;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 30px 0;
    mix-blend-mode: difference;
    /* Ensures visibility on light/dark */
    transition: padding 0.3s;
}

.header.scrolled {
    background: rgba(17, 17, 17, 0.9);
    padding: 15px 0;
    backdrop-filter: blur(10px);
    mix-blend-mode: normal;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.desktop-nav a {
    margin: 0 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
    position: relative;
    padding-bottom: 5px;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: 0.3s;
}

.desktop-nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.lang-switcher button {
    background: none;
    border: none;
    color: var(--color-text-muted);
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1rem;
}

.lang-switcher button.active {
    color: var(--color-text);
}

.mobile-menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.line {
    display: block;
    width: 30px;
    height: 2px;
    background: var(--color-text);
    transition: 0.3s;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: 0.5s;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 20px;
}

.menu-link {
    font-family: var(--font-heading);
    font-size: 3rem;
    text-transform: uppercase;
    color: #ffffff !important;
    transition: 0.3s;
}

.menu-link:hover {
    color: #fff;
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
    /* Ensure background doesn't spill */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 17, 17, 0.75);
    /* Dark overlay for readability */
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Decorative Corner Lines */
.hero-corner {
    position: absolute;
    width: 100px;
    height: 100px;
    z-index: 3;
    pointer-events: none;
}

.hero-corner::before,
.hero-corner::after {
    content: '';
    position: absolute;
    background: var(--color-accent);
    opacity: 0.5;
}

.hero-corner-tl {
    top: 40px;
    left: 40px;
}

.hero-corner-tl::before {
    width: 60px;
    height: 1px;
    top: 0;
    left: 0;
}

.hero-corner-tl::after {
    width: 1px;
    height: 60px;
    top: 0;
    left: 0;
}

.hero-corner-tr {
    top: 40px;
    right: 40px;
}

.hero-corner-tr::before {
    width: 60px;
    height: 1px;
    top: 0;
    right: 0;
}

.hero-corner-tr::after {
    width: 1px;
    height: 60px;
    top: 0;
    right: 0;
}

.hero-corner-bl {
    bottom: 40px;
    left: 40px;
}

.hero-corner-bl::before {
    width: 60px;
    height: 1px;
    bottom: 0;
    left: 0;
}

.hero-corner-bl::after {
    width: 1px;
    height: 60px;
    bottom: 0;
    left: 0;
}

.hero-corner-br {
    bottom: 40px;
    right: 40px;
}

.hero-corner-br::before {
    width: 60px;
    height: 1px;
    bottom: 0;
    right: 0;
}

.hero-corner-br::after {
    width: 1px;
    height: 60px;
    bottom: 0;
    right: 0;
}

/* Hero Badge */
.hero-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.badge-text {
    font-size: 0.9rem;
    letter-spacing: 6px;
    color: var(--color-accent);
    font-family: var(--font-heading);
}

.badge-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

/* Hero Title - MEGA */
.hero-title {
    font-size: 10vw;
    line-height: 1;
    margin-bottom: 40px;
    font-weight: 700;
    letter-spacing: -2px;
}

.title-line {
    display: block;
    overflow: hidden;
}

.title-word {
    display: inline-block;
    text-shadow: 0 0 80px rgba(212, 175, 55, 0.3);
}

/* Animated Gradient Text */
.gradient-text {
    color: var(--color-accent);
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.5), 0 0 80px rgba(212, 175, 55, 0.3);
    animation: textGlow 3s ease-in-out infinite alternate;
    display: inline-block;
}

@keyframes textGlow {
    0% {
        text-shadow: 0 0 40px rgba(212, 175, 55, 0.5), 0 0 80px rgba(212, 175, 55, 0.3);
    }

    100% {
        text-shadow: 0 0 60px rgba(212, 175, 55, 0.8), 0 0 120px rgba(212, 175, 55, 0.5);
    }
}

.hero-desc {
    max-width: 600px;
    margin: 0 auto 40px;
    color: var(--color-text-muted);
    font-size: 1.2rem;
    line-height: 1.8;
}

.brands-list {
    display: inline-block;
    margin-top: 10px;
    font-weight: 500;
    color: var(--color-text);
}

.dot {
    color: var(--color-accent);
    margin: 0 5px;
}

/* Enhanced Button */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.btn-icon {
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-icon {
    transform: translateX(5px);
}

/* Scroll Indicator - Animated */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--color-text-muted);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-accent), transparent);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--color-accent), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% {
        top: -100%;
    }

    100% {
        top: 100%;
    }
}

.hero-desc {
    margin-bottom: 40px;
}

.btn {
    padding: 15px 40px;
    border: 1px solid var(--color-accent);
    text-transform: uppercase;
    font-family: var(--font-heading);
    letter-spacing: 2px;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    background: transparent;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    background: var(--color-accent);
    color: #000;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4), 0 0 60px rgba(212, 175, 55, 0.2);
    transform: translateY(-3px);
}

/* About Section */
.about {
    position: relative;
    overflow: hidden;
}

.section {
    padding: 120px 0;
}

/* Decorative Side Lines */
.about-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.deco-line {
    position: absolute;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--color-accent), transparent);
    opacity: 0.2;
}

.deco-line-left {
    left: 10%;
}

.deco-line-right {
    right: 10%;
}

/* Section Header */
.about-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-label {
    display: inline-block;
    font-size: 0.9rem;
    letter-spacing: 4px;
    color: var(--color-accent);
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.section-title-large {
    font-size: 6rem;
    line-height: 1;
    font-weight: 700;
}

.title-accent {
    display: block;
    color: var(--color-text);
}

.title-outline {
    display: block;
    -webkit-text-stroke: 2px var(--color-accent);
    color: transparent;
    transition: all 0.5s ease;
}

.section-title-large:hover .title-outline {
    color: var(--color-accent);
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* About Text */
.about-intro {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.intro-line {
    width: 3px;
    background: var(--color-accent);
    flex-shrink: 0;
}

.lead {
    font-size: 1.4rem;
    color: #fff;
    line-height: 1.6;
    font-weight: 300;
}

.about-desc {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 50px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 30px 20px;
    text-align: center;
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(212, 175, 55, 0.15);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-icon {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--color-accent);
}

.stat-number {
    display: inline-block;
    font-size: 3.5rem;
    font-family: var(--font-heading);
    color: var(--color-accent);
    line-height: 1;
}

.stat-suffix {
    font-size: 2rem;
    color: var(--color-accent);
    font-family: var(--font-heading);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
}

/* About Image */
.img-frame {
    position: relative;
    width: 400px;
    margin-left: auto;
}

.frame-corner {
    position: absolute;
    width: 80px;
    height: 80px;
    z-index: 10;
}

.frame-corner::before,
.frame-corner::after {
    content: '';
    position: absolute;
    background: var(--color-accent);
}

.frame-tl {
    top: -15px;
    left: -15px;
}

.frame-tl::before {
    width: 50px;
    height: 2px;
    top: 0;
    left: 0;
}

.frame-tl::after {
    width: 2px;
    height: 50px;
    top: 0;
    left: 0;
}

.frame-br {
    bottom: -15px;
    right: -15px;
}

.frame-br::before {
    width: 50px;
    height: 2px;
    bottom: 0;
    right: 0;
}

.frame-br::after {
    width: 2px;
    height: 50px;
    bottom: 0;
    right: 0;
}

.about-image .img-box {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
}

.about-image .img-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-image:hover .img-box::after {
    opacity: 1;
}

.about-image .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.about-image:hover .img-box img {
    transform: scale(1.05);
}


/* Portfolio */
.portfolio-grid {
    display: grid;
    gap: 50px;
    /* Vertical stacking */
    margin-top: 60px;
}

.project-item {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: center;
}

.project-item:nth-child(even) {
    direction: rtl;
    /* Flip alternates */
}

.project-item:nth-child(even) .project-info {
    direction: ltr;
}

.project-img {
    height: 400px;
    background-color: #222;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease;
    overflow: hidden;
    position: relative;
}

.project-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.project-item:hover .project-img {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(212, 175, 55, 0.15);
}

.project-item:hover .project-img::before {
    opacity: 1;
}

.choice-bg {
    background-image: url('../images/portfolio-choice.png');
    background-size: cover;
    background-position: center;
}

.lana-bg {
    background-image: url('../images/portfolio-lana.png');
    background-size: cover;
    background-position: center;
}

.shopusb-bg {
    background-image: url('../images/portfolio-shopusb.png');
    background-size: cover;
    background-position: center;
}

.cleaning-bg {
    background-image: url('../images/portfolio-cleaning.png');
    background-size: cover;
    background-position: center;
}

.project-info h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.project-info p {
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.link-arrow {
    text-transform: uppercase;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text);
    transition: color 0.3s ease, gap 0.3s ease;
}

.link-arrow::after {
    content: '→';
    transition: transform 0.3s ease;
}

.link-arrow:hover {
    color: var(--color-accent);
    gap: 15px;
}

.link-arrow:hover::after {
    transform: translateX(5px);
}

/* Services/Expertise */
.services-list {
    border-top: 1px solid var(--color-border);
}

.service-item {
    padding: 40px 0;
    border-bottom: 1px solid var(--color-border);
    display: grid;
    grid-template-columns: 0.5fr 2fr 3fr;
    align-items: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

.service-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0;
    background: var(--color-accent);
    transition: height 0.4s ease;
}

.service-item:hover::before {
    height: 100%;
}

.service-item:hover {
    background: rgba(212, 175, 55, 0.03);
    padding-left: 30px;
}

.service-item .num {
    color: var(--color-accent);
    font-family: var(--font-heading);
}

.service-item h3 {
    font-size: 2rem;
}

.service-item p {
    color: var(--color-text-muted);
}

/* Contact */
.big-center {
    font-size: 5vw;
    text-align: center;
    margin-bottom: 60px;
}

.contact-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.email-link {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 15px;
    word-break: break-all;
    overflow-wrap: break-word;
}

.phone-link {
    font-size: 1.3rem;
    display: block;
    margin-bottom: 30px;
    color: var(--color-text-muted);
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: var(--color-accent);
}

.socials {
    display: flex;
    gap: 20px;
}

.socials a {
    font-family: var(--font-heading);
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.simple-form {
    width: 400px;
}

.simple-form input {
    width: 100%;
    background: none;
    border: none;
    border-bottom: 1px solid #555;
    padding: 15px 0;
    color: #fff;
    margin-bottom: 20px;
    outline: none;
}

.simple-form input:focus {
    border-color: var(--color-accent);
}

.simple-form button {
    background: none;
    border: 1px solid #fff;
    color: #fff;
    padding: 10px 30px;
    cursor: pointer;
    font-family: var(--font-heading);
    text-transform: uppercase;
    margin-top: 20px;
    transition: 0.3s;
}

.simple-form button:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #000;
}

/* Footer */
.footer {
    padding: 20px 0;
    border-top: 1px solid var(--color-border);
    margin-top: 50px;
    font-size: 0.8rem;
    color: #666;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 8vw;
    }

    .section-title-large {
        font-size: 4rem;
    }

    .about-wrapper {
        gap: 60px;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .stat-card {
        padding: 20px 15px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .img-frame {
        width: 350px;
    }

    .portfolio-grid {
        gap: 60px;
    }

    .service-item {
        grid-template-columns: 0.5fr 2fr 2fr;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {

    /* Hide desktop nav, show mobile */
    .desktop-nav {
        display: none;
    }

    /* Hero adjustments */
    .hero-corner {
        display: none;
    }

    .hero-title {
        font-size: 12vw;
    }

    .hero-badge {
        flex-direction: column;
        gap: 10px;
    }

    .badge-line {
        width: 40px;
    }

    .badge-text {
        font-size: 0.75rem;
        letter-spacing: 3px;
    }

    .hero-desc {
        font-size: 1rem;
    }

    .scroll-indicator {
        display: none;
    }

    /* About adjustments */
    .section {
        padding: 80px 0;
    }

    .about-header {
        margin-bottom: 50px;
    }

    .section-title-large {
        font-size: 3rem;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-intro {
        flex-direction: column;
        gap: 15px;
    }

    .intro-line {
        width: 60px;
        height: 3px;
    }

    .lead {
        font-size: 1.2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-card {
        display: flex;
        align-items: center;
        gap: 20px;
        text-align: left;
        padding: 20px;
    }

    .stat-icon {
        font-size: 2.5rem;
        margin-bottom: 0;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        margin-top: 0;
    }

    .img-frame {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }

    .about-image .img-box {
        height: 400px;
    }

    /* Portfolio adjustments */
    .portfolio-grid {
        gap: 50px;
    }

    .project-item {
        grid-template-columns: 1fr;
        text-align: left !important;
    }

    .project-item:nth-child(even) {
        direction: ltr;
    }

    .project-img {
        height: 300px;
    }

    .project-info h3 {
        font-size: 1.8rem;
    }

    /* Services adjustments */
    .service-item {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 30px 0;
    }

    .service-item .num {
        font-size: 0.9rem;
    }

    .service-item h3 {
        font-size: 1.5rem;
    }

    /* Contact adjustments */
    .contact-row {
        flex-direction: column;
        gap: 50px;
    }

    .simple-form {
        width: 100%;
    }

    /* Email - smaller on mobile */
    .email-link {
        font-size: 1rem;
    }

    .phone-link {
        font-size: 1.1rem;
    }

    /* Custom cursor - hide on touch devices */
    .cursor,
    .cursor-follower {
        display: none;
    }

    /* Particles - reduce on mobile */
    .particles {
        opacity: 0.5;
    }

    /* Preloader text smaller */
    .preloader-text {
        font-size: 3rem;
    }
}

/* Responsive - Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 14vw;
    }

    .section-title-large {
        font-size: 2.5rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.85rem;
    }

    .stat-card {
        padding: 15px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .project-img {
        height: 250px;
    }
}