/* Font Face - Avenir (Backup) */
@font-face {
    font-family: 'Avenir';
    src: url('Avenir-Black.woff2') format('woff2'),
         url('Avenir-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* Font Face - Tanker Regular */
@font-face {
    font-family: 'Tanker';
    src: url('WEB/fonts/Tanker-Regular.woff2') format('woff2'),
         url('WEB/fonts/Tanker-Regular.woff') format('woff'),
         url('WEB/fonts/Tanker-Regular.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Inter', 'Arial', sans-serif;
    overflow-x: hidden;
    background: #000;
    color: #fff;
    cursor: default;
    scroll-behavior: smooth;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Cursor */
body * {
    cursor: inherit;
}

a, button, .work-card, .slider-btn, .menu-close, .modal-close, .hamburger {
    cursor: pointer;
}

/* Smooth scrolling - Natural flow */
.sections-container {
    width: 100%;
    position: relative;
}

/* Smooth scroll for all elements */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 0;
}

body {
    scroll-behavior: smooth;
}

/* Sections Container */
.sections-container {
    width: 100%;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #2d5f3d 0%, #3a7548 50%, #2d5f3d 100%);
}

/* Hide scrollbar but keep functionality */
body::-webkit-scrollbar {
    display: none;
}

body {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Selection Color */
::selection {
    background: #4CAF50;
    color: white;
}

::-moz-selection {
    background: #4CAF50;
    color: white;
}

/* Section Base */
.section {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
}

.about-section {
    position: relative;
    z-index: 2;
    min-height: 100vh;
}

.work-section {
    position: relative;
    z-index: 3;
}

#section4 {
    position: relative;
    z-index: 4;
}

.slider-section {
    position: relative;
    z-index: 5;
}

.services-section {
    position: relative;
    z-index: 6;
}

.how-we-work-section {
    position: relative;
    z-index: 7;
}

.contact-section {
    position: relative;
    z-index: 8;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 5.5vh 4.4vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    mix-blend-mode: difference;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(10, 15, 10, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 3vh 4.4vw;
    mix-blend-mode: normal;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.logo {
    font-family: 'Poppins', 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.navbar.scrolled .logo {
    color: #4CAF50;
}

.logo sup {
    font-size: 10px;
}

.hamburger {
    width: 30px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 10002;
    position: relative;
    mix-blend-mode: difference;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.navbar.scrolled .hamburger {
    mix-blend-mode: normal;
}

.navbar.scrolled .hamburger span {
    background: #4CAF50;
}

/* Fullscreen Menu */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.5s;
}

.fullscreen-menu.active {
    opacity: 1;
    visibility: visible;
}

.menu-close {
    position: fixed;
    top: 5.5vh;
    right: 4.4vw;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
}

.menu-close:hover {
    background: #4CAF50;
    border-color: #4CAF50;
    transform: rotate(90deg);
}

.menu-content {
    width: 90%;
    max-width: 1400px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 100px;
    padding: 0 5vw;
}

.menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-links li {
    margin-bottom: 15px;
    overflow: hidden;
}

.menu-link {
    display: inline-block;
    font-size: clamp(32px, 4.5vw, 60px);
    font-weight: 900;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
    transform: translateY(100%);
    opacity: 0;
}

.fullscreen-menu.active .menu-link {
    animation: slideUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.menu-links li:nth-child(1) .menu-link {
    animation-delay: 0.1s;
}

.menu-links li:nth-child(2) .menu-link {
    animation-delay: 0.15s;
}

.menu-links li:nth-child(3) .menu-link {
    animation-delay: 0.2s;
}

.menu-links li:nth-child(4) .menu-link {
    animation-delay: 0.25s;
}

.menu-links li:nth-child(5) .menu-link {
    animation-delay: 0.3s;
}

.menu-links li:nth-child(6) .menu-link {
    animation-delay: 0.35s;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.menu-link:hover {
    color: #4CAF50;
    transform: translateX(20px);
}

.menu-link.active {
    color: #4CAF50;
}

.menu-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 40px;
    padding-bottom: 20px;
}

.menu-info h4,
.menu-social h4 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.menu-info p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #4CAF50;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0a1612 0%, #1a2e24 50%, #0d1f17 100%);
    overflow: hidden;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(76, 175, 80, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-title {
    font-family: 'Tanker', 'Playball', cursive;
    font-size: clamp(90px, 31vw, 7000px);
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 100vh;
    margin: 0;
    width: 100%;
    text-align: center;
    padding: 0;
    position: relative;
}

.hero-line {
    display: block;
    background: url('hero.gif') center center / 100vw 100vh;
    background-attachment: fixed;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    transform: scaleY(1.4);
    transform-origin: center;
    animation: slideInFromCenter 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Mobile/Desktop Text Visibility */
.mobile-text {
    display: none;
}

.desktop-text {
    display: inline;
}

.mobile-text {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 0;
    line-height: 0.85;
}

.by-text,
.plant-text {
    display: block;
}

@keyframes slideInFromCenter {
    0% {
        opacity: 0;
        transform: scaleY(1.4) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scaleY(1.4) scale(1);
    }
}

.hero-vertical-text {
    position: absolute;
    right: 20vw;
    top: 52%;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-family: 'Tanker', 'Playball', cursive;
    font-size: clamp(100px, 11vw, 190px);
    font-weight: 700;
    font-weight: 400;
    letter-spacing: 25px;
    background: url('hero.gif') center center / 100vw 100vh;
    background-attachment: fixed;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    line-height: 1;
    animation: slideInFromRight 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        right: -100vw;
    }
    100% {
        opacity: 1;
        right: 15vw;
    }
}

.hero-subtitle {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-subtitle span {
    position: absolute;
    bottom: 2vh;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(24px, 4vw, 60px);
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: lowercase;
    color: #fff;
    opacity: 0;
    animation: fadeInUp 1s ease 0.6s forwards;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle span:first-child {
    left: 2vw;
    animation-delay: 0.8s;
}

.hero-subtitle span:last-child {
    right: 2vw;
    animation-delay: 1s;
}

/* About Section */
.about-section {
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(76, 175, 80, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(56, 142, 60, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.about-content {
    max-width: 1400px;
    width: 90%;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
    align-items: center;
}

.about-left {
    transform: translateX(-300px);
    will-change: transform;
}

.about-right {
    transform: translateX(300px);
    will-change: transform;
}

.about-title {
    font-family: 'Poppins', 'Avenir', sans-serif;
    font-size: clamp(80px, 10vw, 120px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
}

.title-line {
    display: block;
    position: relative;
}

.highlight-box {
    display: inline-block;
    height: clamp(45px, 12vw, 90px);
    background: #ffffff;
    border-radius: 20px;
    vertical-align: middle;
    margin: 0;
    transform: translateY(-14px);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.contact-btn {
    font-family: 'Poppins', sans-serif;
    padding: 18px 50px;
    background: #ffffff;
    border: 2px solid #ffffff;
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

.contact-btn:hover {
    background: transparent;
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.4);
}

.about-right p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
}

/* Work Section */
/* ===== WORK SECTION (REDESIGNED) ===== */
.work-section {
    background: linear-gradient(180deg, #0a0f0c 0%, #0f1a14 50%, #0a0f0c 100%);
    position: relative;
    min-height: 100vh;
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.work-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(76, 175, 80, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(76, 175, 80, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.work-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.work-main-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 900;
    color: #4CAF50;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(76, 175, 80, 0.4);
}

.work-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    letter-spacing: 0.5px;
}

.work-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    width: 90%;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.work-card {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.work-card:hover {
    transform: translateY(-12px);
}

.work-card-inner {
    width: 100%;
    height: 100%;
    position: relative;
}

.work-card-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.work-card-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(0, 0, 0, 0.3) 40%, 
        rgba(0, 0, 0, 0.8) 100%
    );
    transition: opacity 0.4s ease;
}

.work-card:hover .work-card-image {
    transform: scale(1.08);
}

.work-card:hover .work-card-image::before {
    opacity: 0.9;
}

.work-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(13, 18, 13, 0.6) 50%, 
        rgba(13, 18, 13, 0.95) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 30px;
    transition: all 0.4s ease;
}

.work-card:hover .work-card-overlay {
    background: linear-gradient(180deg, 
        rgba(76, 175, 80, 0.1) 0%, 
        rgba(13, 18, 13, 0.8) 50%, 
        rgba(13, 18, 13, 0.98) 100%
    );
}

.work-card-content {
    width: 100%;
    transform: translateY(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.work-card:hover .work-card-content {
    transform: translateY(-8px);
}

.work-card-number {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #4CAF50;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
    opacity: 0.8;
}

.work-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.work-card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.work-card:hover .work-card-desc {
    opacity: 1;
    transform: translateY(0);
}

.work-card-btn {
    padding: 12px 28px;
    background: transparent;
    border: 2px solid #4CAF50;
    color: #4CAF50;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.work-card:hover .work-card-btn {
    opacity: 1;
    transform: translateY(0);
}

.work-card-btn:hover {
    background: #4CAF50;
    color: #0a0f0c;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
    transform: translateY(-2px);
}

.view-all-btn {
    padding: 20px 60px;
    background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
    border: 2px solid #4CAF50;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 2px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    margin: 60px auto 0;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.4);
    position: relative;
    overflow: hidden;
}

.view-all-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.view-all-btn:hover::before {
    left: 100%;
}

.view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.6);
    border-color: #66BB6A;
    background: linear-gradient(135deg, #66BB6A 0%, #4CAF50 100%);
}

/* Work Modal */
.work-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.work-modal.active {
    display: flex;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    height: 80vh;
    max-height: 700px;
    margin: auto;
    background: #0a0f0a;
    border-radius: 20px;
    overflow: hidden;
    z-index: 10000;
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(76, 175, 80, 0.2);
    display: flex;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 32px;
    font-weight: 300;
    cursor: pointer;
    z-index: 10003;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
    padding: 0;
}

.modal-close:hover {
    color: #4CAF50;
    transform: rotate(90deg);
}

.modal-body {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

/* ===== BEFORE/AFTER COMPARISON SLIDER ===== */
.comparison-container {
    flex: 0 0 50%;
    width: 50%;
    background: #000;
    position: relative;
    overflow: hidden;
}

.comparison-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    user-select: none;
}

.comparison-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.comparison-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

/* Before image (Sol taraf) */
.before-image {
    z-index: 1;
}

/* After image (Sağ taraf) - Clip path ile kesilecek */
.after-image {
    z-index: 2;
    clip-path: inset(0 0 0 50%);
}

/* Labels (Öncesi/Sonrası etiketleri) */
.comparison-label {
    position: absolute;
    top: 30px;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 8px;
    z-index: 10;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.before-label {
    left: 30px;
    background: rgba(239, 83, 80, 0.9);
    border-color: rgba(239, 83, 80, 0.5);
}

.after-label {
    right: 30px;
    background: rgba(76, 175, 80, 0.9);
    border-color: rgba(76, 175, 80, 0.5);
}

/* Slider Handle (Kaydırılabilir çizgi) */
.comparison-handle {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: transparent;
    cursor: ew-resize;
    z-index: 100;
    transition: none;
}

.handle-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: #fff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.handle-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    gap: 4px;
    transition: transform 0.2s ease;
}

.comparison-handle:hover .handle-circle {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 30px rgba(76, 175, 80, 0.6);
}

.comparison-handle:active .handle-circle {
    transform: translate(-50%, -50%) scale(0.95);
}

.handle-circle svg {
    width: 16px;
    height: 16px;
    stroke: #4CAF50;
    stroke-width: 3;
}

/* Modal Details Section */
.modal-details {
    flex: 0 0 50%;
    width: 50%;
    padding: 50px 40px;
    overflow-y: auto;
    background: linear-gradient(135deg, #0d120d 0%, #1a2520 100%);
}

.modal-details::-webkit-scrollbar {
    width: 8px;
}

.modal-details::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.modal-details::-webkit-scrollbar-thumb {
    background: rgba(76, 175, 80, 0.5);
    border-radius: 10px;
}

.modal-details::-webkit-scrollbar-thumb:hover {
    background: rgba(76, 175, 80, 0.7);
}

.modal-details h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 800;
    color: #4CAF50;
    margin-bottom: 25px;
    line-height: 1.2;
}

.modal-description {
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 35px;
}

.modal-description p {
    margin-bottom: 18px;
}

.modal-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(76, 175, 80, 0.2);
}

.info-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

.info-label {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.info-value {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #4CAF50;
}

/* Modal Responsive */
@media (max-width: 1024px) {
    .modal-content {
        width: 95%;
        height: 85vh;
        max-height: 85vh;
    }

    .comparison-container {
        flex: 0 0 45%;
        width: 45%;
    }

    .modal-details {
        flex: 0 0 55%;
        width: 55%;
        padding: 40px 30px;
    }

    .comparison-label {
        font-size: 12px;
        padding: 8px 16px;
        top: 20px;
    }

    .before-label {
        left: 20px;
    }

    .after-label {
        right: 20px;
    }

    .handle-circle {
        width: 50px;
        height: 50px;
    }

    .handle-circle svg {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 768px) {
    .modal-content {
        width: 98%;
        height: 90vh;
        border-radius: 16px;
        flex-direction: column;
    }

    .modal-body {
        flex-direction: column;
    }

    .comparison-container {
        flex: 0 0 55%;
        width: 100%;
    }

    .modal-details {
        flex: 0 0 45%;
        width: 100%;
        padding: 30px 25px;
    }

    .modal-close {
        width: 36px;
        height: 36px;
        font-size: 28px;
        top: 15px;
        right: 15px;
    }

    .modal-details h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .modal-description {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 25px;
    }

    .comparison-label {
        font-size: 11px;
        padding: 6px 12px;
        top: 15px;
    }

    .before-label {
        left: 15px;
    }

    .after-label {
        right: 15px;
    }

    .handle-circle {
        width: 45px;
        height: 45px;
    }

    .handle-circle svg {
        width: 12px;
        height: 12px;
    }

    .modal-info {
        gap: 12px;
        margin-top: 20px;
        padding-top: 20px;
    }

    .info-item {
        padding: 10px 0;
    }

    .info-label {
        font-size: 11px;
    }

    .info-value {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .modal-close {
        width: 32px;
        height: 32px;
        font-size: 26px;
        top: 10px;
        right: 10px;
    }

    .comparison-container {
        flex: 0 0 50%;
    }

    .modal-details {
        flex: 0 0 50%;
        padding: 25px 20px;
    }

    .modal-details h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .modal-description {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .comparison-label {
        font-size: 10px;
        padding: 5px 10px;
        top: 10px;
    }

    .before-label {
        left: 10px;
    }

    .after-label {
        right: 10px;
    }

    .handle-circle {
        width: 40px;
        height: 40px;
    }

    .handle-circle svg {
        width: 10px;
        height: 10px;
    }

    .modal-info {
        gap: 10px;
        margin-top: 18px;
        padding-top: 18px;
    }

    .info-item {
        padding: 8px 0;
    }

    .info-label {
        font-size: 10px;
    }

    .info-value {
        font-size: 14px;
    }
}

.view-all-btn:hover {
    background: #fff;
    color: #1a1a2e;
}

/* Horizontal Slider Section */
.slider-section {
    background: #000;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
}

.services-section {
    background: linear-gradient(180deg, #0f1a14 0%, #1a2e24 50%, #0f1a14 100%);
    flex-direction: column;
    gap: 40px;
    padding: 80px 0;
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(76, 175, 80, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 70% 80%, rgba(76, 175, 80, 0.04) 0%, transparent 40%);
    pointer-events: none;
}

.section-heading {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 800;
    color: #4CAF50;
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: -0.02em;
}

.services-intro {
    max-width: 1000px;
    margin: 0 auto 60px;
    padding: 0 5vw;
    text-align: center;
}

.services-main-text {
    font-family: 'Inter', sans-serif;
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 400;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.services-question {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(20px, 2.5vw, 32px);
    line-height: 1.6;
    color: #4CAF50;
    margin-bottom: 30px;
    font-weight: 600;
}

.services-question strong {
    font-weight: 800;
}

.services-approach {
    font-family: 'Inter', sans-serif;
    font-size: clamp(16px, 1.8vw, 20px);
    font-weight: 400;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

.horizontal-slider {
    width: 90%;
    max-width: 1400px;
    overflow: hidden;
    position: relative;
}

.slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 40px;
}

.slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.slide-content {
    text-align: center;
    max-width: 800px;
}

.slide-content h3 {
    font-size: clamp(50px, 8vw, 120px);
    font-weight: 900;
    color: #4CAF50;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.slide-content p {
    font-size: clamp(18px, 2vw, 28px);
    line-height: 1.6;
    color: #fff;
}

/* Service Slides */
.service-slide {
    background: linear-gradient(135deg, rgba(45, 95, 61, 0.15) 0%, rgba(58, 117, 72, 0.1) 100%);
    border: 1px solid rgba(76, 175, 80, 0.1);
    border-radius: 30px;
    padding: 80px 60px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.service-content {
    text-align: left;
    max-width: 600px;
}

.service-icon {
    font-size: 80px;
    font-weight: 900;
    color: #4CAF50;
    margin-bottom: 30px;
    opacity: 0.3;
}

.service-content h3 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 20px;
}

.service-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.service-content p:last-child {
    margin-bottom: 0;
}

/* How We Work Section */
.how-we-work-section {
    background: linear-gradient(135deg, #2d5f3d 0%, #3a7548 30%, #45855a 50%, #3a7548 70%, #2d5f3d 100%);
    padding: 100px 0;
    position: relative;
}

.how-we-work-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.1) 0%, transparent 30%);
    pointer-events: none;
}

.how-content {
    max-width: 1400px;
    width: 90%;
    margin: 0 auto;
}

.how-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(50px, 8vw, 100px);
    font-weight: 800;
    color: #fff;
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: -0.02em;
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
}

.how-item {
    text-align: left;
}

.how-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 120px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.15);
    line-height: 1;
    margin-bottom: 20px;
}

.how-item h3 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.how-item p {
    font-family: 'Inter', sans-serif;
    font-size: clamp(16px, 1.8vw, 20px);
    font-weight: 400;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

/* Slider Controls */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: transparent;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: #4CAF50;
    border-color: #4CAF50;
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #4CAF50;
    width: 40px;
    border-radius: 6px;
}

/* Contact Section - removed duplicate, keeping the modern version below */

.contact-content {
    max-width: 1400px;
    width: 90%;
    text-align: center;
}

.contact-title {
    font-size: clamp(60px, 10vw, 140px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 80px;
    line-height: 1.1;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    margin-top: 60px;
}

.contact-item h4 {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.contact-item p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

@keyframes scrollDown {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(350%);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .work-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        width: 95%;
    }

    .work-header {
        margin-bottom: 60px;
    }

    .navbar {
        padding: 20px 30px;
    }

    .menu-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .menu-link {
        font-size: clamp(28px, 6vw, 45px);
    }

    .menu-close {
        top: 20px;
        right: 30px;
        width: 45px;
        height: 45px;
        font-size: 28px;
    }

    .menu-right {
        flex-direction: row;
        justify-content: space-between;
        gap: 30px;
    }

    .hero-line {
        transform: scaleY(1.4);
    }

    .hero-vertical-text {
        font-size: clamp(50px, 9vw, 120px);
        right: 3vw;
        letter-spacing: 5px;
    }
}

@media (max-width: 768px) {
    .hero-subtitle {
        flex-direction: column;
        gap: 10px;
    }
    
    .about-left,
    .about-right {
        transform: translateX(0) !important;
    }

    .work-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .work-section {
        padding: 60px 0;
    }

    .work-header {
        margin-bottom: 50px;
    }

    .menu-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 8vw;
    }

    .menu-link {
        font-size: clamp(24px, 8vw, 36px);
    }

    .menu-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .menu-right {
        flex-direction: column;
        gap: 25px;
    }

    .menu-info h4,
    .menu-social h4 {
        font-size: 12px;
    }

    .menu-info p {
        font-size: 16px;
    }

    .hero-line {
        transform: scaleY(1.4);
    }

    .hero-vertical-text {
        font-size: clamp(40px, 8vw, 80px);
        right: 2vw;
        letter-spacing: 3px;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .how-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .how-number {
        font-size: 80px;
    }

    .services-intro {
        padding: 0 8vw;
    }

    .slide {
        padding: 40px 20px;
    }

    .service-slide {
        padding: 60px 40px;
    }

    .slider-controls {
        gap: 20px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 999;
    box-shadow: 0 5px 25px rgba(91, 135, 15, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top:hover {
    background: linear-gradient(135deg, #66BB6A 0%, #4CAF50 100%);
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(91, 135, 15, 0.5);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

/* ===== SCROLL PROGRESS INDICATOR ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #4CAF50 0%, #66BB6A 100%);
    width: 0%;
    z-index: 9999;
    transition: width 0.1s ease-out;
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
}

/* ===== MOSS SECTION (SHOPIER) ===== */
.moss-section {
    background: linear-gradient(135deg, #0d1612 0%, #1a2e24 30%, #152119 50%, #1a2e24 70%, #0d1612 100%);
    padding: 0 8vw;
    position: relative;
}

.moss-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 70% 30%, rgba(76, 175, 80, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 30% 70%, rgba(56, 142, 60, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

.moss-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.moss-title {
    font-family: 'Poppins', 'Avenir', sans-serif;
    font-size: clamp(42px, 5.5vw, 72px);
    font-weight: 800;
    color: #4CAF50;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.moss-description {
    font-family: 'Inter', sans-serif;
    color: rgba(255, 255, 255, 0.85);
    font-size: clamp(16px, 1.8vw, 20px);
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 35px;
}

.moss-feature {
    font-family: 'Inter', sans-serif;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 12px;
    padding-left: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.shopier-btn {
    font-family: 'Poppins', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    margin-top: 30px;
    box-shadow: 0 5px 25px rgba(76, 175, 80, 0.3);
    position: relative;
    overflow: hidden;
}

.shopier-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.shopier-btn:hover::before {
    left: 100%;
}

.shopier-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(76, 175, 80, 0.5);
}

.shopier-btn svg {
    transition: transform 0.3s ease;
}

.shopier-btn:hover svg {
    transform: translateX(5px);
}

.moss-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.moss-image-container {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid rgba(76, 175, 80, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.moss-image-container:hover {
    border-color: rgba(76, 175, 80, 0.6);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(76, 175, 80, 0.3);
}

.moss-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.moss-image-container:hover .moss-image {
    transform: scale(1.05);
}

/* ===== MODERN CONTACT SECTION ===== */
.contact-section {
    background: linear-gradient(180deg, #0a0f0a 0%, #0d1612 50%, #000 100%);
    padding: 0 8vw;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 20%, rgba(76, 175, 80, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.contact-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-title {
    font-family: 'Montserrat', 'Avenir', sans-serif;
    font-size: clamp(52px, 8vw, 96px);
    font-weight: 900;
    color: #fff;
    line-height: 0.95;
    margin-bottom: 70px;
    letter-spacing: -0.03em;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.contact-col {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4CAF50;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: rgba(76, 175, 80, 0.2);
    border-color: #4CAF50;
    transform: translateY(-3px);
}

.contact-item h4 {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 4px;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 16px;
    line-height: 1.6;
    display: block;
    transition: all 0.3s ease;
    margin-bottom: 6px;
}

.contact-item a:hover {
    color: #4CAF50;
    transform: translateX(5px);
}

/* ===== ENHANCED BUTTON STYLES ===== */
.contact-btn {
    position: relative;
    overflow: hidden;
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.contact-btn:hover::before {
    width: 300px;
    height: 300px;
}

/* ===== LOADING ANIMATION ===== */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* ===== ENHANCED MODAL ===== */
.modal-close {
    transition: all 0.3s ease;
}

.modal-close:hover {
    transform: rotate(90deg) scale(1.1);
    color: #4CAF50;
}

/* ===== RESPONSIVE - MOSS & CONTACT ===== */
@media (max-width: 1024px) {
    .moss-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .moss-visual {
        order: -1;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    /* Mobile text visibility */
    .desktop-text {
        display: none !important;
    }
    
    .mobile-text {
        display: flex !important;
    }
    
    .hero-title {
        font-size: clamp(70px, 32vw, 250px);
        line-height: 1.1;
    }
    
    .hero-line {
        transform: scaleY(1.2);
    }
    
    .hero-subtitle {
        font-size: clamp(14px, 4vw, 20px);
        gap: 15px;
        margin-top: 30px;
    }
    
    /* Navbar */
    .navbar {
        padding: 20px;
    }
    
    .navbar.scrolled {
        padding: 15px 20px;
    }
    
    .logo {
        font-size: 16px;
    }
    
    .hamburger {
        width: 28px;
        height: 18px;
    }
    
    .hamburger span {
        height: 2.5px;
    }
    
    /* Rest of 768px styles */
    .moss-section {
        padding: 0 5vw;
    }
    
    .moss-title {
        font-size: 36px;
    }
    
    .shopier-btn {
        width: 100%;
        justify-content: center;
    }
    
    .contact-section {
        padding: 0 5vw;
    }
    
    .contact-title {
        font-size: 42px;
        margin-bottom: 50px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* ===== ENHANCED MOBILE OPTIMIZATION (480px and below) ===== */
@media (max-width: 480px) {
    /* Navbar */
    .navbar {
        padding: 15px 20px;
    }
    
    .logo {
        font-size: 26px;
    }
    
    .hamburger {
        width: 26px;
        height: 18px;
    }
    
    .hamburger span {
        height: 2.5px;
    }
    
    /* Hero Section */
    .hero-title {
        font-size: clamp(60px, 28vw, 200px);
        line-height: 1.1;
    }
    
    .hero-line {
        transform: scaleY(1.15);
    }
    
    .hero-subtitle {
        font-size: clamp(12px, 3.5vw, 18px);
        gap: 12px;
        margin-top: 25px;
    }
    
    .hero-vertical-text {
        font-size: clamp(35px, 7vw, 60px);
        right: 1vw;
        letter-spacing: 2px;
    }
    
    .hero-subtitle span {
        font-size: clamp(18px, 3.5vw, 28px);
    }
    
    /* About Section */
    .about-content {
        width: 95%;
        padding: 0 20px;
    }
    
    .about-left,
    .about-right {
        transform: translateX(0) !important;
    }
    
    .about-title {
        font-size: clamp(40px, 12vw, 70px);
    }
    
    .highlight-box {
        height: clamp(25px, 10vw, 50px);
        transform: translateY(-8px);
        border-radius: 12px;
    }
    
    .about-right p {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .contact-btn {
        padding: 16px 40px;
        font-size: 14px;
        width: 100%;
    }
    
    /* Work Section */
    .work-content {
        padding: 0 20px;
    }
    
    .work-title {
        font-size: clamp(50px, 15vw, 100px);
        margin-bottom: 30px;
        text-align: center;
    }
    
    .work-grid {
        height: auto;
        flex-direction: column;
        gap: 20px;
        margin-left: 0;
    }
    
    .work-vertical,
    .work-horizontal {
        height: 250px;
        flex: none;
    }
    
    .work-horizontal-wrapper {
        gap: 20px;
    }
    
    .work-description {
        font-size: 16px;
        margin-top: 12px;
    }
    
    /* Moss Section */
    .moss-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 0;
    }
    
    .moss-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .moss-description {
        font-size: 15px;
        margin-bottom: 25px;
    }
    
    .moss-feature {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .shopier-btn {
        padding: 16px 35px;
        font-size: 15px;
        margin-top: 20px;
    }
    
    .moss-image-container {
        border-radius: 16px;
        border-width: 2px;
    }
    
    /* Services Section */
    .services-section {
        padding: 60px 0;
    }
    
    .section-heading {
        font-size: clamp(32px, 8vw, 50px);
        margin-bottom: 15px;
    }
    
    .services-intro {
        padding: 0 20px;
        margin-bottom: 40px;
    }
    
    .services-main-text {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .services-question {
        font-size: clamp(18px, 5vw, 24px);
        margin-bottom: 20px;
    }
    
    .services-approach {
        font-size: 15px;
    }
    
    .horizontal-slider {
        width: 95%;
    }
    
    .slide {
        padding: 30px 15px;
    }
    
    .service-slide {
        padding: 40px 25px;
        border-radius: 20px;
    }
    
    .service-icon {
        font-size: 60px;
        margin-bottom: 20px;
    }
    
    .service-content h3 {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .service-content p {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 12px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .dot.active {
        width: 30px;
    }
    
    /* How We Work Section */
    .how-we-work-section {
        padding: 60px 0;
    }
    
    .how-content {
        width: 95%;
    }
    
    .how-title {
        font-size: clamp(40px, 10vw, 60px);
        margin-bottom: 50px;
    }
    
    .how-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .how-number {
        font-size: 80px;
        margin-bottom: 15px;
    }
    
    .how-item h3 {
        font-size: clamp(24px, 6vw, 32px);
        margin-bottom: 15px;
    }
    
    .how-item p {
        font-size: 15px;
        line-height: 1.7;
    }
    
    /* Contact Section */
    .contact-content-wrapper {
        width: 95%;
    }
    
    .contact-title {
        font-size: clamp(36px, 10vw, 60px);
        margin-bottom: 40px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .contact-col {
        gap: 30px;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        border-radius: 10px;
    }
    
    .contact-item h4 {
        font-size: 12px;
        margin-bottom: 6px;
    }
    
    .contact-item p,
    .contact-item a {
        font-size: 15px;
        line-height: 1.5;
    }
    
    /* Modal */
    .modal-content {
        width: 100%;
        height: 95vh;
        margin: 10px;
        border-radius: 12px;
    }
    
    .modal-close {
        width: 38px;
        height: 38px;
        font-size: 26px;
        top: 12px;
        right: 12px;
    }
    
    .modal-text h2 {
        font-size: 22px;
    }
    
    .modal-description {
        font-size: 14px;
    }
    
    /* Menu */
    .menu-content {
        padding: 0 20px;
        gap: 35px;
    }
    
    .menu-link {
        font-size: clamp(22px, 7vw, 32px);
    }
    
    .menu-info p {
        font-size: 15px;
    }
    
    .social-links a {
        font-size: 15px;
    }
    
    /* Scroll Progress & Back to Top */
    .scroll-progress {
        height: 2px;
    }
    
    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 42px;
        height: 42px;
    }
    
    .back-to-top svg {
        width: 20px;
        height: 20px;
    }
}

/* ===== EXTRA SMALL DEVICES (360px and below) ===== */
@media (max-width: 360px) {
    .navbar {
        padding: 12px 15px;
    }
    
    .logo {
        font-size: 14px;
    }
    
    .hamburger {
        width: 24px;
        height: 16px;
    }
    
    .hamburger span {
        height: 2px;
    }
    
    .hero-title {
        font-size: clamp(50px, 25vw, 160px);
        line-height: 1.1;
    }
    
    .hero-line {
        transform: scaleY(1.1);
    }
    
    .hero-subtitle {
        font-size: clamp(11px, 3vw, 16px);
        gap: 10px;
        margin-top: 20px;
    }
    
    .hero-vertical-text {
        font-size: clamp(30px, 6vw, 50px);
    }
    
    .about-title {
        font-size: clamp(35px, 11vw, 60px);
    }
    
    .work-title {
        font-size: clamp(40px, 13vw, 80px);
    }
    
    .service-slide {
        padding: 30px 20px;
    }
    
    .service-icon {
        font-size: 50px;
    }
    
    .service-content h3 {
        font-size: 28px;
    }
    
    .service-content p {
        font-size: 15px;
    }
    
    .contact-title {
        font-size: clamp(32px, 9vw, 50px);
    }
}

/* ===== LANDSCAPE MODE ON MOBILE ===== */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        height: 100vh;
    }
    
    .hero-title {
        font-size: clamp(45px, 18vw, 120px);
        line-height: 1.1;
    }
    
    .hero-line {
        transform: scaleY(1.15);
    }
    
    .hero-subtitle {
        font-size: clamp(11px, 3vw, 16px);
        gap: 10px;
        margin-top: 20px;
    }
    
    .hero-vertical-text {
        font-size: clamp(30px, 6vw, 70px);
    }
    
    .about-content {
        padding: 40px 0;
    }
    
    .section {
        min-height: 100vh;
    }
}

/* ===== TOUCH DEVICE OPTIMIZATIONS ===== */
@media (hover: none) and (pointer: coarse) {
    /* Better touch targets */
    .hamburger {
        
        margin: -10px;
    }
    
    .menu-link {
        padding: 10px 0;
    }
    
    .contact-btn,
    .shopier-btn {
        min-height: 48px;
    }
    
    .slider-btn {
        min-width: 44px;
        min-height: 44px;
    }
    
    .work-card {
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Remove hover effects on touch */
    .work-card:hover {
        transform: none;
    }
    
    .contact-btn:hover,
    .shopier-btn:hover {
        transform: none;
    }
    
    /* Better active states */
    .work-card:active {
        opacity: 0.9;
        transform: scale(0.98);
    }
    
    .contact-btn:active,
    .shopier-btn:active {
        opacity: 0.9;
        transform: scale(0.98);
    }
}

/* ===== PREVENT HORIZONTAL SCROLL ===== */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

.section {
    max-width: 100vw;
    overflow-x: hidden;
}

/* ===== SAFE AREA INSETS (for notch devices) ===== */
@supports (padding: env(safe-area-inset-top)) {
    .navbar {
        padding-top: calc(2vh + env(safe-area-inset-top));
        padding-left: calc(4.4vw + env(safe-area-inset-left));
        padding-right: calc(4.4vw + env(safe-area-inset-right));
    }
    
    .back-to-top {
        bottom: calc(20px + env(safe-area-inset-bottom));
        right: calc(20px + env(safe-area-inset-right));
    }
}

/* ===== MICRO INTERACTIONS ===== */
.slider-btn,
.menu-close,
.modal-close {
    position: relative;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.slider-btn:active,
.menu-close:active,
.modal-close:active {
    transform: scale(0.9);
}

/* ===== ENHANCED LINK STATES ===== */
a {
    position: relative;
    transition: all 0.3s ease;
}

/* ===== SMOOTH IMAGE LOADING ===== */
img {
    transition: opacity 0.3s ease;
}

img:not([src]) {
    opacity: 0;
}

img[src] {
    opacity: 1;
}


/* ===== FAQ SECTION ===== */
.faq-section {
    background: linear-gradient(180deg, #0d1612 0%, #1a2820 50%, #0d1612 100%);
    padding: 100px 0;
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(76, 175, 80, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.faq-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 5vw;
}

.faq-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    color: #4CAF50;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -0.02em;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: rgba(76, 175, 80, 0.05);
    border: 1px solid rgba(76, 175, 80, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(76, 175, 80, 0.4);
    background: rgba(76, 175, 80, 0.08);
}

.faq-item.active {
    border-color: #4CAF50;
    background: rgba(76, 175, 80, 0.1);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 600;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #4CAF50;
}

.faq-icon {
    font-size: 32px;
    font-weight: 300;
    color: #4CAF50;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px;
}

.faq-answer p {
    font-family: 'Inter', sans-serif;
    font-size: clamp(15px, 1.8vw, 17px);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* ===== RESPONSIVE FOR NEW SECTIONS ===== */
@media (max-width: 768px) {
    .faq-content {
        padding: 0 20px;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 16px;
    }
    
    .faq-icon {
        font-size: 28px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-title {
        margin-bottom: 40px;
    }
}

/* ===== SCROLL ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* ===== ENHANCED SCROLL PROGRESS ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #4CAF50 0%, #66BB6A 100%);
    width: 0%;
    z-index: 9999;
    transition: width 0.1s ease-out;
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
}

