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

:root {
    --primary-color: #ff3333;
    --primary-dark: #cc0000;
    --background: #0f0f0f;
    --surface: #1a1a1a;
    --surface-light: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --accent: #ff6b6b;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 12% 16%, rgba(255, 51, 51, 0.16) 0%, transparent 38%),
        radial-gradient(circle at 88% 78%, rgba(255, 51, 51, 0.12) 0%, transparent 40%),
        linear-gradient(145deg, #070707 0%, #0e0e0e 52%, #080808 100%);
    z-index: -2;
    pointer-events: none;
}

#globalBgCanvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Skip to main content link — hidden */
.skip-to-main {
    display: none;
}

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

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 51, 51, 0.1);
    animation: slideDown 0.6s ease-out;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 10px;
    margin-left: 1rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3rem;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
}

.logo-image {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-link:hover .logo-image {
    transform: scale(1.05);
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -1px;
}

.logo-dot {
    color: var(--primary-color);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

.nav-menu {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition);
    padding: 0.5rem 0;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

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

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.phone {
    color: var(--text-secondary);
    font-size: 0.95rem;
    text-decoration: none;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.whatsapp-icon {
    height: 18px;
    width: 18px;
    vertical-align: middle;
    margin-right: 4px;
}

.cta-button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    transition: left 0.3s ease;
    z-index: -1;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 51, 51, 0.4);
}

.hero {
    margin-top: 80px;
    padding: 80px 20px;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 51, 51, 0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    50% {
        transform: translateY(-30px) translateX(-20px);
    }
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: fadeInLeft 0.8s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #ff3333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title .word {
    display: inline-block;
    animation: fadeInUp 0.6s ease-out backwards;
}

.hero-title .word:nth-child(1) { animation-delay: 0.1s; }
.hero-title .word:nth-child(2) { animation-delay: 0.2s; }
.hero-title .word:nth-child(3) { animation-delay: 0.3s; }

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

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
    animation: fadeInUp 0.6s ease-out 0.4s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    animation: fadeInUp 0.6s ease-out 0.5s backwards;
}

.primary-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.primary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    transition: left 0.4s ease;
    z-index: -1;
}

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

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

.secondary-btn {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 51, 51, 0.5);
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.secondary-btn .arrow {
    transition: transform 0.3s ease;
    display: inline-block;
}

.secondary-btn:hover {
    background: rgba(255, 51, 51, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.secondary-btn:hover .arrow {
    transform: translateX(3px);
}

.hero-image {
    animation: fadeInRight 0.8s ease-out 0.2s backwards;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-logo {
    width: 100%;
    object-fit: contain;
    display: block;
    margin-left: auto;
    border-radius: 0;
    padding: 0;
    border: none;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.services {
    padding: 100px 20px;
    background: var(--background);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.6s ease-out;
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

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

.service-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 51, 51, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.service-card:hover {
    background: linear-gradient(135deg, #252525 0%, #2a2a2a 100%);
    border-color: rgba(255, 51, 51, 0.3);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 51, 51, 0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 51, 51, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: rgba(255, 51, 51, 0.2);
    transform: scale(1.1) rotate(5deg);
}

.service-icon svg {
    width: 32px;
    height: 32px;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.service-link span {
    transition: transform 0.3s ease;
    display: inline-block;
}

.service-link:hover {
    gap: 1rem;
}

.service-link:hover span {
    transform: translateX(3px);
}

.solutions {
    padding: 100px 20px;
    background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 4rem;
    animation: fadeInUp 0.6s ease-out;
    color: var(--text-primary);
    opacity: 1 !important;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.solution-item {
    background: var(--surface);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 51, 51, 0.1);
    position: relative;
    transition: var(--transition);
    animation: slideIn 0.6s ease-out backwards;
}

.solution-item:nth-child(1) { animation-delay: 0s; }
.solution-item:nth-child(2) { animation-delay: 0.15s; }
.solution-item:nth-child(3) { animation-delay: 0.3s; }
.solution-item:nth-child(4) { animation-delay: 0.45s; }

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.solution-item:hover {
    background: linear-gradient(135deg, var(--surface) 0%, #2a2a2a 100%);
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.solution-number {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255, 51, 51, 0.2);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.solution-item:hover .solution-number {
    color: rgba(255, 51, 51, 0.4);
    transform: scale(1.1);
}

.solution-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.solution-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.expertise {
    padding: 100px 20px;
    background: var(--background);
}

.expertise-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.expertise-text h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    animation: fadeInUp 0.6s ease-out;
}

.expertise-text > p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    animation: fadeInUp 0.6s ease-out 0.1s backwards;
}

.expertise-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature {
    display: flex;
    gap: 1.5rem;
    animation: fadeInUp 0.6s ease-out backwards;
}

.feature:nth-child(1) { animation-delay: 0.2s; }
.feature:nth-child(2) { animation-delay: 0.3s; }
.feature:nth-child(3) { animation-delay: 0.4s; }
.feature:nth-child(4) { animation-delay: 0.5s; }

.feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 51, 51, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-weight: bold;
    flex-shrink: 0;
    font-size: 1.5rem;
    transition: var(--transition);
}

.feature:hover .feature-icon {
    background: rgba(255, 51, 51, 0.3);
    transform: scale(1.1) rotate(10deg);
}

.feature h4 {
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.feature p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.expertise-visual {
    animation: fadeInRight 0.8s ease-out 0.2s backwards;
}

.stats-box {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.stat {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 51, 51, 0.2);
    text-align: center;
    transition: var(--transition);
}

.stat:hover {
    background: linear-gradient(135deg, #252525 0%, #2a2a2a 100%);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 51, 51, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 51, 51, 0.1) 0%, transparent 70%);
    animation: float 25s ease-in-out infinite reverse;
    pointer-events: none;
}

.cta-section h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    animation: fadeInUp 0.6s ease-out;
    position: relative;
    z-index: 1;
}

.cta-section p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease-out 0.1s backwards;
    position: relative;
    z-index: 1;
}

.cta-large-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

.cta-large-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    transition: left 0.4s ease;
    z-index: -1;
}

.cta-large-btn:hover::before {
    left: 0;
}

.cta-large-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 51, 51, 0.4);
}

.footer {
    background: linear-gradient(180deg, #0f0f0f 0%, #000000 100%);
    border-top: 1px solid rgba(255, 51, 51, 0.1);
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.7rem;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary-color);
    transform: translateX(3px);
    display: inline-block;
}

.footer-section p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.footer-contact-item:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.footer-contact-item:hover svg {
    transform: scale(1.1);
}

.footer-contact-item a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact-item a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 51, 51, 0.2);
    border-radius: 4px;
    transition: var(--transition);
}

.social-links a:hover {
    background: rgba(255, 51, 51, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 51, 51, 0.1);
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-legal-links {
    margin-top: 0.8rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
}

.footer-legal-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-legal-links a:hover {
    color: var(--primary-color);
}

.footer-legal-separator {
    color: rgba(255, 255, 255, 0.35);
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .navbar-container {
        padding: 1rem;
    }

    .logo-section {
        gap: 1rem;
        flex: 1;
    }

    .mobile-menu-toggle {
        display: flex;
        order: 2;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(15, 15, 15, 0.98);
        flex-direction: column;
        padding: 1rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-bottom: 1px solid rgba(255, 51, 51, 0.1);
    }

    .nav-menu.active {
        max-height: 400px;
    }

    .nav-link {
        padding: 0.75rem 0;
        font-size: 0.9rem;
    }

    .header-right {
        flex-direction: row;
        gap: 1rem;
        order: 3;
        width: 100%;
    }

    .phone {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-top: 2rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
        text-align: center;
        min-height: 44px;
        padding: 0.75rem;
    }

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

    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        width: 40px;
        height: 40px;
    }

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

    .solution-item {
        padding: 1.5rem;
    }

    .expertise-content {
        grid-template-columns: 1fr;
    }

    .expertise-features {
        gap: 1rem;
    }

    .feature {
        padding: 1rem;
    }

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

    .section-header h2,
    .section-title,
    .hero-title {
        font-size: 1.8rem;
    }

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

    .contact-hero {
        padding: 60px 20px;
        min-height: auto;
    }

    .whatsapp-button {
        width: 60px;
        height: 60px;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    .navbar {
        position: relative;
    }

    .logo-image {
        height: 40px;
    }

    .mobile-menu-toggle {
        padding: 8px;
    }

    .mobile-menu-toggle span {
        width: 20px;
        height: 2.5px;
    }

    .hero {
        padding-top: 5rem;
    }

    .hero-title {
        font-size: 1.4rem;
        line-height: 1.3;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-buttons {
        gap: 0.75rem;
    }

    .cta-button,
    .primary-btn,
    .secondary-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
        min-height: 44px;
    }

    .section-header h2,
    .section-title {
        font-size: 1.4rem;
    }

    .section-header p {
        font-size: 0.9rem;
    }

    .service-card {
        padding: 1.25rem;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .service-card p {
        font-size: 0.85rem;
    }

    .solution-item {
        padding: 1.25rem;
    }

    .solution-item h3 {
        font-size: 1.1rem;
    }

    .solution-item p {
        font-size: 0.85rem;
    }

    .expertise-text h2 {
        font-size: 1.4rem;
    }

    .expertise-text > p {
        font-size: 0.9rem;
    }

    .feature h4 {
        font-size: 0.95rem;
    }

    .feature p {
        font-size: 0.85rem;
    }

    .footer-section h3 {
        font-size: 1rem;
    }

    .footer-section a,
    .footer-section p {
        font-size: 0.85rem;
    }

    .stats-box {
        gap: 1rem;
    }

    .stat {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .whatsapp-button {
        width: 55px;
        height: 55px;
        font-size: 0.65rem;
        bottom: 20px;
        right: 20px;
    }
}

@media print {
    .navbar,
    .cta-section {
        display: none;
    }
}


.contact-hero {
    margin-top: 80px;
    padding: 100px 20px;
    background: transparent;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

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

.gradient-orb-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #ff3333 0%, #ff6b6b 100%);
    top: -200px;
    right: -100px;
    opacity: 0.15;
    animation-delay: 0s;
}

.gradient-orb-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff9999 100%);
    bottom: -150px;
    left: 100px;
    opacity: 0.1;
    animation-delay: -5s;
}

.gradient-orb-3 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #cc0000 0%, #ff3333 100%);
    top: 50%;
    left: 50%;
    opacity: 0.08;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    50% {
        transform: translateY(-50px) translateX(30px);
    }
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    animation: fadeInUp 0.8s ease-out;
}

.contact-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #ff3333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.contact-section {
    padding: 60px 20px;
    background: transparent;
    min-height: calc(100vh - 80px);
    position: relative;
    z-index: 1;
}

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

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

.info-card {
    background: rgba(20, 20, 20, 0.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 51, 51, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out backwards;
}

.info-card:nth-child(1) { animation-delay: 0.1s; }
.info-card:nth-child(2) { animation-delay: 0.2s; }
.info-card:nth-child(3) { animation-delay: 0.3s; }

.info-card:hover {
    background: linear-gradient(135deg, #252525 0%, #2a2a2a 100%);
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 51, 51, 0.2);
}

.info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255, 51, 51, 0.1) 0%, rgba(255, 107, 107, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.info-card:hover .info-icon {
    background: linear-gradient(135deg, rgba(255, 51, 51, 0.2) 0%, rgba(255, 107, 107, 0.2) 100%);
    transform: scale(1.1) rotate(5deg);
}

.info-icon svg {
    width: 32px;
    height: 32px;
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.info-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.info-card a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.info-card a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.form-wrapper {
    display: block;
    width: 100%;
}

.form-container {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 51, 51, 0.15);
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

.form-container h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 51, 51, 0.2);
    color: var(--text-primary);
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(176, 176, 176, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    background: rgba(255, 51, 51, 0.05);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 51, 51, 0.1);
}

.form-group select {
    cursor: pointer;
    color: var(--text-secondary);
}

.form-group select option {
    background: var(--surface);
    color: var(--text-primary);
}

.form-group textarea {
    resize: vertical;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.form-group.checkbox {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.form-group.checkbox input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    margin: 0;
}

.form-group.checkbox label {
    margin: 0;
    cursor: pointer;
}

.form-group.checkbox a {
    color: var(--primary-color);
    text-decoration: none;
}

.form-group.checkbox a:hover {
    text-decoration: underline;
}

.error-message {
    color: #ff6b6b;
    font-size: 0.8rem;
    margin-top: 0.3rem;
    display: none;
}

.error-message.show {
    display: block;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #ff6b6b;
    background: rgba(255, 107, 107, 0.05);
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff6b6b 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #cc0000 0%, var(--primary-color) 100%);
    transition: left 0.4s ease;
    z-index: -1;
}

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

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 51, 51, 0.4);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-message {
    padding: 1rem;
    border-radius: 6px;
    text-align: center;
    margin-top: 1rem;
    display: none;
    animation: slideIn 0.3s ease-out;
}

.form-message.success {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #4cb050;
    display: block;
}

.form-message.error {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    color: #ff6b6b;
    display: block;
}

.benefits-sidebar {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 51, 51, 0.15);
    animation: fadeInUp 0.6s ease-out 0.3s backwards;
    position: sticky;
    top: 120px;
    height: fit-content;
}

.benefits-sidebar h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.benefit-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(5px);
}

.benefit-icon {
    font-size: 1.8rem;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-item h4 {
    color: var(--text-primary);
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.benefit-item p {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.faq-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 100%);
}

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

.faq-section h2 {
    text-align: center;
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin-bottom: 3rem;
    animation: fadeInUp 0.6s ease-out;
    color: var(--text-primary);
    opacity: 1 !important;
}

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

.faq-item {
    background: var(--surface);
    border: 1px solid rgba(255, 51, 51, 0.15);
    border-radius: 8px;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out backwards;
    transition: all 0.3s ease;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.15s; }
.faq-item:nth-child(3) { animation-delay: 0.2s; }
.faq-item:nth-child(4) { animation-delay: 0.25s; }
.faq-item:nth-child(5) { animation-delay: 0.3s; }
.faq-item:nth-child(6) { animation-delay: 0.35s; }

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 51, 51, 0.15);
}

.faq-header {
    width: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border: none;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.faq-item:hover .faq-header {
    background: linear-gradient(135deg, #252525 0%, #2a2a2a 100%);
}

.faq-header h3 {
    font-size: 1rem;
    color: var(--text-primary);
    text-align: left;
    margin: 0;
    transition: color 0.3s ease;
}

.faq-item:hover .faq-header h3 {
    color: var(--primary-color);
}

.faq-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
}

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

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: var(--background);
}

.faq-item.active .faq-content {
    max-height: 300px;
    padding: 1.5rem;
}

.faq-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 768px) {
    .contact-hero {
        min-height: 400px;
        padding: 60px 20px;
    }

    .contact-title {
        font-size: 2rem;
    }

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

    .form-wrapper {
        grid-template-columns: 1fr;
    }

    .benefits-sidebar {
        position: static;
        top: auto;
    }

    .form-container {
        padding: 2rem;
    }

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

    .gradient-orb-1 {
        width: 300px;
        height: 300px;
        top: -100px;
        right: -50px;
    }

    .gradient-orb-2 {
        width: 250px;
        height: 250px;
        bottom: -100px;
        left: 0;
    }

    .gradient-orb-3 {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        min-height: 300px;
        padding: 40px 20px;
    }

    .contact-title {
        font-size: 1.5rem;
    }

    .form-container {
        padding: 1.5rem;
    }

    .info-icon {
        width: 60px;
        height: 60px;
    }

    .faq-header {
        padding: 1rem;
    }

    .faq-header h3 {
        font-size: 0.9rem;
    }
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 15px;
    background: linear-gradient(135deg, #25D366 0%, #20BA58 100%);
    color: white;
    border: none;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    padding: 0;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Map Section Styling */
.visit-office-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border-top: 1px solid rgba(255, 51, 51, 0.1);
}

.visit-office-container {
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
}

.visit-office-section h2 {
    font-size: clamp(28px, 5vw, 42px);
    color: #ffffff;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(255, 51, 51, 0.15);
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .visit-office-section {
        padding: 60px 15px;
    }
    
    .visit-office-section h2 {
        margin-bottom: 30px;
    }
    
    .map-container {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .visit-office-section {
        padding: 40px 10px;
    }
    
    .visit-office-section h2 {
        margin-bottom: 20px;
        font-size: 24px;
    }
    
    .map-container {
        height: 250px;
    }
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #20BA58 0%, #1EA94F 100%);
}

.whatsapp-button:active {
    transform: scale(0.95);
}

.whatsapp-button img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.whatsapp-button span {
    display: none;
}

@media (max-width: 768px) {
    .whatsapp-button {
        bottom: 20px;
        right: 15px;
        width: 56px;
        height: 56px;
    }
}

@media (max-width: 480px) {
    .whatsapp-button {
        bottom: 20px;
        right: 15px;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-button img {
        width: 26px;
        height: 26px;
    }
}
