:root {
    --primary-color: #0066FF;
    --secondary-color: #1a237e;
    --accent-color: #2196F3;
    --dark-color: #1a1a2e;
    --text-color: #444444;
    --text-light: #777777;
    --white: #ffffff;
    --light-bg: #f3f5fa;
    --gradient: linear-gradient(135deg, #0066FF 0%, #1a237e 100%);
    --shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
    --top-header-height: 41px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--white);
}

/* ============================================
   TOP HEADER
   ============================================ */
.top-header {
    background: var(--secondary-color);
    padding: 0.6rem 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.top-header.hidden {
    transform: translateY(-100%);
}

.top-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-header-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-header-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
}

.top-header-item:hover {
    color: var(--accent-color);
}

.top-header-item i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.top-header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.top-header-social {
    display: flex;
    gap: 0.8rem;
}

.top-header-social a {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 0.75rem;
}

.top-header-social a:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.top-header-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
}

/* Language Selector */
.language-selector {
    position: relative;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    font-family: inherit;
}

.language-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.language-btn i:first-child {
    color: var(--accent-color);
}

.language-btn .fa-chevron-down {
    font-size: 0.65rem;
    transition: transform 0.3s ease;
}

.language-selector.active .language-btn .fa-chevron-down {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1002;
    overflow: hidden;
}

.language-selector.active .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--light-bg);
}

.lang-option:last-child {
    border-bottom: none;
}

.lang-option:hover {
    background: var(--light-bg);
    color: var(--primary-color);
}

.lang-option.active {
    background: rgba(0, 102, 255, 0.1);
    color: var(--primary-color);
}

.lang-option img {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* ============================================
   PONTOS FLUTUANTES
   ============================================ */
.floating-dots {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: float-dot 15s infinite ease-in-out;
}

@keyframes float-dot {

    0%,
    100% {
        transform: translate(0, 0);
        opacity: 0.3;
    }

    25% {
        transform: translate(100px, -100px);
        opacity: 0.6;
    }

    50% {
        transform: translate(-50px, 80px);
        opacity: 0.4;
    }

    75% {
        transform: translate(80px, 50px);
        opacity: 0.5;
    }
}

/* ============================================
   CONTAINER
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* ============================================
   HEADER / NAVBAR
   ============================================ */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: var(--top-header-height);
    z-index: 1000;
    transition: top 0.3s ease, box-shadow 0.3s ease;
}

.navbar.top-header-hidden {
    top: 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo img {
    height: 50px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 90vh;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: calc(70px + var(--top-header-height));
    padding: 80px 0;
    background-image: url('/images/home.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    transition: margin-top 0.3s ease;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    animation: fadeInUp 1s ease-out;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   PAGE HEADERS
   ============================================ */
.page-header {
    transition: margin-top 0.3s ease;
}

.page-header.sobre {
    background: var(--gradient);
    color: var(--white);
    padding: 150px 0 80px;
    text-align: center;
    margin-top: calc(70px + var(--top-header-height));
    min-height: 70vh;
    position: relative;
    overflow: hidden;
    background-image: url('/images/sobre.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-blend-mode: overlay;
}

.page-header.solucoes {
    background: var(--gradient);
    color: var(--white);
    padding: 150px 0 80px;
    text-align: center;
    margin-top: calc(70px + var(--top-header-height));
    min-height: 70vh;
    position: relative;
    overflow: hidden;
    background-image: url('/images/solucoes.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-blend-mode: overlay;
}

.page-header.servicos {
    background: var(--gradient);
    color: var(--white);
    padding: 150px 0 80px;
    text-align: center;
    margin-top: calc(70px + var(--top-header-height));
    min-height: 70vh;
    position: relative;
    overflow: hidden;
    background-image: url('/images/servicos.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-blend-mode: overlay;
}

.page-header.contacto {
    background: var(--gradient);
    color: var(--white);
    padding: 150px 0 80px;
    text-align: center;
    margin-top: calc(70px + var(--top-header-height));
    min-height: 70vh;
    position: relative;
    overflow: hidden;
    background-image: url('/images/contacto.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-blend-mode: overlay;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-large {
    padding: 18px 45px;
    font-size: 1rem;
}

.btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.btn-link i {
    transition: all 0.3s ease;
}

.btn-link:hover {
    color: var(--secondary-color);
}

.btn-link:hover i {
    transform: translateX(5px);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    padding: 80px 0;
    background: var(--light-bg);
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.stat-card {
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 102, 255, 0.2);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ============================================
   SECTION TITLES
   ============================================ */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-preview,
.solutions-preview,
.tech-stack-section,
.process-section {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.2);
    border-top-color: var(--primary-color);
}

.service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-size: 1.4rem;
    font-weight: 600;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.tech-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1rem;
}

.tech-tag {
    padding: 0.4rem 1rem;
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.tech-tag:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* ============================================
   SERVICES DETAIL
   ============================================ */
.services-detail {
    padding: 80px 0;
}

.service-detail-card {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.service-detail-card:hover {
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.2);
    transform: translateX(10px);
}

.service-detail-icon {
    width: 120px;
    height: 120px;
    background: var(--gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-detail-icon i {
    font-size: 3rem;
    color: var(--white);
}

.service-detail-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 600;
}

.service-detail-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* ============================================
   TECH STACK SECTION
   ============================================ */
.tech-stack-section {
    background: var(--light-bg);
}

.tech-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tech-logo-item {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
}

.tech-logo-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.2);
}

.tech-logo-item i {
    font-size: 3.5rem;
    color: var(--primary-color);
    display: block;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.tech-logo-item:hover i {
    transform: scale(1.2);
}

.tech-logo-item span {
    color: var(--text-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

/* ============================================
   SOLUTIONS SECTION
   ============================================ */
.solutions-preview {
    background: var(--white);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.solution-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.2);
    border-left-color: var(--primary-color);
}

.solution-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.solution-card:hover .solution-icon {
    transform: rotate(10deg) scale(1.1);
}

.solution-icon i {
    font-size: 2rem;
    color: var(--white);
}

.solution-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.solution-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.solution-features-mini {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.solution-features-mini li {
    padding: 0.6rem 0;
    color: var(--text-color);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.solution-features-mini i {
    color: var(--primary-color);
    font-size: 1rem;
}

/* ============================================
   SOLUTIONS DETAIL
   ============================================ */
.solutions-detail {
    padding: 80px 0;
    background: var(--light-bg);
}

.solution-detail-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 2.5rem;
    transition: all 0.3s ease;
}

.solution-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.2);
}

.solution-detail-card h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.solution-description {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.solution-features h4 {
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.solution-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.solution-features li {
    padding: 0.8rem 0;
    color: var(--text-color);
    font-size: 1rem;
    border-bottom: 1px solid rgba(0, 102, 255, 0.1);
}

.solution-features i {
    color: var(--primary-color);
    margin-right: 1rem;
}

.solution-detail-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.solution-detail-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.solution-detail-icon i {
    font-size: 3rem;
    color: var(--white);
}

.solution-detail-title h3 {
    font-size: 2.2rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.solution-tagline {
    color: var(--text-light);
    font-size: 1.1rem;
    font-style: italic;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: var(--light-bg);
    border-radius: 8px;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.solution-modules {
    margin-top: 2.5rem;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 10px;
}

.solution-modules h4 {
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.modules-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.module-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    background: var(--white);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

.module-item i {
    color: var(--primary-color);
}

.solution-benefits {
    margin-top: 2rem;
}

.solution-benefits h4 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.benefits-list {
    list-style: none;
    display: grid;
    gap: 0.8rem;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 8px;
}

.benefits-list i {
    color: #FFD700;
    font-size: 1.2rem;
}

.solution-actions {
    margin-top: 2.5rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-section {
    background: var(--light-bg);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.2);
}

.process-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 5px 20px rgba(0, 102, 255, 0.3);
}

.process-icon {
    width: 80px;
    height: 80px;
    margin: 2rem auto 1.5rem;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.process-step:hover .process-icon {
    background: var(--gradient);
    transform: scale(1.1);
}

.process-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.process-step:hover .process-icon i {
    color: var(--white);
}

.process-step h3 {
    color: var(--dark-color);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: var(--gradient);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   ABOUT CONTENT
   ============================================ */
.about-content {
    padding: 80px 0;
}

.about-section {
    margin-bottom: 4rem;
}

.about-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-section p {
    color: var(--text-light);
    line-height: 1.9;
    font-size: 1.05rem;
}

.about-intro {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-intro-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-intro-content p {
    color: var(--text-light);
    line-height: 1.9;
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
}

.about-stats-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.about-stat-card {
    background: var(--gradient);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    color: var(--white);
    box-shadow: var(--shadow);
}

.about-stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.about-stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* ============================================
   VALUES SECTION
   ============================================ */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--light-bg);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.value-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-card h3 {
    color: var(--dark-color);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.value-card p {
    color: var(--text-light);
}

.why-choose-list {
    list-style: none;
    margin-top: 2rem;
}

.why-choose-list li {
    padding: 1rem 0;
    color: var(--text-color);
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(0, 102, 255, 0.1);
}

.why-choose-list i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* ============================================
   MISSION VISION VALUES
   ============================================ */
.mission-vision-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.mvv-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.2);
    border-top-color: var(--primary-color);
}

.mvv-card.featured {
    border-top-color: var(--primary-color);
    transform: scale(1.05);
}

.mvv-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mvv-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.mvv-card h3 {
    font-size: 1.6rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.mvv-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ============================================
   WHY CHOOSE SECTION
   ============================================ */
.why-choose-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.why-choose-grid {
    margin-top: 3rem;
    display: grid;
    gap: 2rem;
}

.why-choose-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2rem;
    align-items: start;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.why-choose-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.2);
}

.why-choose-number {
    width: 100px;
    height: 100px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.why-choose-content h3 {
    font-size: 1.4rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.why-choose-content p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ============================================
   EXPERTISE SECTION
   ============================================ */
.expertise-section {
    padding: 80px 0;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.expertise-card {
    background: var(--light-bg);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.expertise-card:hover {
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-10px);
}

.expertise-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.expertise-card h3 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 0.8rem;
}

.expertise-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ============================================
   CLIENTS SECTION
   ============================================ */
.clients-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.clients-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.client-category {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.client-category h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-category ul {
    list-style: none;
}

.client-category li {
    padding: 0.8rem 0;
    color: var(--text-color);
    border-bottom: 1px solid var(--light-bg);
    display: flex;
    align-items: center;
}

.client-category li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: 700;
    margin-right: 1rem;
}

/* ============================================
   CERTIFICATIONS SECTION
   ============================================ */
.certifications-section {
    padding: 80px 0;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.cert-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cert-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
}

.cert-card i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cert-card h4 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.cert-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.contact-info h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.contact-info>p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    box-shadow: var(--shadow);
    transform: translateX(5px);
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.contact-item h3 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item p {
    color: var(--text-light);
}

.social-links-contact {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links-contact a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links-contact a:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 102, 255, 0.3);
}

.contact-form-container {
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 102, 255, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.contact-form label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-form label i {
    color: var(--primary-color);
}

.form-privacy {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 1rem 0;
}

.form-privacy input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-privacy label {
    color: var(--text-color);
    cursor: pointer;
}

.form-privacy a {
    color: var(--primary-color);
    text-decoration: none;
}

.form-note {
    text-align: center;
    color: var(--text-light);
    margin-top: 1rem;
    font-size: 0.9rem;
}

.form-note i {
    color: var(--primary-color);
}

.alert {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
}

.alert-success {
    background: rgba(0, 102, 255, 0.1);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

/* ============================================
   ALTERNATIVE CONTACT SECTION
   ============================================ */
.alternative-contact-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.alt-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.alt-contact-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.alt-contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.2);
}

.alt-contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alt-contact-icon.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.alt-contact-icon.email {
    background: var(--gradient);
}

.alt-contact-icon.telegram {
    background: linear-gradient(135deg, #0088cc 0%, #0066aa 100%);
}

.alt-contact-icon.phone {
    background: linear-gradient(135deg, #ff006e 0%, #d90051 100%);
}

.alt-contact-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.alt-contact-card h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 0.8rem;
}

.alt-contact-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* ============================================
   CONTACT FAQ SECTION
   ============================================ */
.contact-faq-section {
    padding: 80px 0;
}

.contact-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-quick-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
}

.faq-quick-item h3 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.faq-quick-item h3 i {
    color: var(--primary-color);
}

.faq-quick-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ============================================
   MAP SECTION
   ============================================ */
.map-section {
    padding: 80px 0 0;
    background: var(--light-bg);
}

.map-container {
    margin-top: 3rem;
}

.map-container iframe {
    border-radius: 0;
    filter: grayscale(0.3);
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 3px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-top-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.2);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.benefit-card h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ============================================
   TECH BY SERVICE SECTION
   ============================================ */
.tech-by-service-section {
    padding: 80px 0;
}

.tech-categories {
    margin-top: 3rem;
    display: grid;
    gap: 2.5rem;
}

.tech-category {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.tech-category h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.tech-item {
    padding: 0.6rem 1.2rem;
    background: var(--light-bg);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 25px;
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* ============================================
   WORK PROCESS SECTION
   ============================================ */
.work-process-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.process-detailed {
    margin-top: 3rem;
    display: grid;
    gap: 2.5rem;
}

.process-detailed-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    align-items: start;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.process-detailed-step:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.2);
}

.process-detailed-number {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 5px 20px rgba(0, 102, 255, 0.3);
}

.process-detailed-content h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.process-detailed-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.process-detailed-content ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.8rem;
}

.process-detailed-content li {
    color: var(--text-color);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.process-detailed-content li i {
    color: var(--primary-color);
}

/* ============================================
   COMPARISON SECTION
   ============================================ */
.comparison-section {
    padding: 80px 0;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.comparison-table {
    width: 100%;
    background: var(--white);
    border-collapse: collapse;
}

.comparison-table thead {
    background: var(--gradient);
    color: var(--white);
}

.comparison-table th {
    padding: 1.5rem 1rem;
    text-align: left;
    font-weight: 600;
}

.comparison-table tbody tr {
    border-bottom: 1px solid var(--light-bg);
    transition: all 0.3s ease;
}

.comparison-table tbody tr:hover {
    background: var(--light-bg);
}

.comparison-table td {
    padding: 1.2rem 1rem;
    text-align: center;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.text-success {
    color: #28a745;
    font-size: 1.3rem;
}

.text-danger {
    color: #dc3545;
    font-size: 1.3rem;
}

/* ============================================
   CUSTOMIZATION SECTION
   ============================================ */
.customization-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.customization-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.custom-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.custom-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.2);
}

.custom-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.custom-card h3 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.custom-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section {
    padding: 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.2);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.pricing-header h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.pricing-description {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.pricing-features ul {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid var(--light-bg);
}

.pricing-features i {
    color: var(--primary-color);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.faq-list {
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--light-bg);
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--dark-color);
    font-weight: 600;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    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-links a:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

/* ============================================
   FOOTER ENHANCED
   ============================================ */
.footer-newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="15" fill="rgba(255,255,255,0.03)"/><circle cx="80" cy="80" r="20" fill="rgba(255,255,255,0.02)"/></svg>');
    opacity: 0.5;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.newsletter-text h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    background: transparent;
    color: var(--white);
    font-size: 1rem;
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form button {
    background: var(--white);
    color: var(--primary-color);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Main Footer */
.footer-main {
    background: var(--secondary-color);
    padding: 5rem 0 2rem;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.footer-col h3 {
    color: var(--accent-color);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

/* Footer About */
.footer-about .footer-logo img {
    height: 50px;
    margin-bottom: 1.5rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.footer-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.footer-stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-stat strong {
    display: block;
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 0.3rem;
}

.footer-stat span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Footer Links */
.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-links i {
    font-size: 0.7rem;
    color: var(--accent-color);
}

/* Footer Contact */
.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: start;
}

.footer-contact i {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-top: 0.2rem;
    width: 25px;
    flex-shrink: 0;
}

.footer-contact strong {
    display: block;
    color: var(--white);
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
}

.footer-contact span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 3rem;
    align-items: center;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
}

.footer-dev {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.footer-dev i {
    color: #ff4757;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

.footer-social h4,
.footer-payments h4 {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-social .social-links {
    display: flex;
    gap: 0.8rem;
}

.footer-social .social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social .social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.4);
}

.payment-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.payment-icons i {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.payment-icons i:hover {
    color: var(--accent-color);
    transform: scale(1.2);
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 20px rgba(0, 102, 255, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
    transition: all 0.4s ease;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.6);
}

.back-to-top:active {
    transform: translateY(-2px);
}

.back-to-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: var(--primary-color);
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.back-to-top i {
    position: relative;
    z-index: 1;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-about {
        grid-column: 1 / -1;
    }
}

@media (max-width: 992px) {
    .top-header-hours {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --top-header-height: 76px;
    }

    .top-header {
        padding: 0.5rem 0;
    }

    .top-header-content {
        flex-direction: column;
        gap: 0.8rem;
    }

    .top-header-info {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .top-header-item span {
        display: none;
    }

    .top-header-item i {
        font-size: 1rem;
    }

    .top-header-right {
        width: 100%;
        justify-content: center;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: calc(70px + var(--top-header-height));
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease, top 0.3s ease;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .service-detail-icon {
        margin: 0 auto 1.5rem;
    }

    .about-intro {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .why-choose-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .why-choose-number {
        margin: 0 auto 1.5rem;
    }

    .process-detailed-step {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .process-detailed-number {
        margin: 0 auto 1rem;
    }

    .solution-detail-header {
        flex-direction: column;
        text-align: center;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.8rem 0.5rem;
    }

    .newsletter-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .newsletter-text h3 {
        justify-content: center;
    }

    .newsletter-form {
        flex-direction: column;
        border-radius: 10px;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
        border-radius: 10px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-social .social-links,
    .payment-icons {
        justify-content: center;
    }

    .footer-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .top-header-info {
        gap: 1.5rem;
    }

    .top-header-social {
        gap: 0.5rem;
    }

    .language-btn span {
        display: none;
    }

    .footer-newsletter {
        padding: 3rem 0;
    }

    .newsletter-text h3 {
        font-size: 1.5rem;
    }

    .footer-stats {
        grid-template-columns: 1fr;
    }
}


/* ============================================
   FEATURED PROJECT SECTION
   ============================================ */
.featured-project-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.featured-project-card {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 3rem;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    border-left: 5px solid var(--primary-color);
}

.featured-project-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: var(--gradient);
    opacity: 0.05;
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.featured-project-icon {
    width: 150px;
    height: 150px;
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.featured-project-icon i {
    font-size: 4rem;
    color: var(--white);
}

.featured-project-content {
    position: relative;
}

.featured-badge {
    display: inline-block;
    background: var(--gradient);
    color: var(--white);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.featured-project-content h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.featured-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.featured-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.featured-feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    background: var(--light-bg);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.featured-feature-item:hover {
    background: rgba(0, 102, 255, 0.1);
    transform: translateX(5px);
}

.featured-feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.featured-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

/* ============================================
   SERVICES CATEGORY SECTION
   ============================================ */
.services-category-section {
    padding: 80px 0;
}

.services-category-section.alt-bg {
    background: var(--light-bg);
}

.services-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 1.5rem 0;
}

.service-features-list span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--light-bg);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-color);
}

.service-features-list span i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 768px) {
    .featured-project-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .featured-project-icon {
        margin: 0 auto;
        width: 120px;
        height: 120px;
    }

    .featured-project-icon i {
        font-size: 3rem;
    }

    .featured-features {
        grid-template-columns: 1fr;
    }

    .services-category-grid {
        grid-template-columns: 1fr;
    }

    .service-features-list {
        justify-content: center;
    }
}

Copy code

/* ============================================
   WHY CHOOSE US SECTION (HOME)
   ============================================ */
.why-us-section {
    padding: 80px 0;
    background: var(--white);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-us-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 102, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.why-us-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.why-us-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.2);
}

.why-us-card:hover::before {
    transform: scaleX(1);
}

.why-us-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(26, 35, 126, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.why-us-card:hover .why-us-icon {
    background: var(--gradient);
    transform: scale(1.1);
}

.why-us-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.why-us-card:hover .why-us-icon i {
    color: var(--white);
}

.why-us-card h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.why-us-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ============================================
   SERVICES PAGE - DETAILED STYLING
   ============================================ */
.services-intro-section {
    padding: 60px 0;
    background: var(--white);
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-size: 2.2rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.intro-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.9;
}

/* Services Detailed Cards */
.services-detailed-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.service-detail-card {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 2.5rem;
    align-items: start;
    margin-bottom: 2.5rem;
    padding: 2.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-detail-card:hover {
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.15);
    transform: translateX(10px);
}

.service-detail-card:hover::before {
    opacity: 1;
}

.service-detail-card.featured {
    border: 2px solid var(--primary-color);
}

.service-detail-card.featured::after {
    content: 'Destaque';
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--gradient);
    color: var(--white);
    padding: 0.3rem 2.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(45deg);
}

.service-detail-icon {
    width: 120px;
    height: 120px;
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.service-detail-card:hover .service-detail-icon {
    transform: scale(1.05) rotate(5deg);
}

.service-detail-icon i {
    font-size: 3rem;
    color: var(--white);
}

.service-detail-content h2 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    background: var(--light-bg);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(0, 102, 255, 0.1);
    transform: translateX(5px);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1rem;
    flex-shrink: 0;
}

.feature-item span {
    color: var(--text-color);
    font-size: 0.95rem;
}

.service-tech-stack {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 102, 255, 0.1);
}

.service-tech-stack h4 {
    font-size: 1rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 25px;
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

.tech-badge:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.tech-badge i {
    font-size: 1rem;
}

/* ============================================
   SOLUTIONS PAGE - DETAILED STYLING
   ============================================ */
.solutions-intro-section {
    padding: 60px 0;
    background: var(--white);
}

.solutions-detailed-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.solution-detail-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.solution-detail-card:hover {
    box-shadow: 0 20px 50px rgba(0, 102, 255, 0.15);
    transform: translateY(-5px);
}

.solution-detail-card.featured {
    border: 2px solid var(--primary-color);
}

.solution-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
}

.solution-detail-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05) 0%, rgba(26, 35, 126, 0.05) 100%);
    border-bottom: 1px solid rgba(0, 102, 255, 0.1);
}

.solution-detail-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.solution-detail-card:hover .solution-detail-icon {
    transform: scale(1.05) rotate(5deg);
}

.solution-detail-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.solution-detail-title h2 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.solution-tagline {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 500;
}

.solution-detail-body {
    padding: 2.5rem;
}

.solution-description {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.solution-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.solution-feature {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.solution-feature:hover {
    background: rgba(0, 102, 255, 0.1);
    transform: translateY(-5px);
}

.solution-feature i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.solution-feature h4 {
    font-size: 1rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.solution-feature p {
    font-size: 0.85rem;
    color: var(--text-light);
}

.solution-use-cases,
.solution-modules,
.solution-tech {
    margin-bottom: 2rem;
}

.solution-use-cases h4,
.solution-modules h4,
.solution-tech h4 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.use-case-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.use-case-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: var(--light-bg);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 25px;
    font-size: 0.9rem;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.use-case-tag:hover {
    background: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.use-case-tag i {
    font-size: 1rem;
    color: var(--primary-color);
}

.use-case-tag:hover i {
    color: var(--white);
}

.module-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.module-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 102, 255, 0.1);
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.module-tag:hover {
    background: var(--primary-color);
    color: var(--white);
}

.solution-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 102, 255, 0.1);
}

/* Custom Solution Card (Dark Theme) */
.solution-detail-card.custom-solution {
    background: var(--gradient);
    border: none;
}

.custom-solution .solution-detail-header {
    background: rgba(255, 255, 255, 0.05);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.custom-solution .solution-detail-icon {
    background: rgba(255, 255, 255, 0.2);
}

.custom-solution .solution-detail-title h2 {
    color: var(--white);
}

.custom-solution .solution-tagline {
    color: rgba(255, 255, 255, 0.8);
}

.custom-solution .solution-description {
    color: rgba(255, 255, 255, 0.9);
}

.custom-solution .solution-feature {
    background: rgba(255, 255, 255, 0.1);
}

.custom-solution .solution-feature:hover {
    background: rgba(255, 255, 255, 0.2);
}

.custom-solution .solution-feature i {
    color: var(--white);
}

.custom-solution .solution-feature h4 {
    color: var(--white);
}

.custom-solution .solution-feature p {
    color: rgba(255, 255, 255, 0.8);
}

.custom-solution .solution-cta {
    border-top-color: rgba(255, 255, 255, 0.1);
}

/* Solutions Benefits Section */
.solutions-benefits-section {
    padding: 80px 0;
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--light-bg);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-10px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-icon i {
    font-size: 2rem;
    color: var(--white);
}

.benefit-card h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ============================================
   ABOUT PAGE - DETAILED STYLING
   ============================================ */
.about-intro-section {
    padding: 80px 0;
    background: var(--white);
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-intro-content h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-intro-content .lead {
    font-size: 1.2rem;
    color: var(--text-color);
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-intro-content p {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 1rem;
}

.about-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--light-bg);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(0, 102, 255, 0.1);
    transform: translateX(5px);
}

.highlight-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.highlight-item div strong {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.highlight-item div span {
    font-size: 1rem;
    color: var(--dark-color);
    font-weight: 600;
}

.about-intro-image {
    position: relative;
}

.about-intro-image .image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.about-intro-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
}

.overlay-content {
    color: var(--white);
}

.overlay-content .year {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.overlay-content .text {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* About Stats Section */
.about-stats-section {
    padding: 60px 0;
    background: var(--light-bg);
}

/* History / Timeline Section */
.history-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 3rem auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--gradient);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: calc(50% + 50px);
    position: relative;
    margin-bottom: 3rem;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: calc(50% + 50px);
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: var(--white);
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-marker {
    background: var(--gradient);
    border-color: var(--secondary-color);
}

.timeline-marker .year {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-marker .year {
    color: var(--white);
}

.timeline-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    max-width: 400px;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.2);
    transform: translateY(-5px);
}

.timeline-content h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.8;
}

.timeline-item.current .timeline-marker {
    background: var(--gradient);
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 10px rgba(0, 102, 255, 0.2);
}

.timeline-item.current .timeline-marker .year {
    color: var(--white);
}

/* Expertise Section */
.expertise-section {
    padding: 80px 0;
    background: var(--white);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.expertise-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.expertise-card:hover {
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.expertise-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.expertise-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.expertise-card h3 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.expertise-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.expertise-progress {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar::after {
    content: '';
    display: block;
    height: 100%;
    background: var(--gradient);
    border-radius: 10px;
    width: 0;
    animation: progressFill 1.5s ease forwards;
}

@keyframes progressFill {
    to {
        width: inherit;
    }
}

.expertise-progress span {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
    min-width: 45px;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 102, 255, 0.2);
}

.team-photo {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-photo img {
    transform: scale(1.1);
}

.team-social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.team-card:hover .team-social {
    transform: translateY(0);
}

.team-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-info h3 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.team-role {
    display: block;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 0.8rem;
}

.team-info p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}

.team-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.team-cta p {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

/* Certifications Section */
.certifications-section {
    padding: 80px 0;
    background: var(--white);
}

.certifications-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.certification-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 2rem 1.5rem;
    background: var(--light-bg);
    border-radius: 15px;
    min-width: 160px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.certification-item:hover {
    background: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.certification-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.certification-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
    text-align: center;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 6rem;
    color: rgba(0, 102, 255, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 102, 255, 0.15);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-stars {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.testimonial-stars i {
    color: #FFD700;
    font-size: 1rem;
}

.testimonial-content p {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.testimonial-author strong {
    display: block;
    font-size: 1rem;
    color: var(--dark-color);
    margin-bottom: 0.2rem;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ============================================
   CONTACT PAGE - DETAILED STYLING
   ============================================ */
.contact-info-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.contact-info-card {
    background: var(--light-bg);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-info-card:hover {
    background: var(--white);
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
    transform: translateY(-10px);
}

.contact-info-card.whatsapp {
    border-color: #25D366;
}

.contact-info-card.whatsapp:hover {
    background: rgba(37, 211, 102, 0.05);
}

.contact-info-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-info-icon {
    transform: scale(1.1);
}

.contact-info-card.whatsapp .contact-info-icon {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.contact-info-icon i {
    font-size: 2rem;
    color: var(--white);
}

.contact-info-card h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-info-card p {
    color: var(--text-light);
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
}

.contact-info-card p a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-card p a:hover {
    color: var(--primary-color);
}

.contact-note {
    font-size: 0.85rem !important;
    color: var(--text-light) !important;
    margin-top: 0.5rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.6rem 1.2rem;
    background: var(--gradient);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 102, 255, 0.3);
}

.contact-link.whatsapp-link {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.contact-link.whatsapp-link:hover {
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-form-wrapper>p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.sidebar-card h3 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.sidebar-card h3 i {
    color: var(--primary-color);
}

/* Hours Card */
.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 1rem;
    background: var(--light-bg);
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.hours-list li span {
    color: var(--text-color);
    font-size: 0.95rem;
}

.hours-list li strong {
    color: var(--dark-color);
    font-weight: 600;
}

.hours-list li.closed strong {
    color: #dc3545;
}

.emergency-note {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(0, 102, 255, 0.05);
    border-radius: 10px;
    font-size: 0.9rem;
    color: var(--text-color);
}

.emergency-note i {
    color: var(--primary-color);
    margin-top: 0.2rem;
}

/* FAQ Quick Card */
.faq-quick-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-quick-item h4 {
    font-size: 1rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.faq-quick-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Social Card */
.social-links-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.social-links-large a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 10px;
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links-large a:hover {
    background: var(--gradient);
    color: var(--white);
    transform: translateY(-3px);
}

.social-links-large a i {
    font-size: 1.3rem;
}

/* Map Section */
.map-section {
    padding: 80px 0 0;
    background: var(--white);
}

.map-wrapper {
    margin-top: 3rem;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: none;
}

/* Alt Contact Section */
.alt-contact-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.alt-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.alt-contact-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.alt-contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.2);
}

.alt-contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.alt-contact-card:hover .alt-contact-icon {
    background: var(--gradient);
}

.alt-contact-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.alt-contact-card:hover .alt-contact-icon i {
    color: var(--white);
}

.alt-contact-card h3 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.alt-contact-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* ============================================
   ERROR PAGE (404)
   ============================================ */
.error-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-bg);
    padding: 80px 0;
}

.error-content {
    text-align: center;
    max-width: 600px;
}

.error-code {
    font-size: 10rem;
    font-weight: 800;
    line-height: 1;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.error-content h1 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.error-content>p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.error-suggestions {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 2.5rem;
    text-align: left;
}

.error-suggestions h3 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.error-suggestions ul {
    list-style: none;
}

.error-suggestions ul li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    color: var(--text-color);
    border-bottom: 1px solid var(--light-bg);
}

.error-suggestions ul li:last-child {
    border-bottom: none;
}

.error-suggestions ul li i {
    color: var(--primary-color);
    font-size: 1rem;
}

.error-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.error-search p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.quick-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.quick-links a {
    padding: 0.6rem 1.2rem;
    background: var(--white);
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 25px;
    text-decoration: none;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.quick-links a:hover {
    background: var(--gradient);
    color: var(--white);
    transform: translateY(-3px);
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    z-index: 998;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
    font-size: 2rem;
    color: var(--white);
}

@keyframes pulse-whatsapp {

    0%,
    100% {
        box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 5px 25px rgba(37, 211, 102, 0.6), 0 0 0 15px rgba(37, 211, 102, 0.1);
    }
}

/* ============================================
   RESPONSIVE ADJUSTMENTS FOR NEW SECTIONS
   ============================================ */
@media (max-width: 992px) {
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-intro-grid {
        grid-template-columns: 1fr;
    }

    .about-intro-image {
        order: -1;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 40px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        padding-left: 100px;
        padding-right: 0;
        justify-content: flex-start;
    }

    .timeline-marker {
        left: 40px;
        transform: translateX(-50%);
        width: 60px;
        height: 60px;
    }

    .timeline-content {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .service-detail-icon {
        margin: 0 auto 1.5rem;
        width: 100px;
        height: 100px;
    }

    .service-detail-icon i {
        font-size: 2.5rem;
    }

    .service-features {
        grid-template-columns: 1fr;
    }

    .solution-detail-header {
        flex-direction: column;
        text-align: center;
    }

    .solution-features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .solution-cta {
        justify-content: center;
    }

    .about-highlights {
        flex-direction: column;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .social-links-large {
        grid-template-columns: 1fr;
    }

    .error-code {
        font-size: 6rem;
    }

    .error-actions {
        flex-direction: column;
        align-items: center;
    }

    .error-actions .btn {
        width: 100%;
        max-width: 300px;
    }

    .whatsapp-float {
        bottom: 80px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .whatsapp-float i {
        font-size: 1.7rem;
    }
}

@media (max-width: 480px) {
    .solution-features-grid {
        grid-template-columns: 1fr;
    }

    .certifications-grid {
        gap: 1rem;
    }

    .certification-item {
        min-width: 140px;
        padding: 1.5rem 1rem;
    }

    .timeline-marker {
        width: 50px;
        height: 50px;
    }

    .timeline-marker .year {
        font-size: 0.85rem;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        padding-left: 80px;
    }
}

/* ============================================
   PAGE HEADERS - CORREÇÃO COMPLETA
   ============================================ */

/* Base Page Header */
.page-header {
    background: var(--gradient);
    color: var(--white);
    padding: 150px 0 80px;
    text-align: center;
    margin-top: calc(70px + var(--top-header-height));
    min-height: 50vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Overlay escuro para melhor legibilidade */
.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* Padrão de pontos decorativos */
.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease;
}

.page-header>.container>p,
.page-header p.page-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb a i {
    font-size: 0.85rem;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb span:last-child {
    color: var(--accent-color);
    font-weight: 600;
}

.breadcrumb .fa-chevron-right {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   SERVIÇOS PAGE HEADER
   ============================================ */
.page-header.servicos-header,
.servicos-header {
    background: var(--gradient);
    background-image: url('/images/servicos.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-blend-mode: overlay;
}

/* ============================================
   SOLUÇÕES PAGE HEADER
   ============================================ */
.page-header.solucoes-header,
.solucoes-header {
    background: var(--gradient);
    background-image: url('/images/solucoes.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-blend-mode: overlay;
}

/* ============================================
   SOBRE PAGE HEADER
   ============================================ */
.page-header.sobre-header,
.sobre-header {
    background: var(--gradient);
    background-image: url('/images/sobre.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-blend-mode: overlay;
}

/* ============================================
   CONTACTO PAGE HEADER
   ============================================ */
.page-header.contato-header,
.contato-header {
    background: var(--gradient);
    background-image: url('/images/contacto.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-blend-mode: overlay;
}

/* ============================================
   SERVICES INTRO SECTION
   ============================================ */
.services-intro {
    padding: 80px 0;
    background: var(--white);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
}

.intro-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.intro-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.9;
}

/* ============================================
   SERVICES DETAILED SECTION - CORREÇÃO
   ============================================ */
.services-detailed {
    padding: 80px 0;
    background: var(--light-bg);
}

.service-detail-card {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 2.5rem;
    align-items: start;
    margin-bottom: 2.5rem;
    padding: 2.5rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 102, 255, 0.1);
}

.service-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-detail-card:hover {
    box-shadow: 0 20px 50px rgba(0, 102, 255, 0.15);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.service-detail-card:hover::before {
    opacity: 1;
}

.service-detail-card:last-child {
    margin-bottom: 0;
}

/* Featured Service Card */
.service-detail-card.featured {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.02) 0%, rgba(26, 35, 126, 0.02) 100%);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 3px 10px rgba(0, 102, 255, 0.3);
}

.service-detail-icon {
    width: 130px;
    height: 130px;
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.2);
}

.service-detail-card:hover .service-detail-icon {
    transform: scale(1.05) rotate(3deg);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.3);
}

.service-detail-icon i {
    font-size: 3.5rem;
    color: var(--white);
}

.service-detail-content h2 {
    font-size: 1.9rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-description {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    background: var(--light-bg);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-item:hover {
    background: rgba(0, 102, 255, 0.08);
    border-color: rgba(0, 102, 255, 0.2);
    transform: translateX(5px);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.feature-item span {
    color: var(--text-color);
    font-size: 0.95rem;
    font-weight: 500;
}

.service-tech-stack {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 102, 255, 0.1);
}

.service-tech-stack h4 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-tech-stack h4 i {
    color: var(--primary-color);
}

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(0, 102, 255, 0.08);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 30px;
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: default;
}

.tech-badge:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
}

.tech-badge i {
    font-size: 1rem;
}

/* ============================================
   SOLUTIONS INTRO SECTION
   ============================================ */
.solutions-intro {
    padding: 80px 0;
    background: var(--white);
}

/* ============================================
   SOLUTIONS DETAILED SECTION - CORREÇÃO
   ============================================ */
.solutions-detailed {
    padding: 80px 0;
    background: var(--light-bg);
}

.solution-detail-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(0, 102, 255, 0.1);
}

.solution-detail-card:hover {
    box-shadow: 0 25px 60px rgba(0, 102, 255, 0.15);
    transform: translateY(-8px);
    border-color: var(--primary-color);
}

.solution-detail-card:last-child {
    margin-bottom: 0;
}

.solution-detail-card.featured {
    border: 2px solid var(--primary-color);
}

.solution-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: var(--gradient);
    color: var(--white);
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
}

.solution-detail-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05) 0%, rgba(26, 35, 126, 0.05) 100%);
    border-bottom: 1px solid rgba(0, 102, 255, 0.1);
}

.solution-detail-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.2);
}

.solution-detail-card:hover .solution-detail-icon {
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.3);
}

.solution-detail-icon i {
    font-size: 2.8rem;
    color: var(--white);
}

.solution-detail-title h2 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.solution-tagline {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 500;
    font-style: italic;
}

.solution-detail-body {
    padding: 2.5rem;
}

.solution-description {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.solution-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.solution-feature {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--light-bg);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.solution-feature:hover {
    background: rgba(0, 102, 255, 0.08);
    border-color: rgba(0, 102, 255, 0.2);
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.1);
}

.solution-feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
    transition: transform 0.3s ease;
}

.solution-feature:hover i {
    transform: scale(1.1);
}

.solution-feature h4 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.solution-feature p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Ideal For / Use Cases */
.solution-use-cases,
.solution-modules,
.solution-tech {
    margin-bottom: 2rem;
}

.solution-use-cases h4,
.solution-modules h4,
.solution-tech h4 {
    font-size: 1.15rem;
    color: var(--dark-color);
    margin-bottom: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.solution-use-cases h4 i,
.solution-modules h4 i,
.solution-tech h4 i {
    color: var(--primary-color);
}

.use-case-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.use-case-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1.4rem;
    background: var(--light-bg);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 30px;
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

.use-case-tag:hover {
    background: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3);
}

.use-case-tag i {
    font-size: 1rem;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.use-case-tag:hover i {
    color: var(--white);
}

.module-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.module-tag {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: rgba(0, 102, 255, 0.1);
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.module-tag:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.solution-cta {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(0, 102, 255, 0.1);
}

/* Custom Solution Card - Dark Theme */
.solution-detail-card.custom-solution {
    background: var(--gradient);
    border: none;
}

.custom-solution .solution-detail-header {
    background: rgba(255, 255, 255, 0.05);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.custom-solution .solution-detail-icon {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.custom-solution .solution-detail-title h2 {
    color: var(--white);
}

.custom-solution .solution-tagline {
    color: rgba(255, 255, 255, 0.8);
}

.custom-solution .solution-description {
    color: rgba(255, 255, 255, 0.9);
}

.custom-solution .solution-feature {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.1);
}

.custom-solution .solution-feature:hover {
    background: rgba(255, 255, 255, 0.2);
}

.custom-solution .solution-feature i {
    color: var(--white);
}

.custom-solution .solution-feature h4 {
    color: var(--white);
}

.custom-solution .solution-feature p {
    color: rgba(255, 255, 255, 0.8);
}

.custom-solution .solution-use-cases h4,
.custom-solution .solution-modules h4 {
    color: var(--white);
}

.custom-solution .solution-use-cases h4 i,
.custom-solution .solution-modules h4 i {
    color: rgba(255, 255, 255, 0.8);
}

.custom-solution .use-case-tag {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.custom-solution .use-case-tag i {
    color: rgba(255, 255, 255, 0.8);
}

.custom-solution .use-case-tag:hover {
    background: var(--white);
    color: var(--primary-color);
}

.custom-solution .use-case-tag:hover i {
    color: var(--primary-color);
}

.custom-solution .module-tag {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.custom-solution .module-tag:hover {
    background: var(--white);
    color: var(--primary-color);
}

.custom-solution .solution-cta {
    border-top-color: rgba(255, 255, 255, 0.1);
}

/* Solutions Benefits Section */
.solutions-benefits {
    padding: 80px 0;
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--light-bg);
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.benefit-card:hover {
    background: var(--white);
    box-shadow: 0 20px 50px rgba(0, 102, 255, 0.12);
    transform: translateY(-10px);
    border-color: rgba(0, 102, 255, 0.2);
}

.benefit-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.2);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-icon i {
    font-size: 2.2rem;
    color: var(--white);
}

.benefit-card h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ============================================
   ABOUT PAGE - SECTIONS
   ============================================ */
.about-intro {
    padding: 80px 0;
    background: var(--white);
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-intro-content h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-intro-content .lead {
    font-size: 1.2rem;
    color: var(--text-color);
    font-weight: 500;
    line-height: 1.9;
    margin-bottom: 1rem;
}

.about-intro-content p {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 1rem;
}

.about-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--light-bg);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.highlight-item:hover {
    background: rgba(0, 102, 255, 0.08);
    border-color: rgba(0, 102, 255, 0.2);
    transform: translateX(5px);
}

.highlight-item i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.highlight-item div {
    display: flex;
    flex-direction: column;
}

.highlight-item div strong {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.2rem;
}

.highlight-item div span {
    font-size: 1.1rem;
    color: var(--dark-color);
    font-weight: 600;
}

.about-intro-image {
    position: relative;
}

.about-intro-image .image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.about-intro-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    padding: 2.5rem;
}

.overlay-content {
    color: var(--white);
}

.overlay-content .year {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.overlay-content .text {
    font-size: 1rem;
    opacity: 0.9;
}

/* About Stats Section */
.about-stats {
    padding: 60px 0;
    background: var(--light-bg);
}

/* ============================================
   CONTACT PAGE - SECTIONS
   ============================================ */
.contact-info-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.contact-info-card {
    background: var(--light-bg);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.contact-info-card:hover {
    background: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(0, 102, 255, 0.12);
    transform: translateY(-10px);
}

.contact-info-card.whatsapp {
    border-color: #25D366;
}

.contact-info-card.whatsapp:hover {
    background: rgba(37, 211, 102, 0.05);
    box-shadow: 0 20px 50px rgba(37, 211, 102, 0.15);
}

.contact-info-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.2);
}

.contact-info-card:hover .contact-info-icon {
    transform: scale(1.1);
}

.contact-info-card.whatsapp .contact-info-icon {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.contact-info-icon i {
    font-size: 2.2rem;
    color: var(--white);
}

.contact-info-card h3 {
    font-size: 1.4rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-info-card p {
    color: var(--text-light);
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-info-card p a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-card p a:hover {
    color: var(--primary-color);
}

.contact-note {
    font-size: 0.85rem !important;
    color: var(--text-light) !important;
    margin-top: 0.8rem;
    font-style: italic;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1.5rem;
    padding: 0.7rem 1.5rem;
    background: var(--gradient);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
}

.contact-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.4);
}

.contact-link.whatsapp-link {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.contact-link.whatsapp-link:hover {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-form-wrapper>p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1rem;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.6rem;
    color: var(--dark-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-checkbox {
    flex-direction: row !important;
    align-items: center;
    gap: 0.8rem;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary-color);
    cursor: pointer;
}

.form-checkbox label {
    margin-bottom: 0;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.sidebar-card h3 {
    font-size: 1.25rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.sidebar-card h3 i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Hours Card */
.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 1rem 1.2rem;
    background: var(--light-bg);
    border-radius: 10px;
    margin-bottom: 0.6rem;
    transition: all 0.3s ease;
}

.hours-list li:hover {
    background: rgba(0, 102, 255, 0.08);
}

.hours-list li span {
    color: var(--text-color);
    font-size: 0.95rem;
}

.hours-list li strong {
    color: var(--dark-color);
    font-weight: 600;
}

.hours-list li.closed strong {
    color: #dc3545;
}

.emergency-note {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 1.5rem;
    padding: 1.2rem;
    background: rgba(0, 102, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.emergency-note i {
    color: var(--primary-color);
    margin-top: 0.2rem;
    font-size: 1.1rem;
}

.emergency-note p {
    font-size: 0.9rem;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

/* FAQ Quick Card */
.faq-quick-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-quick-item {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--light-bg);
}

.faq-quick-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.faq-quick-item h4 {
    font-size: 1rem;
    color: var(--dark-color);
    margin-bottom: 0.6rem;
    font-weight: 600;
}

.faq-quick-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Social Card */
.social-links-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.social-links-large a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.2rem;
    background: var(--light-bg);
    border-radius: 12px;
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links-large a:hover {
    background: var(--gradient);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.3);
}

.social-links-large a i {
    font-size: 1.4rem;
}

/* Map Section */
.map-section {
    padding: 80px 0 0;
    background: var(--white);
}

.map-wrapper {
    margin-top: 3rem;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: none;
}

/* Alt Contact Section */
.alt-contact-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.alt-contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.alt-contact-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
}

.alt-contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 102, 255, 0.15);
}

.alt-contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.alt-contact-card:hover .alt-contact-icon {
    background: var(--gradient);
    transform: scale(1.1);
}

.alt-contact-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.alt-contact-card:hover .alt-contact-icon i {
    color: var(--white);
}

.alt-contact-card h3 {
    font-size: 1.25rem;
    color: var(--dark-color);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.alt-contact-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* ============================================
   RESPONSIVE - PAGE HEADERS & SECTIONS
   ============================================ */
@media (max-width: 1200px) {
    .solution-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .alt-contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .page-header {
        padding: 120px 0 60px;
        min-height: 40vh;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .page-header>.container>p {
        font-size: 1.1rem;
    }

    .about-intro-grid {
        grid-template-columns: 1fr;
    }

    .about-intro-image {
        order: -1;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .service-detail-icon {
        margin: 0 auto 2rem;
    }

    .service-features {
        grid-template-columns: 1fr;
    }

    .solution-detail-header {
        flex-direction: column;
        text-align: center;
    }

    .solution-features-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 50px;
        min-height: auto;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header>.container>p {
        font-size: 1rem;
    }

    .breadcrumb {
        flex-wrap: wrap;
        font-size: 0.85rem;
    }

    .service-detail-card {
        padding: 2rem 1.5rem;
    }

    .service-detail-icon {
        width: 100px;
        height: 100px;
    }

    .service-detail-icon i {
        font-size: 2.5rem;
    }

    .solution-features-grid {
        grid-template-columns: 1fr;
    }

    .solution-cta {
        justify-content: center;
    }

    .about-highlights {
        flex-direction: column;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .alt-contact-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .social-links-large {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 1.75rem;
    }

    .intro-content h2 {
        font-size: 1.8rem;
    }

    .service-detail-content h2 {
        font-size: 1.5rem;
    }

    .solution-detail-title h2 {
        font-size: 1.5rem;
    }

    .solution-detail-body {
        padding: 1.5rem;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .sidebar-card {
        padding: 1.5rem;
    }
}


/* ============================================
   FORM VALIDATION STYLES
   ============================================ */
.field-error {
    display: none;
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.field-invalid {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1) !important;
}

.form-group input:valid:not(:placeholder-shown),
.form-group select:valid,
.form-group textarea:valid:not(:placeholder-shown) {
    border-color: #28a745;
}

.char-counter {
    text-align: right;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 0.3rem;
}

.char-counter.warning {
    color: #dc3545;
    font-weight: 600;
}

/* Alerts */
.alert {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    animation: slideIn 0.3s ease;
}

.alert i {
    font-size: 1.3rem;
}

.alert span {
    flex: 1;
}

.alert-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.alert-close:hover {
    opacity: 1;
}

.alert-success {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid #28a745;
    color: #28a745;
}

.alert-error {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid #dc3545;
    color: #dc3545;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading state */
.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-loading {
    display: none;
}

.btn-loading i {
    margin-right: 0.5rem;
}

/* ============================================
   ABOUT PAGE - COMPLETE STYLES
   ============================================ */

/* About Intro Section */
.about-intro {
    padding: 80px 0;
    background: var(--white);
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-intro-content h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.about-intro-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.about-intro-content .lead {
    font-size: 1.15rem;
    color: var(--text-color);
    font-weight: 500;
    line-height: 1.9;
    margin-bottom: 1.2rem;
}

.about-intro-content p {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 1rem;
    font-size: 1rem;
}

/* About Highlights */
.about-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.highlight-item:hover {
    background: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.highlight-item i {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.highlight-item div {
    display: flex;
    flex-direction: column;
}

.highlight-item strong {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
}

.highlight-item span {
    font-size: 1.1rem;
    color: var(--dark-color);
    font-weight: 700;
}

/* About Intro Image */
.about-intro-image {
    position: relative;
}

.about-intro-image .image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.about-intro-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    background: var(--gradient);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    padding: 2.5rem;
}

.overlay-content {
    color: var(--white);
}

.overlay-content .year {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.overlay-content .text {
    font-size: 1rem;
    opacity: 0.9;
}

/* ============================================
   ABOUT STATS SECTION
   ============================================ */
.about-stats {
    padding: 60px 0;
    background: var(--light-bg);
}

.about-stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.about-stats .stat-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.about-stats .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.about-stats .stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 102, 255, 0.15);
}

.about-stats .stat-card:hover::before {
    transform: scaleX(1);
}

.about-stats .stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(26, 35, 126, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.about-stats .stat-card:hover .stat-icon {
    background: var(--gradient);
    transform: scale(1.1);
}

.about-stats .stat-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.about-stats .stat-card:hover .stat-icon i {
    color: var(--white);
}

.about-stats .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.about-stats .stat-label {
    font-size: 0.95rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ============================================
   MVV SECTION (Mission, Vision, Values)
   ============================================ */
.mvv-section {
    padding: 80px 0;
    background: var(--white);
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.mvv-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.4s ease;
    border-top: 5px solid transparent;
    position: relative;
    overflow: hidden;
}

.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 102, 255, 0.15);
}

.mvv-card.mission {
    border-top-color: var(--primary-color);
}

.mvv-card.vision {
    border-top-color: var(--accent-color);
}

.mvv-card.values {
    border-top-color: #28a745;
}

.mvv-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mvv-card.mission .mvv-icon {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 102, 255, 0.2) 100%);
}

.mvv-card.vision .mvv-icon {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.1) 0%, rgba(33, 150, 243, 0.2) 100%);
}

.mvv-card.values .mvv-icon {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1) 0%, rgba(40, 167, 69, 0.2) 100%);
}

.mvv-card:hover .mvv-icon {
    transform: scale(1.1) rotate(5deg);
}

.mvv-card.mission:hover .mvv-icon {
    background: var(--primary-color);
}

.mvv-card.vision:hover .mvv-icon {
    background: var(--accent-color);
}

.mvv-card.values:hover .mvv-icon {
    background: #28a745;
}

.mvv-icon i {
    font-size: 2.5rem;
    transition: all 0.3s ease;
}

.mvv-card.mission .mvv-icon i {
    color: var(--primary-color);
}

.mvv-card.vision .mvv-icon i {
    color: var(--accent-color);
}

.mvv-card.values .mvv-icon i {
    color: #28a745;
}

.mvv-card:hover .mvv-icon i {
    color: var(--white);
}

.mvv-card h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.mvv-card>p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

/* Values List */
.values-list {
    list-style: none;
    text-align: left;
    margin-top: 0.5rem;
}

.values-list li {
    padding: 0.6rem 0;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(40, 167, 69, 0.1);
}

.values-list li:last-child {
    border-bottom: none;
}

.values-list li i {
    color: #28a745;
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* ============================================
   HISTORY / TIMELINE SECTION
   ============================================ */
.history-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 3rem auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--gradient);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: calc(50% + 50px);
    position: relative;
    margin-bottom: 3rem;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: calc(50% + 50px);
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: var(--white);
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-marker {
    background: var(--gradient);
    border-color: var(--secondary-color);
    transform: translateX(-50%) scale(1.1);
}

.timeline-item.current .timeline-marker {
    background: var(--gradient);
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 10px rgba(0, 102, 255, 0.2);
}

.timeline-marker .year {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-marker .year,
.timeline-item.current .timeline-marker .year {
    color: var(--white);
}

.timeline-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    max-width: 400px;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.2);
    transform: translateY(-5px);
}

.timeline-content h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ============================================
   EXPERTISE SECTION
   ============================================ */
.expertise-section {
    padding: 80px 0;
    background: var(--white);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.expertise-card {
    background: var(--light-bg);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.expertise-card:hover {
    background: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.12);
    transform: translateY(-10px);
}

.expertise-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.expertise-card:hover .expertise-icon {
    transform: scale(1.1) rotate(5deg);
}

.expertise-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.expertise-card h3 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.expertise-card>p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Progress Bar */
.expertise-progress {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.expertise-progress .progress-bar {
    flex: 1;
    height: 10px;
    background: rgba(0, 102, 255, 0.15);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.expertise-progress .progress-bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: var(--gradient);
    border-radius: 10px;
    width: inherit;
    transition: width 1s ease;
}

.expertise-progress span {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-color);
    min-width: 45px;
}

/* ============================================
   CERTIFICATIONS SECTION
   ============================================ */
.certifications-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.certifications-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.certification-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 2.5rem;
    background: var(--white);
    border-radius: 15px;
    min-width: 160px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.certification-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.15);
}

.certification-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.certification-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
    text-align: center;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    padding: 80px 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid transparent;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 5rem;
    color: rgba(0, 102, 255, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    background: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(0, 102, 255, 0.12);
    transform: translateY(-10px);
}

.testimonial-content {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-stars {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.testimonial-stars i {
    color: #FFD700;
    font-size: 1rem;
}

.testimonial-content p {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    background: var(--gradient);
}

.testimonial-author div {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    font-size: 1rem;
    color: var(--dark-color);
    margin-bottom: 0.2rem;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ============================================
   ABOUT PAGE - RESPONSIVE laceholder-team.svg:1
   ============================================ */
@media (max-width: 1200px) {
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-intro-image {
        order: -1;
    }

    .about-intro-image img {
        height: 350px;
    }

    .about-stats .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mvv-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        padding-left: 90px;
        padding-right: 0;
        justify-content: flex-start;
    }

    .timeline-marker {
        left: 30px;
        width: 60px;
        height: 60px;
    }

    .timeline-content {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .about-intro-content h2 {
        font-size: 2rem;
    }

    .about-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .about-stats .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .about-stats .stat-card {
        padding: 2rem 1.5rem;
    }

    .about-stats .stat-number {
        font-size: 2.5rem;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .certification-item {
        min-width: auto;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .about-intro-image img {
        height: 280px;
    }

    .overlay-content .year {
        font-size: 2.5rem;
    }

    .timeline-marker {
        width: 50px;
        height: 50px;
    }

    .timeline-marker .year {
        font-size: 0.85rem;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        padding-left: 70px;
    }

    .timeline-content {
        padding: 1.5rem;
    }

    .timeline-content h3 {
        font-size: 1.1rem;
    }

    .certifications-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .mvv-card {
        padding: 2rem 1.5rem;
    }
}