/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Trioteq Brand Colors */
    --primary: #0b54d0;
    --secondary: #00e4f7;
    --accent: #2d2b83;
    --dark: #0d022d;
    --neutral: #151515;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--neutral);
    overflow-x: hidden;
}

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

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes pulse {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
    transition: height 0.3s ease;
}

@media (min-width: 1024px) {
    .header-content {
        height: 5rem;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: fadeInLeft 0.8s ease 0.2s both;
}

.logo-img {
    height: 2rem;
    width: auto;
}

@media (min-width: 1024px) {
    .logo-img {
        height: 3rem;
    }
}

.logo-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    transition: color 0.3s ease;
}

.header.scrolled .logo-title {
    color: var(--dark);
}

@media (min-width: 1024px) {
    .logo-title {
        font-size: 1.25rem;
    }
}

.logo-subtitle {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
    display: none;
}

.header.scrolled .logo-subtitle {
    color: var(--accent);
}

@media (min-width: 640px) {
    .logo-subtitle {
        display: block;
    }
}

@media (min-width: 1024px) {
    .logo-subtitle {
        font-size: 0.875rem;
    }
}

.desktop-nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .desktop-nav {
        display: flex;
    }
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    animation: fadeInUp 0.8s ease both;
}

.header.scrolled .nav-link {
    color: var(--dark);
}

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

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

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

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

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.header.scrolled .mobile-menu-btn {
    color: var(--dark);
}

.mobile-menu-btn:hover {
    color: var(--secondary);
}

.header.scrolled .mobile-menu-btn:hover {
    color: var(--primary);
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu {
    display: none;
    background: var(--white);
    border-radius: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-top: 0.5rem;
    overflow: hidden;
    animation: fadeInUp 0.3s ease;
}

.mobile-menu.active {
    display: block;
}

@media (min-width: 1024px) {
    .mobile-menu {
        display: none !important;
    }
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
}

.mobile-nav-link {
    color: var(--dark);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--primary);
    background: rgba(11, 84, 208, 0.05);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 50%, var(--secondary) 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

.hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 25%;
    left: 25%;
    width: 16rem;
    height: 16rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    filter: blur(60px);
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: 25%;
    right: 25%;
    width: 24rem;
    height: 24rem;
    background: rgba(0, 228, 247, 0.2);
    border-radius: 50%;
    filter: blur(60px);
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease 0.4s both;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1280px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-gradient {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--white) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    animation: fadeInUp 0.8s ease 0.6s both;
}

@media (min-width: 640px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-subtitle {
        font-size: 1.875rem;
    }
}

.cta-btn {
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 500;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 30px rgba(45, 43, 131, 0.3);
    animation: fadeInUp 0.8s ease 0.8s both;
}

.cta-btn:hover {
    background: rgba(45, 43, 131, 0.9);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 15px 40px rgba(45, 43, 131, 0.4);
}

.cta-btn i {
    transition: transform 0.3s ease;
}

.cta-btn:hover i {
    transform: translateX(4px);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: fadeInUp 1s ease 1.5s both;
}

.scroll-mouse {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 1rem;
    display: flex;
    justify-content: center;
    padding-top: 0.5rem;
}

.scroll-wheel {
    width: 0.25rem;
    height: 0.75rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    animation: pulse 2s infinite;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease both;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-subtitle {
    font-size: 1.25rem;
    color: rgba(21, 21, 21, 0.7);
    max-width: 48rem;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: var(--gray-50);
}

@media (min-width: 1024px) {
    .services {
        padding: 8rem 0;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease both;
}

.service-card:nth-child(2) {
    animation-delay: 0.1s;
}

.service-card:nth-child(3) {
    animation-delay: 0.2s;
}

.service-card:nth-child(4) {
    animation-delay: 0.3s;
}

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

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transition: width 0.5s ease;
}

.service-card:hover::after {
    width: 100%;
}

.service-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.ai-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
}

.web-icon {
    background: linear-gradient(135deg, var(--accent), var(--secondary));
}

.mobile-icon {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
}

.consulting-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

@media (min-width: 1024px) {
    .service-title {
        font-size: 1.5rem;
    }
}

.service-card:hover .service-title {
    color: var(--primary);
}

.service-description {
    color: rgba(21, 21, 21, 0.7);
    line-height: 1.6;
}

/* Products Section */
.products {
    padding: 5rem 0;
    background: var(--white);
}

@media (min-width: 1024px) {
    .products {
        padding: 8rem 0;
    }
}

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

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.product-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease both;
}

.product-card:nth-child(2) {
    animation-delay: 0.2s;
}

.product-card:nth-child(3) {
    animation-delay: 0.4s;
}

.product-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 8rem;
    height: 8rem;
    opacity: 0.05;
    border-radius: 1rem;
    transform: rotate(12deg) translate(2rem, -2rem);
}

.product-card:nth-child(1)::before {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.product-card:nth-child(2)::before {
    background: linear-gradient(135deg, var(--accent), var(--primary));
}

.product-card:nth-child(3)::before {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.product-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.product-card:hover .product-icon {
    transform: scale(1.1);
}

.oneclick-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.analytics-icon {
    background: linear-gradient(135deg, var(--accent), var(--primary));
}

.security-icon {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
}

.product-icon i {
    font-size: 2rem;
    color: var(--white);
}

.product-badge {
    padding: 0.5rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.coming-soon {
    background: rgba(0, 228, 247, 0.1);
    color: var(--primary);
    border: 1px solid rgba(0, 228, 247, 0.2);
}

.in-development,
.planning {
    background: var(--gray-100);
    color: var(--gray-600);
}

.product-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.product-card:hover .product-title {
    color: var(--primary);
}

.product-description {
    color: rgba(21, 21, 21, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-features {
    list-style: none;
    margin-bottom: 2rem;
}

.product-features li {
    color: rgba(21, 21, 21, 0.7);
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1rem;
}

.product-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.product-btn {
    width: 100%;
    background: transparent;
    border: 1px solid var(--gray-300);
    color: var(--dark);
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 500;
}

.product-btn:not(:disabled):hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.product-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.product-btn i {
    transition: transform 0.3s ease;
}

.product-btn:hover i {
    transform: translateX(2px);
}

.product-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transition: width 0.5s ease;
}

.product-card:hover::after {
    width: 100%;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

@media (min-width: 1024px) {
    .about {
        padding: 8rem 0;
    }
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.about-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    animation: fadeInLeft 0.8s ease both;
}

@media (min-width: 1024px) {
    .about-card {
        padding: 2.5rem;
    }
}

.about-logo {
    width: 16rem;
    height: auto;
    margin: 0 auto 2rem;
    display: block;
}

.about-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(21, 21, 21, 0.8);
    margin-bottom: 1.5rem;
}

.address-card {
    background: linear-gradient(135deg, rgba(11, 84, 208, 0.05), rgba(0, 228, 247, 0.05));
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.address-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.address-content h4 {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.address-content p {
    color: rgba(21, 21, 21, 0.7);
    line-height: 1.6;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: fadeInRight 0.8s ease both;
}

.stat-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease both;
}

.stat-card:nth-child(2) {
    animation-delay: 0.1s;
}

.stat-card:nth-child(3) {
    animation-delay: 0.2s;
}

.stat-card:nth-child(4) {
    animation-delay: 0.3s;
}

.stat-card:hover {
    transform: translateX(10px);
}

.stat-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
}

.stat-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(21, 21, 21, 0.6);
    margin-bottom: 0.25rem;
}

.stat-value {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--dark);
    transition: color 0.3s ease;
}

.stat-card:hover .stat-value {
    color: var(--primary);
}

.vision-card {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    padding: 2rem;
    border-radius: 1.5rem;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 8rem;
    height: 8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(4rem, -4rem);
}

.vision-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 6rem;
    height: 6rem;
    background: rgba(0, 228, 247, 0.2);
    border-radius: 50%;
    transform: translate(-3rem, 3rem);
}

.vision-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.vision-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .contact {
        padding: 8rem 0;
    }
}

.contact::before {
    content: '';
    position: absolute;
    top: 25%;
    left: 25%;
    width: 16rem;
    height: 16rem;
    background: var(--primary);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.05;
}

.contact::after {
    content: '';
    position: absolute;
    bottom: 25%;
    right: 25%;
    width: 24rem;
    height: 24rem;
    background: var(--secondary);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.05;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.contact-methods {
    animation: fadeInLeft 0.8s ease both;
}

.contact-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2rem;
}

.contact-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease both;
}

.contact-card:nth-child(3) {
    animation-delay: 0.1s;
}

.contact-card:nth-child(4) {
    animation-delay: 0.2s;
}

.contact-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
}

.phone-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.email-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
}

.whatsapp-icon {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
}

.location-icon {
    background: linear-gradient(135deg, var(--accent), var(--primary));
}

.contact-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.contact-info {
    flex: 1;
}

.contact-label {
    font-size: 0.875rem;
    color: rgba(21, 21, 21, 0.6);
    margin-bottom: 0.25rem;
}

.contact-value {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--dark);
    transition: color 0.3s ease;
}

.contact-card:hover .contact-value {
    color: var(--primary);
}

.contact-arrow {
    color: rgba(21, 21, 21, 0.4);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-arrow {
    color: var(--primary);
    transform: translateX(4px);
}

.address-contact-card {
    background: linear-gradient(135deg, var(--gray-50), var(--white));
    padding: 1.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.contact-address {
    color: var(--dark);
    line-height: 1.6;
}

.contact-cta {
    animation: fadeInRight 0.8s ease both;
}

@media (min-width: 1024px) {
    .contact-cta {
        padding-left: 2rem;
    }
}

.cta-card {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    padding: 2.5rem;
    border-radius: 1.5rem;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 8rem;
    height: 8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(4rem, -4rem);
}

.cta-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 6rem;
    height: 6rem;
    background: rgba(0, 228, 247, 0.2);
    border-radius: 50%;
    transform: translate(-3rem, 3rem);
}

.cta-card h3 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.cta-card p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.cta-primary,
.cta-secondary {
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 500;
    font-size: 1rem;
}

.cta-primary {
    background: var(--white);
    color: var(--primary);
}

.cta-primary:hover {
    background: rgba(255, 255, 255, 0.9);
}

.cta-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cta-primary i,
.cta-secondary i {
    transition: transform 0.3s ease;
}

.cta-primary:hover i:last-child,
.cta-secondary:hover i:last-child {
    transform: translateX(4px);
}

.response-time {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

.response-time p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Footer */
.footer {
    background: var(--primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 25%;
    width: 16rem;
    height: 16rem;
    background: var(--secondary);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.1;
}

.footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 25%;
    width: 24rem;
    height: 24rem;
    background: var(--accent);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.1;
}

.footer-content {
    padding: 3rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-content {
        padding: 4rem 0;
        grid-template-columns: 2fr 1fr 1fr;
        gap: 3rem;
    }
}

.footer-company {
    animation: fadeInUp 0.6s ease both;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--secondary), var(--white));
    color: var(--primary);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.footer-logo-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.footer-logo-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 24rem;
}

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

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact-item i {
    color: var(--secondary);
    width: 1rem;
}

.footer-links,
.footer-services {
    animation: fadeInUp 0.6s ease both;
}

.footer-links {
    animation-delay: 0.1s;
}

.footer-services {
    animation-delay: 0.2s;
}

.footer-links h4,
.footer-services h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

.footer-links li,
.footer-services li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary);
    transform: translateX(4px);
}

.footer-services li {
    color: rgba(255, 255, 255, 0.8);
}

.footer-social {
    margin-top: 2rem;
}

.footer-social h5 {
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.social-links a {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.6s ease both;
}

@media (min-width: 640px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

@media (min-width: 640px) {
    .footer-bottom p {
        text-align: left;
    }
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--secondary);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Intersection Observer animations */
.animate-in {
    animation: fadeInUp 0.6s ease both;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 1.875rem;
    }
    
    .services,
    .products,
    .about,
    .contact {
        padding: 3rem 0;
    }
}