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

:root {
    --background-color: #f8f8f8;
    --primary-color: #002244;
    --secondary-color: #0069ff;
    --other-colors: #B6DBFF;
    --my-color: #F5FFFF;
    --fade-colors: #C4E500;
    --more-colors: #E6E7E8;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --background-alt: #f1f3f5;
    --border-color: #d1d5db;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-accent: linear-gradient(135deg, var(--other-colors), var(--secondary-color));
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Bricolage Grotesque', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: white;
}

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

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 248, 248, 0.7));
    backdrop-filter: blur(20px);
    border-bottom: 2px solid transparent;
    border-image: var(--gradient-primary) 1;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 2rem;
}

.nav-logo img {
    width: 8rem;
    transition: transform 0.3s ease;
}

.nav-logo:hover img {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.hamburger:hover {
    transform: scale(1.1);
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(-4px, 4px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0.3;
    transform: translateX(-5px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(-4px, -4px);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0 20px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.geometric-shape {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-accent);
    opacity: 0.2;
    animation: pulseRotate 5s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
    animation-duration: 5s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 5%;
    animation-duration: 6s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 30%;
    animation-duration: 7s;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-content {
    animation: slideInLeft 1s ease;
}

.hero-award {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: var(--secondary-color);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1rem;
    animation: slideUpFade 0.8s ease;
}

.hero-award i {
    font-size: 0.9rem;
}

.hero-name {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.name-part {
    color: var(--text-primary);
    display: block;
}

.hero-description {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 0.9rem 1.8rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    width: 180px;
    justify-content: center;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 20px -5px rgb(0 0 0 / 0.1);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    width: 180px;
    justify-content: center;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.btn-app {
    background: var(--my-color);
    color: var(--primary-color);
    border: 2px solid var(--secondary-color);
    width: 180px;
    justify-content: center;
    gap: 0.5rem;
}

.btn-app:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
}

.app-download {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
    animation: slideInRight 1s ease;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

section {
    padding: 30px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 0.3rem;
    position: relative;
    color: #002244;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.about {
    background: #F5FFFF;
}

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

.about-intro h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.about-intro p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.about-image-offer img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.portfolio {
    background: white;
}

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

.portfolio-item {
    background: #F5FFFF;
    border-radius: 12px;
    overflow: hidden;
    border: var(--secondary-color) solid 0.5px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgb(0 0 0 / 0.2);
}

.portfolio-image {
    border: var(--secondary-color) solid 0.1px;

    height: 200px;
    position: relative;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-content {
    padding: 1.2rem;
}

.portfolio-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.portfolio-content p {
    color: black;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.services {
    background: var(--my-color);
}

.faqs {
    background: var(--my-color);
}

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

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.2rem;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 1.2rem 1.2rem;
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-info {
    max-width: 800px;
    margin: 2rem auto 0;
    text-align: center;
}

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
}

.method-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.method-info {
    display: flex;
    flex-direction: column;
}

.method-label {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
}

.method-value {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.method-value:hover {
    color: var(--secondary-color);
}

.reviews {
    background: var(--my-color);
}

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

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

.review-item {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.review-item:hover {
    box-shadow: var(--shadow-md);
}

.review-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.5;
}

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

.author-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.review-rating i {
    color: #f4b400;
    font-size: 0.9rem;
}

.carousel-controls {
    display: none;
}

.carousel-prev, .carousel-next {
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.carousel-prev:hover, .carousel-next:hover {
    background: var(--secondary-color);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.footer {
    background: var(--primary-color);
    color: white;
    padding: 2rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

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

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
}

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

.footer-section h4 {
    color: white;
    margin-bottom: 0.8rem;
    font-weight: 600;
    font-size: 1.1rem;
}

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-section .contact-method {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem 0;
}

.footer-section .method-icon {
    font-size: 1.2rem;
    width: 32px;
    height: 32px;
}

.footer-section .method-label {
    font-size: 0.7rem;
}

.footer-section .method-value {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

.footer-section .method-value:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

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

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

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

@keyframes pulseRotate {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.2) rotate(15deg);
    }
}

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

    .navbar {
        padding: 0.8rem 1rem;
    }

    .nav-container {
        padding: 0.5rem 1rem;
    }

    .nav-logo img {
        width: 7rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        backdrop-filter: blur(20px);
        width: 100%;
        line-height: 0;
        text-align: left;
        transition: 0.3s;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        padding: 1.5rem 0;
        min-height: 300px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0.8rem 0;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 0.6rem 1rem;
        display: block;
    }

    .hamburger {
        display: flex;
        cursor: pointer;
    }

    .hero {
        padding: 60px 0 20px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 4rem;
        gap: 1rem;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-award {
        font-size: 0.8rem;
        padding: 0.4rem 1.2rem;
    }

    .hero-name {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }

    .hero-buttons {
        align-items: center;
        width: 100%;
    }

    .btn {
        width: 100%;
        max-width: 250px;
        padding: 0.8rem 1.2rem;
        font-size: 0.85rem;
    }

    .btn-app {
        width: 100%;
        max-width: 250px;
    }

    .app-download {
        justify-content: center;
    }

    .hero-image {
        max-width: 90%;
        max-height: 300px;
        margin: 0 auto;
    }

    .shape-1 {
        width: 150px;
        height: 150px;
        top: 5%;
        right: 5%;
    }

    .shape-2 {
        width: 100px;
        height: 100px;
        bottom: 15%;
        left: 5%;
    }

    .shape-3 {
        width: 80px;
        height: 80px;
        top: 50%;
        right: 20%;
    }

    section {
        padding: 30px 0;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-intro h3 {
        font-size: 1.2rem;
    }

    .about-intro p {
        font-size: 0.9rem;
    }

    .about-image-offer img {
        max-width: 80%;
        margin: 0 auto;
        display: block;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .portfolio-image {
        height: 180px;
    }

    .portfolio-content h3 {
        font-size: 1.1rem;
    }

    .portfolio-content p {
        font-size: 0.8rem;
    }

    .contact-info {
        margin: 1.5rem auto 0;
    }

    .contact-info h3 {
        font-size: 1.4rem;
    }

    .contact-info p {
        font-size: 0.9rem;
    }

    .contact-methods {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .contact-method {
        justify-content: center;
    }

    .method-icon {
        font-size: 1.3rem;
        width: 36px;
        height: 36px;
    }

    .method-label {
        font-size: 0.7rem;
    }

    .method-value {
        font-size: 0.9rem;
    }

    .review-carousel {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 1rem;
        padding-bottom: 1rem;
    }

    .review-item {
        flex: 0 0 100%;
        scroll-snap-align: center;
    }

    .carousel-controls {
        display: flex;
        justify-content: space-between;
        margin-top: 1rem;
    }

    .carousel-prev, .carousel-next {
        display: block;
    }

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

    .footer-logo img {
        width: 6rem;
        margin: 0 auto;
        display: block;
    }

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

    .footer-links {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

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

    .footer-section .contact-method {
        justify-content: center;
    }

    .footer-section .method-icon {
        font-size: 1rem;
        width: 28px;
        height: 28px;
    }

    .footer-section .method-label {
        font-size: 0.65rem;
    }

    .footer-section .method-value {
        font-size: 0.8rem;
    }
}
