/* style.css - Complete CSS with All Features */

/* Force responsive on all devices including high-res phones */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

* {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

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

:root {
    --primary-color: #0071e3;
    --secondary-color: #06c;
    --dark-bg: #000;
    --light-bg: #f5f5f7;
    --text-dark: #1d1d1f;
    --text-light: #86868b;
    --white: #fff;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

body.dark-mode {
    --primary-color: #0a84ff;
    --secondary-color: #0a84ff;
    --dark-bg: #1d1d1f;
    --light-bg: #2c2c2e;
    --text-dark: #f5f5f7;
    --text-light: #98989d;
    --white: #000;
    --gradient-1: linear-gradient(135deg, #8b9fe8 0%, #9876c2 100%);
    --gradient-2: linear-gradient(135deg, #f5a3fb 0%, #ff7a8c 100%);
    --gradient-3: linear-gradient(135deg, #6fbcfe 0%, #40f2fe 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--white);
    color: var(--text-dark);
    overflow-x: hidden;
    cursor: auto;
    transition: background-color 0.3s ease, color 0.3s ease;
}

body.menu-open {
    overflow: hidden;
}

/* Loading Screen */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-wrapper.hidden {
    opacity: 0;
    visibility: hidden;
}

body.dark-mode .loader-wrapper {
    background: var(--dark-bg);
}

.loader-content {
    text-align: center;
}

.loader-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.loader-text {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 2px;
}

.loader-sub {
    font-size: 16px;
    color: var(--text-light);
    letter-spacing: 4px;
    margin-top: 10px;
}

.loader-bar {
    width: 300px;
    height: 4px;
    background: #e5e5e7;
    border-radius: 10px;
    overflow: hidden;
}

.loader-progress {
    width: 0%;
    height: 100%;
    background: var(--gradient-1);
    animation: loading 2s ease-in-out forwards;
}

@keyframes loading {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    z-index: 9998;
    pointer-events: none;
}

.scroll-progress-bar {
    height: 100%;
    background: var(--gradient-1);
    width: 0%;
    transition: width 0.1s ease;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    color: #fff;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #fff;
    color: #333;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    z-index: 9997;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

body.dark-mode .cookie-banner {
    background: var(--dark-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    color: var(--text-dark);
    font-size: 14px;
    line-height: 1.6;
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-accept,
.cookie-decline {
    padding: 10px 25px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: var(--gradient-1);
    color: #fff;
}

.cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-decline {
    background: transparent;
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
}

.cookie-decline:hover {
    background: var(--text-dark);
    color: var(--white);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
}

body.dark-mode .navbar {
    background: rgba(29, 29, 31, 0.8);
}

.navbar.scrolled {
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

body.dark-mode .navbar.scrolled {
    box-shadow: 0 2px 20px rgba(255, 255, 255, 0.05);
}

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

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    flex-shrink: 1;
    min-width: 0;
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.5px;
}

.logo-x {
    color: #e63946;
    font-weight: 800;
}

.logo-highlight {
    color: var(--text-dark);
}

.logo-sub {
    font-size: 12px;
    color: var(--text-light);
    letter-spacing: 3px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 3px;
}

.logo-registered {
    font-size: 10px;
    color: #e63946;
    font-weight: 600;
    vertical-align: super;
}

body.dark-mode .logo-text {
    color: var(--text-dark);
}

body.dark-mode .logo-x {
    color: #ff4d5a;
}

body.dark-mode .logo-registered {
    color: #ff4d5a;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.theme-switch-wrapper {
    display: flex;
    align-items: center;
}

.theme-switch {
    display: inline-block;
    height: 32px;
    position: relative;
    width: 60px;
}

.theme-switch input {
    display: none;
}

.slider-toggle {
    background: #ccc;
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: 0.4s;
    border-radius: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6px;
}

.slider-toggle:before {
    background-color: #fff;
    bottom: 4px;
    content: "";
    height: 24px;
    left: 4px;
    position: absolute;
    transition: 0.4s;
    width: 24px;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

input:checked+.slider-toggle {
    background: var(--gradient-1);
}

input:checked+.slider-toggle:before {
    transform: translateX(28px);
}

.slider-icon {
    width: 16px;
    height: 16px;
    color: #fff;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.slider-icon.sun {
    opacity: 1;
}

.slider-icon.moon {
    opacity: 0.5;
}

input:checked+.slider-toggle .slider-icon.sun {
    opacity: 0.5;
}

input:checked+.slider-toggle .slider-icon.moon {
    opacity: 1;
}

body.dark-mode .slider-toggle {
    background: #4a5568;
}

body.dark-mode input:checked+.slider-toggle {
    background: var(--gradient-1);
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 10000;
    position: relative;
}

.hamburger span {
    width: 30px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Full Page Menu */
.fullpage-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    visibility: hidden;
    overflow: hidden;
}

.fullpage-menu.active {
    visibility: visible;
}

.fullpage-menu-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 50px;
    z-index: 2;
    transform: translateY(100%);
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.fullpage-menu.active .fullpage-menu-inner {
    transform: translateY(0);
}

.menu-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.menu-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateY(100%);
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.menu-bg-layer:nth-child(1) {
    background: var(--gradient-1);
    transition-delay: 0s;
}

.menu-bg-layer:nth-child(2) {
    background: var(--gradient-2);
    transition-delay: 0.1s;
}

.menu-bg-layer:nth-child(3) {
    background: var(--gradient-3);
    transition-delay: 0.2s;
}

.fullpage-menu.active .menu-bg-layer {
    transform: translateY(0);
}

.menu-close {
    position: absolute;
    top: 40px;
    right: 50px;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    opacity: 0;
    transform: rotate(0deg);
}

.fullpage-menu.active .menu-close {
    opacity: 1;
    animation: fadeInRotate 0.5s ease forwards 0.5s;
}

@keyframes fadeInRotate {
    to {
        opacity: 1;
        transform: rotate(90deg);
    }
}

.menu-close:hover {
    background: #fff;
    transform: rotate(180deg) scale(1.1);
}

.menu-close span {
    position: absolute;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: background 0.3s ease;
}

.menu-close:hover span {
    background: #000;
}

.menu-close span:nth-child(1) {
    transform: rotate(45deg);
}

.menu-close span:nth-child(2) {
    transform: rotate(-45deg);
}

.fullpage-nav {
    margin-bottom: 60px;
}

.fullpage-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fullpage-nav-item {
    overflow: hidden;
    margin-bottom: 20px;
}

.fullpage-nav-link {
    display: flex;
    align-items: center;
    gap: 30px;
    text-decoration: none;
    color: #fff;
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 700;
    line-height: 1;
    position: relative;
    padding: 10px 0;
    transition: all 0.4s ease;
    transform: translateY(100%);
    opacity: 0;
}

.fullpage-menu.active .fullpage-nav-link {
    animation: slideInUp 0.8s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

.fullpage-nav-item:nth-child(1) .fullpage-nav-link {
    animation-delay: 0.3s;
}

.fullpage-nav-item:nth-child(2) .fullpage-nav-link {
    animation-delay: 0.4s;
}

.fullpage-nav-item:nth-child(3) .fullpage-nav-link {
    animation-delay: 0.5s;
}

.fullpage-nav-item:nth-child(4) .fullpage-nav-link {
    animation-delay: 0.6s;
}

.fullpage-nav-item:nth-child(5) .fullpage-nav-link {
    animation-delay: 0.7s;
}

@keyframes slideInUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.fullpage-nav-link:hover {
    transform: translateX(20px);
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-number {
    font-size: clamp(16px, 2vw, 24px);
    opacity: 0.6;
    font-weight: 400;
}

.nav-text {
    position: relative;
}

.nav-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: #fff;
    transition: width 0.4s ease;
}

.fullpage-nav-link:hover .nav-text::after {
    width: 100%;
}

.fullpage-menu-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    max-width: 1200px;
    opacity: 0;
    transform: translateY(30px);
}

.fullpage-menu.active .fullpage-menu-footer {
    animation: fadeInUp 0.8s ease forwards 0.8s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-social {
    display: flex;
    gap: 30px;
}

.menu-social-link {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.menu-social-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
}

.menu-social-link:hover::after {
    width: 100%;
}

.menu-social-link:hover {
    transform: translateY(-3px);
}

.menu-contact {
    text-align: right;
}

.menu-contact p {
    color: #fff;
    margin: 5px 0;
    font-size: 14px;
    opacity: 0.8;
}

body.dark-mode .menu-bg-layer:nth-child(1) {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

body.dark-mode .menu-bg-layer:nth-child(2) {
    background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
}

body.dark-mode .menu-bg-layer:nth-child(3) {
    background: linear-gradient(135deg, #533483 0%, #16213e 100%);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 100px 50px 150px;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
}

.hero-title {
    font-size: clamp(50px, 8vw, 100px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.word {
    display: inline-block;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.8s ease forwards;
}

.word:nth-child(1) {
    animation-delay: 0.2s;
}

.word:nth-child(2) {
    animation-delay: 0.4s;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.word:nth-child(3) {
    animation-delay: 0.6s;
}

.hero-subtitle {
    font-size: clamp(18px, 2vw, 24px);
    color: var(--text-light);
    margin-bottom: 50px;
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.8s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1s;
    margin-bottom: 100px;
}

.btn-primary,
.btn-secondary {
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-1);
    color: var(--white);
}

body.dark-mode .btn-primary {
    color: #fff;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background: var(--text-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

body.dark-mode .btn-secondary:hover {
    color: #000;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.2s;
    z-index: 10;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-dark);
    border-radius: 15px;
    margin: 0 auto 10px;
    position: relative;
}

.wheel {
    width: 6px;
    height: 10px;
    background: var(--text-dark);
    border-radius: 3px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {

    0%,
    100% {
        top: 8px;
        opacity: 1;
    }

    50% {
        top: 25px;
        opacity: 0.5;
    }
}

.scroll-indicator p {
    font-size: 12px;
    color: var(--text-light);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 20s ease-in-out infinite;
    transition: opacity 0.3s ease;
}

body.dark-mode .gradient-orb {
    opacity: 0.4;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--gradient-1);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--gradient-2);
    top: 40%;
    right: 10%;
    animation-delay: 5s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: var(--gradient-3);
    bottom: 10%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(50px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

/* Client Logos Section */
.clients {
    padding: 60px 0;
    background: var(--white);
    overflow: hidden;
}

body.dark-mode .clients {
    background: var(--dark-bg);
}

.clients-title {
    text-align: center;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-light);
    margin-bottom: 40px;
    font-weight: 600;
}

.clients-slider {
    overflow: hidden;
    position: relative;
}

.clients-track {
    display: flex;
    gap: 60px;
    animation: scroll-logos 30s linear infinite;
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

body.dark-mode {
    background: var(--light-bg);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

section {
    padding: 120px 0;
    transition: background-color 0.3s ease;
}

.section-title {
    font-size: clamp(40px, 6vw, 60px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-light);
    text-align: center;
    margin-bottom: 80px;
}

/* Services Section */
.services {
    background: var(--light-bg);
}

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

.service-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

body.dark-mode .service-card {
    background: var(--dark-bg);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

body.dark-mode .service-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.service-card:hover .service-icon,
.service-card:hover h3,
.service-card:hover p {
    color: #fff;
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 30px;
    color: var(--primary-color);
    transition: color 0.5s ease;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    transition: color 0.5s ease;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    transition: color 0.5s ease;
}

/* Stats Section */
.stats {
    background: var(--dark-bg);
    color: var(--white);
}

body.dark-mode .stats {
    background: #0a0a0a;
    color: #f5f5f7;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 60px;
    text-align: center;
}

.stat-item {
    position: relative;
}

.stat-number {
    font-size: clamp(50px, 8vw, 80px);
    font-weight: 700;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-number::after {
    content: '+';
}

.stat-item p {
    font-size: 18px;
    color: var(--text-light);
}

/* Process Section */
.process-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.process-step.visible {
    opacity: 1;
    transform: translateX(0);
}

.step-number {
    font-size: 60px;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.step-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

/* Work Section */
.work {
    background: var(--light-bg);
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.work-item {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.work-image {
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    transition: transform 0.5s ease;
}

.work-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.work-item:hover .work-image {
    transform: scale(1.1);
}

.work-overlay h3 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 15px;
}

.work-overlay p {
    color: #fff;
    font-size: 18px;
    margin-bottom: 30px;
}

.work-btn {
    padding: 15px 35px;
    background: #fff;
    color: #1d1d1f;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.work-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Testimonials */
.testimonials {
    background: var(--dark-bg);
    color: var(--white);
}

body.dark-mode .testimonials {
    background: #0a0a0a;
    color: #f5f5f7;
}

.testimonials-slider {
    max-width: 900px;
    margin: 0 auto 40px;
    position: relative;
    min-height: 300px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.5s ease;
    pointer-events: none;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.testimonial-text {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 40px;
    font-style: italic;
}

.testimonial-author h4 {
    font-size: 20px;
    margin-bottom: 5px;
}

.testimonial-author p {
    color: var(--text-light);
    font-size: 16px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #fff;
    transform: scale(1.5);
}

body.dark-mode .dot.active {
    background: #f5f5f7;
}

/* FAQ Section */
.faq {
    background: var(--white);
}

body.dark-mode .faq {
    background: var(--dark-bg);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 2px solid #e5e5e7;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

body.dark-mode .faq-item {
    border-color: #48484a;
}

.faq-item.active {
    border-color: var(--primary-color);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--light-bg);
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--text-dark);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 16px;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-1);
    padding: 100px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(35px, 5vw, 55px);
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    background: transparent;
    color: #667eea;
    border: 2px solid #fff;
}

.cta-btn.btn-secondary {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.cta-btn.btn-secondary:hover {
    background: #fff;
    color: #667eea;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-text h2 {
    font-size: clamp(35px, 5vw, 50px);
    margin-bottom: 20px;
}

.contact-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.info-item p {
    font-size: 18px;
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 25px;
    font-size: 16px;
    border: 2px solid #e5e5e7;
    border-radius: 12px;
    background: var(--light-bg);
    color: var(--text-dark);
    transition: all 0.3s ease;
    font-family: inherit;
}

body.dark-mode .form-group input,
body.dark-mode .form-group textarea {
    border-color: #48484a;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
}

body.dark-mode .form-group input:focus,
body.dark-mode .form-group textarea:focus {
    background: var(--dark-bg);
}

.form-group textarea {
    resize: vertical;
}

/* Newsletter Section */
.newsletter {
    background: var(--light-bg);
    padding: 80px 0;
}

body.dark-mode .newsletter {
    background: var(--light-bg);
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.newsletter-text h3 {
    font-size: clamp(24px, 4vw, 36px);
    margin-bottom: 10px;
    color: var(--text-dark);
}

.newsletter-text p {
    font-size: 16px;
    color: var(--text-light);
}

.newsletter-form {
    display: flex;
    gap: 15px;
    flex: 1;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 25px;
    border: 2px solid #e5e5e7;
    border-radius: 50px;
    font-size: 16px;
    background: var(--white);
    color: var(--text-dark);
    transition: all 0.3s ease;
}

body.dark-mode .newsletter-form input {
    background: var(--dark-bg);
    border-color: #48484a;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.newsletter-form button {
    padding: 15px 35px;
    white-space: nowrap;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 80px 0 30px;
}

body.dark-mode .footer {
    background: #0a0a0a;
    color: #f5f5f7;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand h3 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.footer-brand h3 .logo-x {
    color: #e63946;
}

.footer-brand h3 .logo-registered {
    font-size: 14px;
    color: #e63946;
    vertical-align: super;
}

body.dark-mode .footer-brand h3 .logo-x {
    color: #ff4d5a;
}

body.dark-mode .footer-brand h3 .logo-registered {
    color: #ff4d5a;
}

.footer-brand p {
    color: var(--text-light);
    line-height: 1.6;
}

.footer-links h4,
.footer-social h4 {
    font-size: 16px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

body.dark-mode .footer-links a:hover {
    color: #f5f5f7;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.social-icon:hover {
    background: #fff;
    transform: translateY(-5px);
}

body.dark-mode .social-icon:hover {
    background: #f5f5f7;
}

.social-icon:hover svg {
    color: #000;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .nav-container {
        padding: 0 30px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .fullpage-menu-footer {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .menu-contact {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    .logo-text {
        font-size: 22px;
    }

    .logo-sub {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .nav-right {
        gap: 12px;
    }

    .theme-switch {
        height: 28px;
        width: 52px;
    }

    .slider-toggle {
        padding: 0 5px;
    }

    .slider-toggle:before {
        height: 20px;
        width: 20px;
        bottom: 3px;
        left: 3px;
    }

    input:checked+.slider-toggle:before {
        transform: translateX(24px);
    }

    .slider-icon {
        width: 13px;
        height: 13px;
    }

    .hamburger span {
        width: 25px;
        height: 2px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }

    .whatsapp-tooltip {
        display: none;
    }

    .cookie-content {
        flex-direction: column;
        padding: 0 20px;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .clients-track {
        gap: 40px;
    }

    .hero {
        padding: 120px 30px 180px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        margin-bottom: 120px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .process-step {
        flex-direction: column;
        gap: 20px;
    }

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

    section {
        padding: 80px 0;
    }

    .fullpage-menu-inner {
        padding: 80px 30px;
    }

    .fullpage-nav-link {
        font-size: clamp(28px, 8vw, 50px);
        gap: 15px;
    }

    .nav-number {
        font-size: 14px;
    }

    .menu-close {
        width: 45px;
        height: 45px;
        top: 25px;
        right: 25px;
    }

    .menu-close span {
        width: 20px;
    }

    .menu-social {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .faq-question {
        padding: 20px;
        font-size: 16px;
    }

    .faq-icon {
        width: 20px;
        height: 20px;
        margin-left: 10px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
    }

    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        width: 100%;
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }

    .loader-text {
        font-size: 32px;
    }

    .loader-bar {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
    }

    .logo-text {
        font-size: 20px;
    }

    .logo-sub {
        font-size: 9px;
        letter-spacing: 1.5px;
    }

    .logo-registered {
        font-size: 8px;
    }

    .nav-right {
        gap: 10px;
    }

    .theme-switch {
        height: 26px;
        width: 48px;
    }

    .slider-toggle:before {
        height: 18px;
        width: 18px;
        bottom: 3px;
        left: 3px;
    }

    input:checked+.slider-toggle:before {
        transform: translateX(22px);
    }

    .slider-icon {
        width: 12px;
        height: 12px;
    }

    .hamburger span {
        width: 22px;
    }

    .whatsapp-float {
        width: 45px;
        height: 45px;
    }

    .whatsapp-float svg {
        width: 22px;
        height: 22px;
    }

    .fullpage-nav-link {
        font-size: clamp(24px, 10vw, 40px);
        gap: 10px;
    }

    .fullpage-menu-footer {
        gap: 20px;
    }

    .menu-social-link {
        font-size: 14px;
    }

    .menu-contact p {
        font-size: 12px;
    }

    .faq-question {
        font-size: 14px;
        padding: 15px;
    }

    .faq-answer p {
        font-size: 14px;
    }
}

@media (max-width: 360px) {
    .nav-container {
        padding: 0 12px;
    }

    .logo-text {
        font-size: 18px;
    }

    .logo-sub {
        font-size: 8px;
        letter-spacing: 1px;
    }

    .nav-right {
        gap: 8px;
    }

    .theme-switch {
        height: 24px;
        width: 44px;
    }

    .slider-toggle:before {
        height: 16px;
        width: 16px;
        bottom: 3px;
        left: 3px;
    }

    input:checked+.slider-toggle:before {
        transform: translateX(20px);
    }

    .slider-icon {
        width: 11px;
        height: 11px;
    }

    .hamburger span {
        width: 20px;
    }
}

/* Navigation - Updated for Transparent Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 0;
    background: transparent;
    /* Changed from rgba */
    backdrop-filter: none;
    /* Removed blur initially */
    -webkit-backdrop-filter: none;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* When scrolled, add background */
.navbar.scrolled {
    padding: 15px 0;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

/* Dark mode navbar - transparent initially */
body.dark-mode .navbar {
    background: transparent;
}


/* Services Page Specific Styles */

.services-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 50px 100px;
    overflow: hidden;
}

.services-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.services-hero-title {
    font-size: clamp(50px, 8vw, 90px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
}

.services-hero-title .word {
    display: inline-block;
    margin: 0 15px;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-hero-subtitle {
    font-size: clamp(18px, 2vw, 22px);
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.services-detailed {
    padding: 120px 0;
    background: var(--white);
}

body.dark-mode .services-detailed {
    background: var(--dark-bg);
}

.services-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 50px;
}

.service-detail-card {
    background: var(--light-bg);
    border-radius: 20px;
    padding: 50px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

body.dark-mode .service-detail-card {
    background: var(--light-bg);
}

.service-detail-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

body.dark-mode .service-detail-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.service-detail-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.service-detail-icon svg {
    width: 35px;
    height: 35px;
    color: #fff;
}

.service-detail-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-detail-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.service-features li {
    padding: 12px 0;
    padding-left: 30px;
    color: var(--text-dark);
    position: relative;
    font-size: 15px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

.service-cta-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-cta-btn:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateX(5px);
}

.why-choose {
    background: var(--light-bg);
    padding: 120px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-box {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

body.dark-mode .feature-box {
    background: var(--dark-bg);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

body.dark-mode .feature-box:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.feature-number {
    font-size: 48px;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-box p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .services-grid-detailed {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-detail-card {
        padding: 30px;
    }

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

    .services-hero {
        padding: 120px 30px 80px;
    }
}

.work-image-hearing {
    background: url(./Images/2.png) center/contain no-repeat;
}

.work-image-kitchen {
    background: url(./Images/3.png) center/contain no-repeat;
}

.work-image-purnaang {
    background: url(./Images/1.png) center/contain no-repeat;
}



/* Work Tags */
.work-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.work-tag {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Enhanced Work Overlay */
.work-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.work-overlay h3 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 15px;
}

.work-overlay p {
    color: #fff;
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.6;
    max-width: 350px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .work-overlay h3 {
        font-size: 24px;
    }

    .work-overlay p {
        font-size: 14px;
    }

    .work-tags {
        gap: 8px;
    }

    .work-tag {
        font-size: 11px;
        padding: 5px 12px;
    }
}

/* Work Page Specific Styles */

.work-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 50px 100px;
    overflow: hidden;
}

.work-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.work-hero-title {
    font-size: clamp(50px, 8vw, 90px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
}

.work-hero-title .word {
    display: inline-block;
    margin: 0 15px;
}

.work-hero-subtitle {
    font-size: clamp(18px, 2vw, 22px);
    color: var(--text-light);
}

/* Portfolio Section */
.portfolio-section {
    padding: 120px 0;
    background: var(--white);
}

body.dark-mode .portfolio-section {
    background: var(--dark-bg);
}

.portfolio-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 150px;
    align-items: center;
}

.portfolio-item-reverse {
    direction: rtl;
}

.portfolio-item-reverse>* {
    direction: ltr;
}

.portfolio-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.portfolio-image:hover {
    transform: translateY(-10px);
}

.portfolio-image img {
    width: 100%;
    height: auto;
    display: block;
}

.portfolio-details {
    padding: 20px;
}

.portfolio-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.tag {
    background: var(--gradient-1);
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.portfolio-details h2 {
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 20px;
    color: var(--text-dark);
}

.portfolio-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

.portfolio-features {
    margin-bottom: 30px;
}

.portfolio-features h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.portfolio-features ul {
    list-style: none;
    padding: 0;
}

.portfolio-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-dark);
}

.portfolio-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.portfolio-tech {
    margin-bottom: 30px;
}

.portfolio-tech h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.tech-stack {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tech-tag {
    background: var(--light-bg);
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid #e5e5e7;
}

body.dark-mode .tech-tag {
    background: var(--light-bg);
    border-color: #48484a;
}

.portfolio-btn {
    background: var(--gradient-1);
    color: #fff;
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.portfolio-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 1024px) {
    .portfolio-item {
        grid-template-columns: 1fr;
        gap: 50px;
        margin-bottom: 100px;
    }

    .portfolio-item-reverse {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    .work-hero {
        padding: 120px 30px 80px;
    }

    .portfolio-section {
        padding: 80px 0;
    }

    .portfolio-item {
        margin-bottom: 80px;
    }

    .portfolio-details {
        padding: 0;
    }
}

/* Process Page Styles */

.process-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 50px 100px;
    overflow: hidden;
}

.process-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.process-hero-title {
    font-size: clamp(50px, 8vw, 90px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
}

.process-hero-title .word {
    display: inline-block;
    margin: 0 15px;
}

.process-hero-subtitle {
    font-size: clamp(18px, 2vw, 22px);
    color: var(--text-light);
}

/* Process Detailed Section */
.process-detailed {
    padding: 120px 0;
    background: var(--white);
}

body.dark-mode .process-detailed {
    background: var(--dark-bg);
}

.process-step-detailed {
    max-width: 1000px;
    margin: 0 auto 100px;
    padding: 50px;
    background: var(--light-bg);
    border-radius: 20px;
    border-left: 5px solid var(--primary-color);
    transition: all 0.3s ease;
}

body.dark-mode .process-step-detailed {
    background: var(--light-bg);
}

.process-step-detailed:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.step-number-large {
    font-size: 80px;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.step-info h2 {
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 10px;
    color: var(--text-dark);
}

.step-duration {
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

.step-activities {
    margin-bottom: 30px;
}

.step-activities h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.step-activities ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
}

.step-activities li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--text-dark);
}

.step-activities li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

.step-deliverables h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.deliverable-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.deliverable-tags span {
    background: var(--white);
    color: var(--text-dark);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    border: 2px solid #e5e5e7;
}

body.dark-mode .deliverable-tags span {
    background: var(--dark-bg);
    border-color: #48484a;
}

/* Timeline Visual Section */
.timeline-visual {
    padding: 80px 0;
    background: var(--light-bg);
}

.timeline-bar {
    display: flex;
    max-width: 1000px;
    margin: 60px auto 0;
    height: 100px;
    background: #e5e5e7;
    border-radius: 50px;
    overflow: hidden;
}

body.dark-mode .timeline-bar {
    background: #48484a;
}

.timeline-segment {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    position: relative;
}

.timeline-segment:nth-child(1) {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.timeline-segment:nth-child(2) {
    background: linear-gradient(135deg, #764ba2 0%, #f093fb 100%);
}

.timeline-segment:nth-child(3) {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.timeline-segment:nth-child(4) {
    background: linear-gradient(135deg, #f5576c 0%, #4facfe 100%);
}

.timeline-segment:nth-child(5) {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

/* Responsive */
@media (max-width: 768px) {
    .process-hero {
        padding: 120px 30px 80px;
    }

    .process-detailed {
        padding: 80px 0;
    }

    .process-step-detailed {
        padding: 30px;
        margin-bottom: 60px;
    }

    .step-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .step-number-large {
        font-size: 60px;
    }

    .step-activities ul {
        grid-template-columns: 1fr;
    }

    .timeline-bar {
        flex-direction: column;
        height: auto;
        border-radius: 20px;
    }

    .timeline-segment {
        width: 100% !important;
        padding: 20px;
    }
}

/* ==========================================
   COMPLETE RESPONSIVE DESIGN FOR ALL DEVICES
   ========================================== */

/* Extra Large Screens (1920px and above) */
@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
    }

    .hero-title {
        font-size: 110px;
    }

    .section-title {
        font-size: 70px;
    }
}

/* Large Desktop (1440px - 1919px) */
@media (min-width: 1440px) and (max-width: 1919px) {
    .container {
        max-width: 1400px;
    }
}

/* Standard Desktop (1024px - 1439px) */
@media (min-width: 1024px) and (max-width: 1439px) {
    .container {
        max-width: 1200px;
        padding: 0 40px;
    }

    .nav-container {
        padding: 0 40px;
    }

    .hero {
        padding: 100px 40px 130px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .work-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

/* Tablet Landscape (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .container {
        padding: 0 30px;
    }

    .nav-container {
        padding: 0 30px;
    }

    .logo-text {
        font-size: 24px;
    }

    .logo-sub {
        font-size: 11px;
    }

    .hero {
        padding: 120px 30px 100px;
        min-height: 80vh;
    }

    .hero-title {
        font-size: 60px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-cta {
        flex-direction: row;
        margin-bottom: 80px;
    }

    .btn-primary,
    .btn-secondary {
        width: auto;
        min-width: 180px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

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

    .work-item {
        height: 400px;
    }

    .process-timeline {
        max-width: 700px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        max-width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

/* Tablet Portrait & Large Mobile (481px - 767px) */
@media (min-width: 481px) and (max-width: 767px) {
    .container {
        padding: 0 25px;
    }

    .nav-container {
        padding: 0 20px;
    }

    .navbar {
        padding: 18px 0;
    }

    .logo-text {
        font-size: 22px;
    }

    .logo-sub {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .theme-switch {
        height: 28px;
        width: 52px;
    }

    .hamburger span {
        width: 26px;
    }

    .hero {
        padding: 110px 25px 150px;
        min-height: 85vh;
    }

    .hero-title {
        font-size: 50px;
        gap: 8px;
    }

    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 40px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 100px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 320px;
        padding: 16px 35px;
    }

    .scroll-indicator {
        bottom: 30px;
    }

    section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 42px;
        margin-bottom: 15px;
    }

    .section-subtitle {
        font-size: 16px;
        margin-bottom: 50px;
    }

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

    .service-card {
        padding: 40px 30px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    .stat-number {
        font-size: 60px;
    }

    .process-step {
        flex-direction: column;
        gap: 20px;
    }

    .step-number {
        font-size: 50px;
    }

    .work-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .work-item {
        height: 380px;
    }

    .testimonials-slider {
        min-height: 280px;
    }

    .testimonial-text {
        font-size: 20px;
    }

    .faq-question {
        padding: 18px 20px;
        font-size: 15px;
    }

    .cta-section {
        padding: 80px 0;
    }

    .cta-content h2 {
        font-size: 38px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .newsletter-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .newsletter-form {
        width: 100%;
        max-width: 100%;
        flex-direction: column;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

/* Mobile Devices (320px - 480px) */
@media (max-width: 480px) {
    * {
        -webkit-tap-highlight-color: transparent;
    }

    .container {
        padding: 0 20px;
    }

    .nav-container {
        padding: 0 15px;
    }

    .navbar {
        padding: 15px 0;
    }

    .logo {
        flex-shrink: 1;
        min-width: 0;
    }

    .logo-text {
        font-size: 20px;
        letter-spacing: 0.3px;
    }

    .logo-sub {
        font-size: 9px;
        letter-spacing: 1.5px;
    }

    .logo-registered {
        font-size: 8px;
    }

    .nav-right {
        gap: 10px;
        flex-shrink: 0;
    }

    .theme-switch {
        height: 26px;
        width: 48px;
    }

    .slider-toggle {
        padding: 0 5px;
    }

    .slider-toggle:before {
        height: 18px;
        width: 18px;
        bottom: 3px;
        left: 3px;
    }

    input:checked+.slider-toggle:before {
        transform: translateX(22px);
    }

    .slider-icon {
        width: 12px;
        height: 12px;
    }

    .hamburger span {
        width: 22px;
        height: 2px;
        gap: 5px;
    }

    .fullpage-nav-link {
        font-size: clamp(28px, 10vw, 45px);
        gap: 12px;
    }

    .nav-number {
        font-size: 13px;
    }

    .fullpage-menu-footer {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .menu-social {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .menu-social-link {
        font-size: 14px;
    }

    .menu-contact {
        text-align: center;
    }

    .menu-contact p {
        font-size: 12px;
    }

    .hero {
        padding: 100px 20px 140px;
        min-height: 90vh;
    }

    .hero-title {
        font-size: 42px;
        gap: 5px;
        margin-bottom: 25px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 35px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
        margin-bottom: 100px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 15px 30px;
        font-size: 15px;
    }

    .scroll-indicator {
        bottom: 25px;
    }

    .mouse {
        width: 25px;
        height: 45px;
    }

    .wheel {
        width: 5px;
        height: 8px;
        top: 6px;
    }

    .scroll-indicator p {
        font-size: 11px;
    }

    section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 36px;
        margin-bottom: 12px;
    }

    .section-subtitle {
        font-size: 15px;
        margin-bottom: 40px;
    }

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

    .service-card {
        padding: 35px 25px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 25px;
    }

    .service-card h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .service-card p {
        font-size: 14px;
    }

    .stats {
        padding: 70px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .stat-number {
        font-size: 50px;
        margin-bottom: 8px;
    }

    .stat-item p {
        font-size: 14px;
    }

    .process-step {
        flex-direction: column;
        gap: 18px;
        margin-bottom: 50px;
    }

    .step-number {
        font-size: 45px;
    }

    .step-content h3 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .step-content p {
        font-size: 14px;
    }

    .work-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .work-item {
        height: 350px;
    }

    .work-overlay h3 {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .work-overlay p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .work-tags {
        gap: 8px;
        margin-bottom: 15px;
    }

    .work-tag {
        font-size: 11px;
        padding: 5px 12px;
    }

    .work-btn {
        padding: 12px 28px;
        font-size: 14px;
    }

    .testimonials {
        padding: 70px 0;
    }

    .testimonials-slider {
        min-height: 300px;
    }

    .testimonial-text {
        font-size: 18px;
        line-height: 1.5;
        margin-bottom: 30px;
    }

    .testimonial-author h4 {
        font-size: 18px;
    }

    .testimonial-author p {
        font-size: 14px;
    }

    .faq-container {
        max-width: 100%;
    }

    .faq-item {
        margin-bottom: 15px;
        border-radius: 10px;
    }

    .faq-question {
        padding: 16px 18px;
        font-size: 14px;
    }

    .faq-icon {
        width: 18px;
        height: 18px;
        margin-left: 8px;
    }

    .faq-answer {
        font-size: 14px;
    }

    .faq-item.active .faq-answer {
        padding: 0 18px 18px;
    }

    .cta-section {
        padding: 70px 0;
    }

    .cta-content h2 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .cta-content p {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
    }

    .cta-btn {
        width: 100%;
        max-width: 280px;
    }

    .contact {
        padding: 70px 0;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .contact-text h2 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .contact-text p {
        font-size: 15px;
        margin-bottom: 35px;
    }

    .contact-info {
        gap: 25px;
    }

    .info-item h4 {
        font-size: 13px;
    }

    .info-item p {
        font-size: 16px;
    }

    .form-group {
        margin-bottom: 18px;
    }

    .form-group input,
    .form-group textarea {
        padding: 15px 20px;
        font-size: 15px;
        border-radius: 10px;
    }

    .newsletter {
        padding: 60px 0;
    }

    .newsletter-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .newsletter-text h3 {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .newsletter-text p {
        font-size: 14px;
    }

    .newsletter-form {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .newsletter-form input {
        padding: 14px 20px;
        font-size: 15px;
    }

    .newsletter-form button {
        width: 100%;
        padding: 14px 30px;
    }

    .footer {
        padding: 60px 0 25px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 35px;
    }

    .footer-brand h3 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .footer-brand p {
        font-size: 14px;
    }

    .footer-links h4,
    .footer-social h4 {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .footer-links a {
        font-size: 14px;
    }

    .social-icons {
        gap: 12px;
    }

    .social-icon {
        width: 38px;
        height: 38px;
    }

    .social-icon svg {
        width: 18px;
        height: 18px;
    }

    .footer-bottom p {
        font-size: 13px;
    }

    /* Services Page Mobile */
    .services-hero,
    .work-hero,
    .process-hero {
        padding: 110px 20px 70px;
        min-height: 50vh;
    }

    .services-hero-title,
    .work-hero-title,
    .process-hero-title {
        font-size: 42px;
    }

    .services-grid-detailed {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-detail-card {
        padding: 30px 20px;
    }

    .service-detail-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 25px;
    }

    .service-detail-content h3 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .service-detail-content p {
        font-size: 14px;
    }

    .service-features li {
        font-size: 14px;
        padding: 10px 0 10px 25px;
    }

    .service-cta-btn {
        padding: 11px 25px;
        font-size: 14px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .feature-box {
        padding: 30px 25px;
    }

    .feature-number {
        font-size: 40px;
        margin-bottom: 15px;
    }

    .feature-box h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .feature-box p {
        font-size: 14px;
    }

    /* Work Page Mobile */
    .portfolio-item {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }

    .portfolio-item-reverse {
        direction: ltr;
    }

    .portfolio-details {
        padding: 0;
    }

    .portfolio-details h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .portfolio-description {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .portfolio-features h3,
    .portfolio-tech h3 {
        font-size: 17px;
        margin-bottom: 12px;
    }

    .portfolio-features li {
        font-size: 14px;
        padding: 7px 0 7px 22px;
    }

    .tech-tag {
        font-size: 12px;
        padding: 7px 14px;
    }

    .portfolio-btn {
        padding: 13px 30px;
        font-size: 15px;
        width: 100%;
        max-width: 280px;
    }

    /* Process Page Mobile */
    .process-step-detailed {
        padding: 30px 20px;
        margin-bottom: 50px;
    }

    .step-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .step-number-large {
        font-size: 60px;
    }

    .step-info h2 {
        font-size: 26px;
    }

    .step-duration {
        font-size: 12px;
    }

    .step-description {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .step-activities h3 {
        font-size: 18px;
    }

    .step-activities ul {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .step-activities li {
        font-size: 14px;
        padding: 8px 0 8px 25px;
    }

    .deliverable-tags {
        gap: 8px;
    }

    .deliverable-tags span {
        padding: 8px 16px;
        font-size: 13px;
    }

    .timeline-visual {
        padding: 60px 0;
    }

    .timeline-bar {
        flex-direction: column;
        height: auto;
        border-radius: 15px;
        margin-top: 40px;
    }

    .timeline-segment {
        width: 100% !important;
        padding: 18px 15px;
        font-size: 12px;
    }
}

/* Extra Small Mobile (max-width: 360px) */
@media (max-width: 360px) {
    .logo-text {
        font-size: 18px;
    }

    .logo-sub {
        font-size: 8px;
        letter-spacing: 1px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .section-title {
        font-size: 32px;
    }

    .btn-primary,
    .btn-secondary {
        max-width: 260px;
        padding: 14px 25px;
        font-size: 14px;
    }

    .stat-number {
        font-size: 42px;
    }

    .work-overlay h3 {
        font-size: 20px;
    }

    .testimonial-text {
        font-size: 16px;
    }
}

/* Landscape Orientation Fix */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 80px 20px 60px;
    }

    .hero-cta {
        margin-bottom: 40px;
    }

    .scroll-indicator {
        display: none;
    }
}

/* FIX: Homepage Right Gap Issue on Mobile */

/* Reset all potential overflow sources */
html,
body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* Fix Hero Section Overflow */
.hero {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
}

.hero-content {
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.hero-text {
    width: 100%;
    max-width: 100%;
}

.hero-title {
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-title .word {
    display: inline-block;
    margin: 0 8px;
}

.hero-subtitle {
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.hero-cta {
    width: 100%;
    max-width: 100%;
    padding: 0;
}

/* Fix Hero Background Orbs Overflow */
.hero-background {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    left: 0;
    right: 0;
}

.gradient-orb {
    max-width: 100vw;
}

/* Fix Buttons */
.btn-primary,
.btn-secondary {
    box-sizing: border-box;
    max-width: 100%;
}

/* Fix Scroll Indicator */
.scroll-indicator {
    left: 50%;
    transform: translateX(-50%);
    width: auto;
}

/* Fix All Sections */
section {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
}

.container {
    width: 100%;
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
}

/* Mobile Specific Fix */
@media (max-width: 768px) {
    * {
        max-width: 100vw;
    }

    body {
        overflow-x: hidden !important;
        position: relative;
    }

    .hero {
        padding-left: 15px !important;
        padding-right: 15px !important;
        margin: 0 !important;
    }

    .hero-content {
        padding: 0 15px !important;
        margin: 0 auto !important;
    }

    .hero-title {
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .hero-title .word {
        margin: 0 5px !important;
    }

    .hero-cta {
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .btn-primary,
    .btn-secondary {
        margin: 0 auto !important;
    }

    /* Remove any negative margins */
    * {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .container {
        margin: 0 auto !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}
