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

body {
    font-family: "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* Header */

.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid #f8f9fa;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.logo i {
    font-size: 2rem;
    color: #ff6b35;
    filter: drop-shadow(0 2px 4px rgba(255, 107, 53, 0.2));
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.logo-subtitle {
    font-size: 0.8rem;
    color: #6c757d;
    margin-left: -5px;
    font-weight: 500;
}

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

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6b35;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #ff6b35;
}

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

.contact-btn {
    background: #ff6b35;
    color: #ffffff;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.2);
}

.contact-item a {
    text-decoration: none;
    color: inherit;
}

.contact-btn:hover {
    background: #e55a2b;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #ff6b35;
}


/* Hero Section */

.hero {
    background: #ffffff;
    color: #2c3e50;
    padding: 140px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.03) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.02) 0%, transparent 50%);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    position: relative;
    z-index: 1;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.hero h1 .highlight {
    color: #ff6b35;
    position: relative;
}

.hero h1 .highlight::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #ff6b35;
    opacity: 0.3;
}

.hero p {
    font-size: 1.2rem;
    max-width: 650px;
    margin: 0 auto 3rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    color: #6c757d;
    font-weight: 400;
}

.hero-cta {
    background: #ff6b35;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

.hero-cta:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}


/* Services Overview */

.services-overview {
    padding: 100px 0;
    background: #ffffff;
}

.services-overview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 800;
    position: relative;
}

.services-overview h2::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #ff6b35;
    border-radius: 2px;
}

.services-overview>.container>p {
    text-align: center;
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.service-category {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #f1f3f4;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.service-category::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #f1f3f4;
    transition: all 0.3s ease;
}

.service-category:hover::before,
.service-category.active::before {
    background: #ff6b35;
}

.service-category:hover,
.service-category.active {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-color: #ff6b35;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.service-category:hover .service-icon,
.service-category.active .service-icon {
    background: #ff6b35;
    transform: scale(1.1);
}

.service-category:hover .service-icon i,
.service-category.active .service-icon i {
    color: #ffffff;
}

.service-icon i {
    font-size: 1.8rem;
    color: #ff6b35;
    transition: all 0.3s ease;
}

.service-category h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
    font-weight: 700;
}

.service-category p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.5;
}


/* Portfolio Section */

.portfolio {
    padding: 100px 0;
    background: #ffffff;
    border-top: 1px solid #f1f3f4;
}

.portfolio h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 800;
    position: relative;
}

.portfolio h2::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #ff6b35;
    border-radius: 2px;
}

.portfolio>.container>p {
    text-align: center;
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.portfolio-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: start;
}

.portfolio-sidebar {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 120px;
    border: 1px solid #f1f3f4;
}

.portfolio-categories {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.portfolio-category {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    position: relative;
}

.portfolio-category:hover,
.portfolio-category.active {
    background: #fff5f2;
    border-color: #ff6b35;
    transform: translateX(3px);
}

.category-icon {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.portfolio-category:hover .category-icon,
.portfolio-category.active .category-icon {
    background: #ff6b35;
}

.portfolio-category:hover .category-icon i,
.portfolio-category.active .category-icon i {
    color: #ffffff;
}

.category-icon i {
    color: #ff6b35;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.portfolio-category span {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.9rem;
}

.portfolio-showcase {
    background: #ffffff;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    min-height: 600px;
    border: 1px solid #f1f3f4;
}

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

.portfolio-grid.hidden {
    display: none;
}

.portfolio-item {
    text-align: center;
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
}

.device-mockup {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 2rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.08));
}

.device-mockup.mobile-only {
    justify-content: center;
}

.desktop-mockup {
    width: 300px;
    height: 200px;
    background: #2c3e50;
    border-radius: 8px;
    padding: 8px;
    position: relative;
    box-shadow: 0 10px 30px rgba(44, 62, 80, 0.15);
}

.desktop-mockup::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    width: 8px;
    height: 8px;
    background: #e74c3c;
    border-radius: 50%;
    box-shadow: 15px 0 #f39c12, 30px 0 #27ae60;
}

.mobile-mockup {
    width: 120px;
    height: 200px;
    background: #2c3e50;
    border-radius: 20px;
    padding: 8px;
    position: relative;
    box-shadow: 0 10px 30px rgba(44, 62, 80, 0.15);
}

.mobile-mockup.large {
    width: 200px;
    height: 350px;
}

.mobile-mockup::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: #34495e;
    border-radius: 2px;
}

.mobile-mockup::after {
    content: "";
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 4px;
    background: #34495e;
    border-radius: 2px;
}

.screen {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    margin-top: 20px;
    border: 1px solid #f1f3f4;
}

.mobile-mockup .screen {
    margin-top: 25px;
    margin-bottom: 20px;
    height: calc(100% - 45px);
    border-radius: 15px;
}


/* Demo Content Styles */

.demo-content {
    width: 100%;
    height: 100%;
    font-size: 0.7rem;
    background: #ffffff;
}

.demo-header {
    background: #ff6b35;
    color: #ffffff;
    padding: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.demo-header.mobile {
    background: #ff6b35;
    color: #ffffff;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    font-size: 0.8rem;
}

.demo-logo {
    font-weight: bold;
    font-size: 0.8rem;
}

.demo-nav {
    font-size: 0.6rem;
    opacity: 0.9;
}

.demo-body {
    display: flex;
    height: calc(100% - 40px);
    background: #ffffff;
}

.demo-body.mobile {
    flex-direction: column;
    padding: 15px;
    gap: 10px;
    height: calc(100% - 50px);
    background: #ffffff;
}

.demo-sidebar {
    width: 70px;
    background: #f8f9fa;
    padding: 8px;
    border-right: 1px solid #f1f3f4;
}

.demo-menu-item {
    padding: 5px;
    margin-bottom: 5px;
    font-size: 0.6rem;
    border-radius: 4px;
    transition: all 0.2s ease;
    color: #6c757d;
}

.demo-menu-item.active {
    background: #ff6b35;
    color: #ffffff;
}

.demo-main {
    flex: 1;
    padding: 8px;
    background: #ffffff;
}

.demo-main.full {
    width: 100%;
}

.demo-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.demo-card {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
    font-size: 0.6rem;
    text-align: center;
    border: 1px solid #f1f3f4;
    transition: all 0.2s ease;
    color: #2c3e50;
}

.demo-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.1);
    border-color: #ff6b35;
}

.demo-card.mobile {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    font-size: 0.7rem;
    text-align: center;
    border: 1px solid #f1f3f4;
    color: #2c3e50;
}

.demo-card.app {
    background: #ff6b35;
    color: #ffffff;
    border: 1px solid #ff6b35;
}

.portfolio-label {
    background: #2c3e50;
    color: #ffffff;
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.portfolio-label:hover {
    background: #ff6b35;
    transform: translateY(-1px);
}

.pagination {
    text-align: center;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #f1f3f4;
}

.page-info {
    background: #f8f9fa;
    color: #2c3e50;
    padding: 0.7rem 1.2rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid #f1f3f4;
}


/* Detailed Services */

.detailed-services {
    padding: 100px 0;
    background: #ffffff;
    border-top: 1px solid #f1f3f4;
}

.detailed-services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 800;
    position: relative;
}

.detailed-services h2::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #ff6b35;
    border-radius: 2px;
}

.detailed-services>.container>p {
    text-align: center;
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.services-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.service-detail {
    background: #ffffff;
    border: 1px solid #f1f3f4;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.service-detail:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-color: #ff6b35;
}

.service-detail.active {
    border-color: #ff6b35;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.1);
}

.service-header {
    padding: 1.8rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    transition: all 0.3s ease;
    position: relative;
}

.service-header:hover {
    background: #fff5f2;
}

.service-header h3 {
    color: #2c3e50;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 700;
}

.service-header i:first-child {
    color: #ff6b35;
    font-size: 1.3rem;
}

.service-header i:last-child {
    color: #6c757d;
    transition: transform 0.3s ease;
}

.service-content {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: #ffffff;
}

.service-detail.active .service-content {
    padding: 0 2rem 2rem;
    max-height: 650px;
}

.service-detail.active .service-header i:last-child {
    transform: rotate(180deg);
}

.service-content p {
    margin-bottom: 1.5rem;
    color: #6c757d;
    line-height: 1.7;
    font-size: 1rem;
}

.service-content ul {
    list-style: none;
    padding: 0;
}

.service-content li {
    padding: 0.7rem 0;
    color: #6c757d;
    position: relative;
    padding-left: 1.8rem;
    line-height: 1.6;
    transition: all 0.2s ease;
}

.service-content li:hover {
    color: #2c3e50;
    transform: translateX(3px);
}

.service-content li::before {
    content: "✓";
    position: absolute;
    left: 0;
    width: 18px;
    height: 18px;
    background: #ff6b35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: bold;
}


/* Contact Section */

.contact {
    padding: 100px 0;
    background: #ffffff;
    border-top: 1px solid #f1f3f4;
    text-align: center;
    position: relative;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    color: #2c3e50;
    position: relative;
}

.contact h2::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #ff6b35;
    border-radius: 2px;
}

.contact p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    line-height: 1.6;
    color: #6c757d;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    padding: 1.2rem 1.8rem;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #f1f3f4;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.contact-item:hover {
    transform: translateY(-3px);
    border-color: #ff6b35;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.1);
}

.contact-item i {
    font-size: 1.3rem;
    color: #ff6b35;
}

.contact-item span {
    color: #2c3e50;
    font-weight: 500;
}


/* WhatsApp Button */

.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    color: white;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-btn a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}


/* Responsive Design */

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    .nav {
        display: none;
    }
    .hero {
        padding: 120px 0 80px;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero p {
        font-size: 1.1rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .service-category {
        padding: 2rem 1.5rem;
    }
    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.2rem;
    }
    .service-icon i {
        font-size: 1.5rem;
    }
    .service-category h3 {
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
    }
    .service-category p {
        font-size: 0.9rem;
    }
    .portfolio-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .portfolio-sidebar {
        position: static;
        padding: 1.5rem;
    }
    .portfolio-categories {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.8rem;
        padding-bottom: 0;
    }
    .portfolio-category {
        flex-shrink: 0;
        min-width: auto;
        width: 100%;
        padding: 1rem;
        gap: 1rem;
        justify-content: flex-start;
    }
    .category-icon {
        width: 40px;
        height: 40px;
    }
    .category-icon i {
        font-size: 1.1rem;
    }
    .portfolio-category span {
        font-size: 0.9rem;
        white-space: normal;
        text-align: left;
    }
    .portfolio-showcase {
        padding: 2rem 1.5rem;
    }
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    .device-mockup {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .desktop-mockup {
        width: 260px;
        height: 170px;
    }
    .contact-info {
        flex-direction: column;
        gap: 1.5rem;
    }
    .detailed-services h2,
    .services-overview h2,
    .portfolio h2 {
        font-size: 2rem;
    }
    .contact h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    .hero {
        padding: 100px 0 70px;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .services-overview,
    .portfolio,
    .detailed-services,
    .contact {
        padding: 70px 0;
    }
    .services-grid {
        gap: 1.2rem;
    }
    .service-category {
        padding: 1.8rem 1.2rem;
    }
    .service-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    .service-icon i {
        font-size: 1.3rem;
    }
    .service-category h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    .service-category p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    .portfolio-sidebar {
        padding: 1.2rem;
    }
    .portfolio-categories {
        gap: 0.6rem;
    }
    .portfolio-category {
        padding: 0.8rem;
        gap: 0.8rem;
    }
    .category-icon {
        width: 35px;
        height: 35px;
    }
    .category-icon i {
        font-size: 1rem;
    }
    .portfolio-category span {
        font-size: 0.85rem;
    }
    .portfolio-showcase {
        padding: 1.5rem 1rem;
    }
    .desktop-mockup {
        width: 220px;
        height: 140px;
    }
    .mobile-mockup {
        width: 100px;
        height: 160px;
    }
    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-btn a {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    .service-header {
        padding: 1.5rem;
    }
    .service-content {
        padding: 0 1.5rem;
    }
    .service-detail.active .service-content {
        padding: 0 1.5rem 1.5rem;
    }
}


/* Scroll animations */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}


/* Loading states */

.loading {
    opacity: 0.6;
    pointer-events: none;
}


/* Focus states for accessibility */

.nav-link:focus,
.contact-btn:focus,
.hero-cta:focus,
.service-category:focus,
.portfolio-category:focus {
    outline: 2px solid #ff6b35;
    outline-offset: 2px;
}