/* Desktop Styles */

/* Reset and base styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #d13118;
    --text-color: #333;
    --background-color: #000;
    --nav-bg: #fff;
    --transition-speed: 0.8s;
    --container-width: 1296px;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: var(--container-width);
    width: 100%;
    margin: 0 auto;
    padding: 0;
    position: relative;
    overflow: visible;
}

/* Header & Navigation */
.header {
    position: relative;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: var(--container-width);
    padding: 0 24px;
}

.logo {
    height: 35px;
    width: auto;
}

.logo img {
    height: 100%;
    width: auto;
}

.nav {
    display: flex;
    justify-content: flex-end;
    margin-left: auto;
    padding-top: 20px;
}

.nav__container {
    background: var(--nav-bg);
    border-radius: 15px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: visible;
    transition: all var(--transition-speed) ease;
    width: 148px;
    position: relative;
}

.nav__container.active {
    width: 650px;
}

.nav__menu {
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-speed) ease,
                visibility var(--transition-speed) ease;
    padding: 0 15px;
    flex: 1;
    display: flex;
    align-items: center;
    min-width: 280px;
}

.nav__container.active .nav__menu {
    opacity: 1;
    visibility: visible;
}

.nav__list {
    list-style: none;
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
    width: 100%;
    justify-content: flex-start;
}

.nav__item {
    position: relative;
}

/* Dropdown Navigation Styles */
.nav__item--dropdown {
    position: relative;
}

.nav__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--nav-bg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 8px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    list-style: none;
    margin: 0;
}

.nav__item--dropdown:hover .nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav__dropdown-link {
    display: block;
    padding: 10px 20px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.nav__dropdown-link:hover {
    background-color: #f8f9fa;
    color: var(--primary-color);
    border-left-color: var(--primary-color);
}

/* Ensure dropdown stays visible when navigation is active */
.nav__container.active .nav__dropdown {
    z-index: 1002;
}

/* Remove underline hover effect for dropdown navigation items */
.nav__item--dropdown .nav__link::after {
    display: none !important;
}

.nav__link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all var(--transition-speed);
    white-space: nowrap;
    letter-spacing: -0.02em;
    padding: 8px 0;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-speed) ease;
}

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

.nav__link:hover::after {
    width: 100%;
}

.nav__controls {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-right: 8px;
    margin-left: auto;
    width: 148px;
}

.nav__toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 32px;
    height: 32px;
    position: relative;
    transition: transform var(--transition-speed) ease;
    z-index: 2;
}

.nav__toggle:hover {
    transform: scale(1.05);
}

.nav__toggle span {
    display: block;
    width: 16px;
    height: 2px;
    background-color: #000;
    border-radius: 2px;
    transition: transform var(--transition-speed) ease,
                opacity var(--transition-speed) ease,
                background-color var(--transition-speed) ease;
}

.nav__container.active .nav__toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.nav__container.active .nav__toggle span:nth-child(2) {
    opacity: 0;
    transform: translateX(-8px);
}

.nav__container.active .nav__toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.nav__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 16px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 400;
    font-size: 0.8rem;
    white-space: nowrap;
    transition: all var(--transition-speed);
    box-shadow: 0 4px 12px rgba(255, 59, 29, 0.2);
    position: relative;
    min-width: 100px;
    text-align: center;
}

.nav__cta:hover {
    background-color: #e63517;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 59, 29, 0.3);
}

.nav__cta:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(255, 59, 29, 0.2);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 140px 20px 100px;
    background: var(--background-color);
    position: relative;
    overflow: visible;
    margin: 0 calc(-50vw + 50%);
    width: 100vw;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero__image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 950px;
    max-width: 90vw;
    z-index: 1;
}

.hero__image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(255, 59, 29, 0.15), 
                0 8px 32px rgba(0,0,0,0.20);
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.hero__image img:hover {
    transform: scale(1.02);
}

.hero-text {
    position: absolute;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -0.03em;
    text-shadow: 0 4px 12px rgba(0,0,0,0.15);
    white-space: nowrap;
    z-index: 3;
    pointer-events: none;
}

.hero-text--top {
    top: -96px;
    left: 50%;
    transform: translateX(-50%) translateY(50px);
    font-size: 7rem;
    font-family: 'Syne', sans-serif;
    z-index: 2;
    opacity: 0;
    animation: slide-up-from-bottom 1.5s ease-out 0.4s forwards;
}

.hero-text--left, .hero-text--right {
    top: 50%;
    font-size: 7rem;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    transform: translateY(-50%);
}

.hero-text--left {
    left: -120px;
    z-index: 4;
}

.hero-text--right {
    right: -100px;
}

@keyframes letter-appear {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slide-up-from-bottom {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.hero-text--left span,
.hero-text--right span {
    display: inline-block;
    opacity: 0;
    animation: letter-appear 1.8s ease forwards;
}

img.hero__star {
    position: absolute;
    left: -140px;
    top: -70px;
    z-index: 3;
    width: 260px;
    height: auto;
    animation: rotate 20s linear infinite;
    opacity: 0.9;
    background: transparent;
    border: none;
    outline: none;
    box-shadow: none;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.hero__badge {
    position: absolute;
    right: -60px;
    top: 170px;
    z-index: 4;
}

.badge__circle {
    width: 95px;
    height: 95px;
    background: var(--primary-color);
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(209, 49, 24, 0.2);
}

.badge__text {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotateText 20s linear infinite;
    top: 0;
    left: 0;
}

.badge__text svg {
    width: 100%;
    height: 100%;
}

.badge__text text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.badge__icon {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge__icon svg path {
    fill: none;
    stroke: white;
    stroke-width: 1px;
}

@keyframes rotateText {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.hero__works {
    position: absolute;
    right: -30px;
    top: 170px;
    z-index: 1;
    transform: translateX(120px);
}

.works__circle {
    width: 95px;
    height: 95px;
    background: transparent;
    border: 0.4px solid #ffffffcc;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.works__circle:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 1);
}

.works__text {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: white;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 8px;
    line-height: 1.2;
}

.works__icon {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Service Features Section - Replaced Companies Logos */
.hero__services {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
}

.services__grid-hero {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: center;
}

.service-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-feature:hover {
    transform: translateY(-3px);
}

.service-feature__icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.service-feature:hover .service-feature__icon {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.service-feature__text {
    color: white;
    font-family: 'Syne', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.service-feature:hover .service-feature__text {
    opacity: 1;
}

/* About Section */
.about {
    background: #ffffff;
    padding: 120px 0;
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.about__wrapper {
    max-width: var(--container-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.about__header {
    text-align: center;
    margin-bottom: 80px;
}

.about__star {
    margin-bottom: 40px;
    animation: rotate 15s linear infinite;
    display: inline-block;
}

.about__star img {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
}

.about__title,
.about__description,
.services__title,
.services__subtitle,
.service-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.about__title.is-visible,
.about__description.is-visible,
.services__title.is-visible,
.services__subtitle.is-visible,
.service-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.about__title {
    font-family: 'Syne', sans-serif;
    font-size: 2.5rem;
    line-height: 1.4;
    margin-bottom: 40px;
}

.title-icons {
    display: inline-flex;
    align-items: center;
    vertical-align: bottom;
    margin: 0 -px;
    position: relative;
    height: 55px;
}

.title-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid white;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    margin-left: -15px;
    position: relative;
}

.title-icon:first-child {
    margin-left: 0;
}

.title-icon--star {
    width: 50px;
    height: 50px;
    border: none;
    box-shadow: none;
    border-radius: 0;
    vertical-align: middle;
    margin-left: -15px;
    color: var(--primary-color);
}

.about__description {
    font-size: 1.25rem;
    color: #666;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
}

.about__working-image {
    text-align: center;
    margin: 50px 0 40px;
    opacity: 0;
    transform: translateY(40px);
    animation: slide-up-working 1s ease-out 0.6s forwards;
}

.working-image {
    max-width: 1200px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.working-image:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

@keyframes slide-up-working {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 22px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: white;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(209, 49, 24, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    animation: trust-badge-appear 0.8s ease-out forwards;
    cursor: pointer;
}

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

.trust-badge:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 30px rgba(209, 49, 24, 0.15);
    border-color: var(--primary-color);
}

.trust-badge__icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #ff6b3d);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.trust-badge:hover .trust-badge__icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 4px 15px rgba(209, 49, 24, 0.3);
}

.trust-badge__text {
    font-family: 'Syne', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.trust-badge:hover .trust-badge__text {
    color: var(--primary-color);
}

@keyframes trust-badge-appear {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 80px;
}

.about__image {
    display: flex;
    justify-content: center;
}

.about__image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about__stats {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.stat {
    padding: 30px 0;
    border-bottom: 1px solid #eee;
}

.stat:last-child {
    border-bottom: none;
}

.stat__title {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat__number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-family: 'Syne', sans-serif;
}

.stat__description {
    font-size: 1rem;
    color: #888;
    margin: 0;
}

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

/* Services Section */
.services {
    padding: 120px 0;
    background: #f4f4f4;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    border-top: 1px solid #eee;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -5%;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, rgba(209, 49, 24, 0.05), rgba(255, 107, 61, 0.08));
    border-radius: 50%;
    animation: float-slow 15s infinite ease-in-out;
    z-index: 0;
}

.services::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: -3%;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(209, 49, 24, 0.06), rgba(255, 107, 61, 0.04));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: float-reverse 12s infinite ease-in-out;
    z-index: 0;
}

.services__wrapper {
    max-width: var(--container-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.services__floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.floating-star {
    position: absolute;
    width: 30px;
    height: 30px;
    color: rgba(209, 49, 24, 0.15);
    animation: twinkle 4s infinite ease-in-out;
}

.floating-star:nth-child(1) {
    top: 20%;
    right: 15%;
    animation-delay: 0s;
    animation-duration: 6s;
}

.floating-star:nth-child(2) {
    bottom: 25%;
    left: 10%;
    animation-delay: 2s;
    animation-duration: 5s;
}

.floating-star:nth-child(3) {
    top: 60%;
    right: 8%;
    animation-delay: 1s;
    animation-duration: 7s;
}

.floating-circle {
    position: absolute;
    border: 2px solid rgba(209, 49, 24, 0.1);
    border-radius: 50%;
    animation: pulse-float 8s infinite ease-in-out;
}

.floating-circle:nth-child(4) {
    top: 15%;
    left: 80%;
    width: 60px;
    height: 60px;
    animation-delay: 0.5s;
}

.floating-circle:nth-child(5) {
    bottom: 20%;
    right: 70%;
    width: 40px;
    height: 40px;
    animation-delay: 3s;
}

.floating-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 35px solid rgba(209, 49, 24, 0.08);
    animation: rotate-float 10s infinite linear;
}

.floating-triangle:nth-child(6) {
    top: 35%;
    left: 5%;
    animation-delay: 1.5s;
}

.floating-triangle:nth-child(7) {
    bottom: 35%;
    right: 5%;
    animation-delay: 4s;
    transform: rotate(180deg);
}

@keyframes float-slow {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-30px) translateX(20px) rotate(5deg);
    }
    50% {
        transform: translateY(-20px) translateX(-15px) rotate(-3deg);
    }
    75% {
        transform: translateY(-40px) translateX(10px) rotate(2deg);
    }
}

@keyframes float-reverse {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
    25% {
        transform: translateY(40px) translateX(-20px) rotate(-8deg);
    }
    50% {
        transform: translateY(20px) translateX(25px) rotate(5deg);
    }
    75% {
        transform: translateY(35px) translateX(-10px) rotate(-3deg);
    }
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1) rotate(0deg);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.2) rotate(180deg);
    }
}

@keyframes pulse-float {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-25px) scale(1.1);
        opacity: 0.6;
    }
}

@keyframes rotate-float {
    0% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.7;
    }
    100% {
        transform: translateY(0px) rotate(360deg);
        opacity: 0.4;
    }
}

.services__header {
    margin-bottom: 80px;
}

.services__title {
    font-family: 'Syne', sans-serif;
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.services__subtitle {
    font-size: 1.25rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: stretch;
}

.service-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid transparent;
    width: 100%;
    min-width: 0;
}

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

.service-card__title {
    font-family: 'Syne', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #666;
    word-wrap: break-word;
    hyphens: auto;
}

.service-card__price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-family: 'Syne', sans-serif;
}

.service-card__list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
    flex-grow: 1;
    min-height: 150px;
}

.service-card__list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 15px;
    color: #666;
}

.service-card__list li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: #bbbbbb;
    transform: rotate(15deg);
}

.service-card__button {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 12px;
    text-align: center;
    font-weight: 500;
    transition: background-color 0.3s ease;
    margin-top: auto;
}

.service-card__button:hover {
    background-color: #e63517;
}

/* Scrolling Text Section */
.scrolling-text {
    overflow: hidden;
    padding: 7rem 0;
    background-color: #fff;
    white-space: nowrap;
    position: relative;
}

.scrolling-text__track {
    display: flex;
    animation: scroll-right-to-left 40s linear infinite;
    width: max-content;
}

.scrolling-text__item {
    display: inline-flex;
    align-items: center;
    font-size: 6rem;
    font-weight: 700;
    color: black;
    padding: 0 1rem;
    font-family: 'Syne', sans-serif;
}

.scrolling-text__logo {
    height: 4rem;
    padding-left: 1.3rem;
    
  
    vertical-align: middle;
}

@keyframes scroll-right-to-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Hover Circle */
.hover-circle__icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary-color);
}

.chat-bubble-back {
    fill: black;
}

.chat-bubble-front {
    fill: var(--primary-color);
    stroke: white;
    stroke-width: 0.8;
}

.chat-bubble-dot {
    fill: white;
}

.scrolling-text__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    pointer-events: none;
}

.hover-circle {
    width: 120px;
    height: 120px;
    background-color: #fff;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 2s cubic-bezier(0.23, 1, 0.32, 1), transform 1s cubic-bezier(0.23, 1, 0.32, 1);
    pointer-events: auto;
    position: relative;
}

.scrolling-text:hover .hover-circle {
    opacity: 1;
    transform: scale(1);
}

.hover-circle__text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hover-circle__text svg {
    width: 100%;
    height: 100%;
    animation: rotate-text 15s linear infinite;
    overflow: visible;
}

.hover-circle__text textPath {
    font-family: 'Syne', sans-serif;
    font-size: 8px;
    font-weight: 600;
    fill: black;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes rotate-text {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Works Section */
.works {
    background-color: #fff;
    font-size: 12px;
    font-family: sans-serif;
    --token-bddf61be-e49a-40e5-97d9-da75e3b43ff3: rgb(255, 255, 255);
    --token-b0c2ac6a-d08a-4996-a1a6-fc79cb52173b: rgb(102, 102, 102);
    --token-b198db4a-28bf-496d-9770-0fcb4117c8e8: rgb(153, 153, 153);
    --token-cbb0b795-3489-484c-9e20-8efd23ed1598: rgb(34, 34, 34);
    --token-6b79fe8d-10a7-4562-991f-72a2f1dcadd7: rgb(0, 0, 0);
    --token-5ab5b955-1f45-47bb-b5d8-d60430ac5ebb: rgb(237, 42, 0);
    --token-7fa1d946-db1d-48f5-8376-613b04ac717a: rgb(221, 221, 221);
    --token-18fed20e-96b9-4711-a20f-1d3ae8261c0f: rgb(244, 244, 244);
    --token-97dee69c-405e-4210-9264-c0d7edc6660d: rgb(241, 79, 68);
    --token-7a9d9853-cc5c-46ae-b047-03c4b096afa5: rgb(255, 255, 255);
    align-content: center;
    align-items: center;
    display: flex;
    flex: none;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 10px;
    height: min-content;
    justify-content: center;
    overflow: hidden;
    padding: 0 30px 120px;
    position: relative;
    width: 100%;
}

.works__wrapper {
    max-width: var(--container-width);
    width: 100%;
}

.works__line {
    height: 1px;
    background: linear-gradient(to right, #333 5%, #e0e0e0 20%);
    margin-bottom: 40px;
    width: 100%;
}

.works__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.works__title-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.works__star {
    width: 15px;
    height: 15px;
    animation: rotate 15s linear infinite;
}

.works__title {
    font-family: 'Syne', sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: black;
}

.works__description {
    font-size: 1.6rem;
    color: rgb(102, 102, 102);
    max-width: 450px;
    text-align: left;
}

.works__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.portfolio-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

.portfolio-card__image-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.portfolio-card__image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.portfolio-card:hover .portfolio-card__image {
    transform: scale(1.05);
}

.portfolio-card__number {
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: auto;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-card:hover .portfolio-card__number {
    opacity: 1;
}

.portfolio-card__info {
    padding-top: 20px;
}

.portfolio-card__meta {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}

.portfolio-card__title {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    transition: color 0.3s ease;
}

.portfolio-card:hover .portfolio-card__title {
    color: var(--primary-color);
}

.works__cta-container {
    text-align: center;
    margin-top: 80px;
}

.works__cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
}

.works__cta-button:hover {
    background-color: #f4f4f4;
    border-color: #ccc;
}

.works__cta-icon {
    width: 20px;
    height: 20px;
}

/* Testimonials Section */
.testimonials {
    font-size: 12px;
    font-family: sans-serif;
    --token-bddf61be-e49a-40e5-97d9-da75e3b43ff3: rgb(255, 255, 255);
    --token-b0c2ac6a-d08a-4996-a1a6-fc79cb52173b: rgb(102, 102, 102);
    --token-b198db4a-28bf-496d-9770-0fcb4117c8e8: rgb(153, 153, 153);
    --token-cbb0b795-3489-484c-9e20-8efd23ed1598: rgb(34, 34, 34);
    --token-6b79fe8d-10a7-4562-991f-72a2f1dcadd7: rgb(0, 0, 0);
    --token-5ab5b955-1f45-47bb-b5d8-d60430ac5ebb: rgb(237, 42, 0);
    --token-7fa1d946-db1d-48f5-8376-613b04ac717a: rgb(221, 221, 221);
    --token-18fed20e-96b9-4711-a20f-1d3ae8261c0f: rgb(244, 244, 244);
    --token-97dee69c-405e-4210-9264-c0d7edc6660d: rgb(241, 79, 68);
    --token-7a9d9853-cc5c-46ae-b047-03c4b096afa5: rgb(255, 255, 255);
    align-content: center;
    align-items: center;
    background-color: var(--token-18fed20e-96b9-4711-a20f-1d3ae8261c0f, #f4f4f4);
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 10px;
    height: min-content;
    justify-content: center;
    overflow: hidden;
    padding: 200px 30px;
    position: relative;
    width: 100%;
}

.testimonials__wrapper {
    max-width: 800px;
    padding: 0 24px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.testimonials__bg-img {
    position: absolute;
    z-index: 1;
    opacity: 0.9;
    animation: float 20s ease-in-out infinite alternate;
}

.testimonials__bg-img--star {
    bottom: -70%;
    right: 15%;
    width: 220px;
    animation-delay: -15s;
    position: absolute;
    z-index: 1;
    opacity: 0.9;
    animation: float 20s ease-in-out infinite alternate;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(var(--rotation, 0deg)); }
    50% { transform: translateY(-20px) rotate(calc(var(--rotation, 0deg) + 5deg)); }
    100% { transform: translateY(0px) rotate(var(--rotation, 0deg)); }
}

.testimonials__chat-icon {
    position: absolute;
    top: -100px;
    right: 60px;
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

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

.testimonials__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.testimonials__title-icon-container {
    width: 30px;
    height: 30px;
}

.testimonials__title-icon {
    width: 100%;
    height: 100%;
    animation: rotate 15s linear infinite;
}

.testimonials__title {
    font-family: 'Syne', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    line-height: 1.5;
}

.testimonials__content {
    margin-top: 40px;
}

.testimonials__subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials__logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    filter: grayscale(100%) opacity(0.6);
}

.testimonials__logo {
    height: 40px;
    max-width: 150px;
}

/* Testimonial Cards */
.testimonials__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    margin-top: 40px;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-card__rating {
    margin-bottom: 20px;
}

.testimonial-card__stars {
    color: #ffd700;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.testimonial-card__text {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
}

.testimonial-card__author-info {
    flex: 1;
}

.testimonial-card__name {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.testimonial-card__position {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Floating Testimonial Cards */
.testimonial-card--floating {
    position: absolute;
    z-index: 1;
    opacity: 0;
    width: 320px;
    padding: 12px;
    font-size: 0.75rem;
    transform: translate(var(--center-offset-x), var(--center-offset-y)) rotate(0deg) scale(0.8);
}

.testimonial-card--floating.animate {
    animation: moveFromCenter 1.5s ease-out forwards, float 20s ease-in-out infinite alternate;
    animation-delay: 0s, 1.5s;
}

.testimonial-card--floating:hover {
    transform: translateY(-10px) scale(1.02);
    z-index: 10;
    opacity: 1;
}

.testimonial-card--1 {
    top: 90%;
    left: -45%;
    --rotation: -15deg;
    --center-offset-x: calc(50% - 50% - 15%);
    --center-offset-y: calc(50% - 50% - 20%);
}

.testimonial-card--1.animate {
    animation-delay: 0.2s, 1.7s;
}

.testimonial-card--2 {
    top: 45%;
    right: -50%;
    --rotation: 20deg;
    --center-offset-x: calc(-50% + 50% + 12%);
    --center-offset-y: calc(50% - 50% - 35%);
}

.testimonial-card--2.animate {
    animation-delay: 0.4s, 1.9s;
}

.testimonial-card--3 {
    bottom: 65%;
    left: -50%;
    --rotation: 10deg;
    --center-offset-x: calc(50% - 50% - 12%);
    --center-offset-y: calc(-50% + 50% + 25%);
}

.testimonial-card--3.animate {
    animation-delay: 0.6s, 2.1s;
}

@keyframes moveFromCenter {
    0% {
        opacity: 0;
        transform: translate(var(--center-offset-x), var(--center-offset-y)) rotate(0deg) scale(0.8);
    }
    60% {
        opacity: 0.8;
        transform: translate(calc(var(--center-offset-x) * 0.2), calc(var(--center-offset-y) * 0.2)) rotate(calc(var(--rotation) * 0.7)) scale(1.05);
    }
    100% {
        opacity: 0.95;
        transform: translate(0, 0) rotate(var(--rotation)) scale(1);
    }
}

.testimonial-card--floating .testimonial-card__text {
    font-size: 0.7rem;
    margin-bottom: 8px;
}

.testimonial-card--floating .testimonial-card__name {
    font-size: 0.75rem;
}

.testimonial-card--floating .testimonial-card__position {
    font-size: 0.65rem;
}

.testimonial-card--floating .testimonial-card__stars {
    font-size: 0.8rem;
}

/* Blog Section */
.blog {
    background-color: #ffffff;
    padding: 120px 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.blog__wrapper {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.blog__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.blog__title-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.blog__title-icon {
    width: 25px;
    height: 25px;
    animation: rotate 15s linear infinite;
}

.blog__title {
    font-family: 'Syne', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
}

.blog__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-card__image-container {
    overflow: hidden;
    border-radius: 10px;
}

.blog-card__image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card__image {
    transform: scale(1.05);
}

.blog-card__info {
    padding-top: 20px;
}

.blog-card__meta {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}

.blog-card__date {
    color: var(--primary-color);
}

.blog-card__title {
    font-family: 'Syne', sans-serif;
    font-size: 1.2rem;
    line-height: 1.4;
    font-weight: 700;
    color: #333;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-card__title {
    color: var(--primary-color);
}

/* CTA Section */
.cta {
    position: relative;
    padding: 320px 0;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-bottom: 0;
}

.cta__bg-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cta__bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(0,0,0,0.6) 0%, 
        rgba(0,0,0,0.4) 30%, 
        rgba(0,0,0,0.6) 70%, 
        rgba(0,0,0,0.9) 90%, 
        rgba(0,0,0,1) 100%);
    z-index: 2;
}

.cta__wrapper {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 3;
    transform: translateY(-150px);
}

.cta__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta__title-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta__title-icon {
    width: 20px;
    height: 20px;
    animation: rotate 20s linear infinite;
}

.cta__title {
    font-family: 'Syne', sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    color: white;
}

.cta__button {
    background-color: white;
    color: #333;
    padding: 10px 20px;
    font-size: 0.9rem;
}

.cta__button:hover {
    background-color: #f4f4f4;
    transform: scale(1.05);
}

/* Footer Section */
.footer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: white;
    padding: 100px 0 40px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 70% 30%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(ellipse at 20% 80%, rgba(255,255,255,0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.footer__wrapper {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.footer__top {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    padding-bottom: 60px;
    position: relative;
}

.footer__logo {
    display: block;
    width: 180px;
    flex-shrink: 0;
    margin-right: 40px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.footer__logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    background: rgba(255,255,255,0.2);
}

.footer__logo img {
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer__nav-widgets {
    display: flex;
    gap: 100px;
    position: relative;
    z-index: 1;
    flex: 1;
}

.footer__widget {
    flex: 1;
}

.footer__widget-title {
    font-size: 1.3rem;
    color: white;
    opacity: 0.8;
    margin-bottom: 25px;
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    position: relative;
}

.footer__widget-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, rgba(255,255,255,0.6) 0%, transparent 100%);
    border-radius: 2px;
}

.footer__nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer__nav-link, .footer__nav-text {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    transition: all 0.3s ease;
    line-height: 1.4;
    display: inline-block;
    position: relative;
    padding-left: 20px;
}

.footer__nav-link::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: #ffc107;
}

.footer__nav-link:hover {
    color: white;
    transform: translateX(8px);
    text-shadow: 0 2px 10px rgba(255,255,255,0.3);
}

.footer__nav-link:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer__decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.footer__floating-star {
    position: absolute;
    width: 60px;
    height: 60px;
    background-image: url('../assets/oeaUzx9KGE19AoNCslM8NTBT4I.svg');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.3;
    filter: brightness(0) invert(1);
    animation: rotate 25s linear infinite, float 8s ease-in-out infinite;
}

.footer__floating-star:nth-child(1) {
    top: 20px;
    right: 15%;
    animation-delay: 0s, -2s;
}

.footer__floating-star:nth-child(2) {
    bottom: 30px;
    left: 20%;
    width: 40px;
    height: 40px;
    animation-delay: -8s, 0s;
    animation-duration: 20s, 6s;
}

.footer__floating-star:nth-child(3) {
    top: 50%;
    right: 5%;
    width: 30px;
    height: 30px;
    animation-delay: -15s, -4s;
    animation-duration: 30s, 10s;
}

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

.footer__bottom {
    padding-top: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
    margin-top: 40px;
}

.footer__bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer__copyright {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    color: rgba(255,255,255,0.8);
    gap: 15px;
}

.footer__social-links {
    display: flex;
    gap: 20px;
}

.footer__social-link {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.footer__social-link:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.footer__cta-badge {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 12px 24px;
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer__cta-badge:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
} 