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

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

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

/* Header Styles */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    top: 0;
    position: relative;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    z-index: 1000;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #2A8AFB;
    text-decoration: none;
}

nav {
    display: flex;
    align-items: center;
    gap: 40px;
    z-index: 9000;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    z-index: 9000;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    z-index: 1000;
}

.nav-links a:hover {
    color: #2A8AFB;
}

.cta-button {
    background: #2A8AFB;
    color: #ECECEC;
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    height: 55px;
    z-index: 1000;
}

.mobile-cta {
    display: none;
}

.cta-button:hover {
    background: #1a7ae8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(42, 138, 251, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 500px;
    display: flex;
    align-items: center;
    padding: 80px 0;
    position: relative;
    background: #fff;
}

.hero::before {
    content: '';
    position: absolute;
    width: 1848px;
    height: 600px;
    bottom: calc(50% - 400px);
    left: calc(50% - 150px);
    transform: translateX(-50%) rotate(-20deg);
    background: linear-gradient(90deg, #2A8AFB 50%, #56EF9F 100%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    filter: blur(100px);
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 16px;
    color: #111111;
    margin-bottom: 30px;
    font-weight: 400;
}

.hero h1 {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.2;
    color: #111111;
    margin-bottom: 30px;
}

.hero h1 span {
    color: #2A8AFB;
}

.hero-description {
    font-size: 16px;
    color: #111111;
    margin-bottom: 40px;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #fff;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.about h2 {
    font-size: 52px;
    font-weight: 700;
    color: #111111;
    line-height: 1.3;
    text-align: left;
    width: 100%;
}

.about p {
    font-size: 18px;
    color: #555;
    line-height: 1.4;
    text-align: justify;
    width: 500px;
    margin-left: auto;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #fff;
}

.services .container {
    position: relative;
}

.services .container::before {
    content: 'МИ';
    position: absolute;
    top: -20px;
    left: -50px;
    font-size: 162px;
    font-weight: 800;
    color: #ECECEC;
    line-height: 1;
    z-index: 0;
    pointer-events: none;
}

.services .container::after {
    content: 'СТВОРЮЄМО';
    position: absolute;
    bottom: -80px;
    right: -40px;
    font-size: 162px;
    font-weight: 800;
    color: #ECECEC;
    line-height: 1;
    z-index: 0;
    pointer-events: none;
}

.services-title {
    position: relative;
    font-size: 52px;
    font-weight: 700;
    color: #111111;
    text-align: center;
    margin-bottom: 10px;
    line-height: 1.3;
    z-index: 888;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    z-index: 888;
}

.service-card {
    background: rgba(246, 246, 246, 0.8);
    border: 1px solid #E5E5E5;
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    transition: all 0.3s ease;
    min-height: 180px;
    z-index: 888;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #2A8AFB;
}

.service-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 20px;
    color: #111111;
}

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

.service-title {
    font-size: 18px;
    font-weight: 500;
    color: #111111;
    margin-bottom: 8px;
    line-height: 1.3;
    text-align: center;
}

.service-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Portfolio Section */
.portfolio {
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
    margin-bottom: 40px;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.portfolio-title {
    font-size: 52px;
    font-weight: 700;
    color: #111111;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.3;
}

.portfolio-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px 0;
    position: relative;
}

.portfolio-row {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.portfolio-row::-webkit-scrollbar {
    display: none;
}

.portfolio-item {
    width: auto;
    height: 250px;
    flex-shrink: 0;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.portfolio-item img {
    height: 100%;
    width: auto;
    display: block;
    object-fit: contain;
    border-radius: 16px;
}

.portfolio-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.portfolio-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #E5E5E5;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.portfolio-dot:hover {
    background: #2A8AFB;
    opacity: 0.7;
}

.portfolio-dot.active {
    background: #2A8AFB;
    width: 32px;
    border-radius: 6px;
}


/* Workflow Section */
.workflow {
    padding: 80px 0;
    background: #fff;
}

.workflow .container {
    position: relative;
}

.workflow .container::before {
    content: 'ЕТАПИ';
    position: absolute;
    top: 200px;
    left: -20px;
    font-size: 220px;
    font-weight: 800;
    color: #ECECEC;
    line-height: 1;
    z-index: 0;
    pointer-events: none;
}

.workflow .container::after {
    content: 'РОБОТИ';
    position: absolute;
    bottom: 280px;
    right: -100px;
    font-size: 220px;
    font-weight: 800;
    color: #ECECEC;
    line-height: 1;
    z-index: 0;
    pointer-events: none;
}

.workflow-title {
    font-size: 52px;
    font-weight: 700;
    color: #111111;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.3;
}

.workflow-steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.workflow-step {
    position: relative;
    background: #fff;
    background: rgba(246, 246, 246, 0.8);
    border: 1px solid #E5E5E5;
    border-radius: 16px;
    padding: 40px 20px 30px;
    flex: 1;
    max-width: 400px;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    z-index: 1000;
}

.workflow-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #2A8AFB;
}

.workflow-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: #2A8AFB;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(42, 138, 251, 0.3);
}

.workflow-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.workflow-step-title {
    font-size: 20px;
    font-weight: 600;
    color: #111111;
    line-height: 1.3;
}

.workflow-step-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Why Choose Us Section */
.why-us {
    padding: 80px 0;
}

.why-us-title {
    font-size: 32px;
    font-weight: 600;
    color: #666;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.4;
}

.why-us-subtitle {
    font-size: 52px;
    font-weight: 700;
    color: #111111;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.why-us-card {
    border: 1px solid #E5E5E5;
    border-radius: 16px;
    padding: 15px 5px;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 200px;
    grid-template-rows: auto auto;
    gap: 20px;
}

.why-us-card:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
}

.why-us-card:nth-child(2) {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

.why-us-card:nth-child(3) {
    grid-column: 4 / 5;
    grid-row: 1 / 2;
}

.why-us-card:nth-child(4) {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

.why-us-card:nth-child(5) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.why-us-card:nth-child(6) {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

.why-us-card:nth-child(7) {
    grid-column: 4 / 4;
    grid-row: 2 / 2;
}

.why-us-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #2A8AFB;
}

.why-us-card-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.why-us-stat-number {
    font-size: 72px;
    font-weight: 700;
    color: #2A8AFB;
    line-height: 1;
    margin-bottom: 16px;
    padding-top: 10px;
    padding-right: 10px;
}

.why-us-card-title {
    font-size: 28px;
    font-weight: 600;
    color: #111111;
    margin-bottom: 12px;
    line-height: 1.3;
    padding-left: 10px;
}

.why-us-card-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Footer Styles */
footer {
    padding: 60px 0;
    position: relative;
}

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

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo {
    width: 120px;
    height: auto;
}

.footer-tagline {
    font-size: 14px;
    color: #555;
    max-width: 250px;
}

.footer-nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

.footer-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #2A8AFB;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 40px;
    border-radius: 12px;
    max-width: 500px;
    text-align: center;
    position: relative;
    animation: slideIn 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover,
.modal-close:focus {
    color: #333;
}

.modal-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    background-color: #fff5f5;
    color: #2A8AFB;
    font-size: 40px;
    margin: 0 auto 20px;
    animation: scaleIn 0.5s ease;
}

.modal-content h3 {
    margin: 20px 0 15px;
    font-size: 28px;
    color: #333;
}

.modal-content p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero::before {
        overflow-x: hidden
    }
    .services .container::before {
        display: none;
    }
    .services .container::after {
        display: none;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .portfolio-item {
        height: 200px;
    }
    .workflow .container::before {
        display: none;
    }
    .workflow .container::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero::before {
        overflow-x: hidden;
        width: 600px;
        height: 300px;
        bottom: 5%;
        left: 50%;
        transform: translateX(-50%) rotate(-10deg);
        filter: blur(80px);
    }
    .contact::before {
        width: 600px;
        height: 300px;
        bottom: 10%;
        left: 50%;
        transform: translateX(-50%) rotate(-10deg);
        filter: blur(80px);
    }
    .workflow .container::before {
        display: none;
    }
    .workflow .container::after {
        display: none;
    }
    .services .container::before {
        display: none;
    }
    .services .container::after {
        display: none;
    }
    .header-content {
        justify-content: center;
        position: relative;
    }

    .mobile-menu-toggle {
        position: absolute;
        left: 0;
    }

    .logo {
        margin: 0;
    }

    nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 80px 40px 40px;
        gap: 0;
        transition: left 0.3s ease;
        z-index: 999;
    }

    nav.active {
        left: 0;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        width: 100%;
        margin-bottom: auto;
    }

    .nav-links a {
        font-size: 24px;
        font-weight: 600;
    }

    .desktop-cta {
        display: none;
    }

    .mobile-cta {
        display: block;
        width: 100%;
        text-align: center;
        margin-top: 40px;
        padding: 16px 28px;
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-subtitle,
    .hero-description {
        font-size: 14px;
    }

    .about {
        padding: 60px 0;
    }

    .about h2 {
        font-size: 32px;
        text-align: center;
    }

    .about p {
        font-size: 16px;
        text-align: center;
        width: 100%;
        margin-left: 0;
    }

    .services {
        padding: 60px 0;
    }

    .services-title {
        font-size: 32px;
        margin-bottom: 40px;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .service-card {
        padding: 25px 20px;
        min-height: 160px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 16px;
    }

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

    .service-title {
        font-size: 16px;
    }

    .service-description {
        font-size: 13px;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 14px;
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .footer-nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .portfolio {
        padding: 60px 0;
    }

    .portfolio-title {
        font-size: 32px;
        margin-bottom: 40px;
        text-align: center;
    }

    .portfolio-wrapper {
        gap: 4px;
        padding: 4px 0;
    }

    .portfolio-row {
        gap: 4px;
        padding: 0 2px;
    }

    .portfolio-item {
        min-width: 260px;
        max-width: 260px;
        height: 170px;
        flex-shrink: 0;
    }

    .portfolio-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .portfolio-dots {
        gap: 8px;
        margin-top: 20px;
    }

    .portfolio-dot {
        width: 9px;
        height: 9px;
    }

    .portfolio-dot.active {
        width: 26px;
    }

    .workflow {
        padding: 60px 0;
    }

    .workflow-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .workflow-steps {
        flex-wrap: wrap;
        gap: 40px 15px;
    }

    .workflow-step {
        max-width: calc(50% - 10px);
        min-height: 160px;
        padding: 35px 15px 25px;
    }

    .workflow-step-title {
        font-size: 17px;
    }

    .workflow-step-description {
        font-size: 13px;
    }

    .workflow-number {
        width: 36px;
        height: 36px;
        font-size: 18px;
        top: -18px;
    }
    .why-us {
        padding: 60px 0;
    }

    .why-us-title {
        font-size: 18px;
    }

    .why-us-subtitle {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .why-us-stat-number {
        font-size: 56px;
    }

    .why-us-card {
        padding: 25px;
    }
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .why-us-card:nth-child(1),
    .why-us-card:nth-child(2),
    .why-us-card:nth-child(3),
    .why-us-card:nth-child(4),
    .why-us-card:nth-child(5),
    .why-us-card:nth-child(6),
    .why-us-card:nth-child(7) {
        grid-column: auto;
        grid-row: auto;
    }
}

@media (max-width: 480px) {
    /* Hide or minimize decorative elements on small mobile */
    .hero::before {
        width: 400px;
        height: 200px;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%) rotate(-5deg);
        filter: blur(60px);
        opacity: 0.5;
    }

    .contact::before {
        width: 400px;
        height: 200px;
        bottom: 5%;
        left: 50%;
        transform: translateX(-50%) rotate(-5deg);
        filter: blur(60px);
        opacity: 0.5;
    }
    .workflow .container::before {
        display: none;
    }
    .workflow .container::after {
        display: none;
    }

    .services .container::before {
        display: none;
    }
    .services .container::after {
        display: none;
    }
    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-subtitle,
    .hero-description {
        font-size: 13px;
    }

    .about h2 {
        font-size: 28px;
    }

    .about p {
        font-size: 15px;
    }

    .services-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .service-card {
        padding: 20px 15px;
        min-height: 150px;
    }

    .service-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 12px;
    }

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

    .service-title {
        font-size: 15px;
        margin-bottom: 6px;
    }

    .service-description {
        font-size: 12px;
    }

    .logo {
        font-size: 20px;
    }

    .header-content {
        padding: 15px 0;
    }

    .footer-logo {
        width: 100px;
    }

    .footer-tagline {
        font-size: 13px;
    }
    /* Portfolio Small Mobile Styles */
    .portfolio {
        padding: 50px 0;
    }

    .portfolio-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .portfolio-wrapper {
        gap: 6px;
        padding: 6px 0;
    }

    .portfolio-row {
        gap: 6px;
        padding: 0;
    }

    .portfolio-item {
        min-width: 240px;
        height: 150px;
    }

    .portfolio-item img {
        border-radius: 12px;
    }

    .portfolio-dots {
        gap: 8px;
        margin-top: 20px;
    }

    .portfolio-dot {
        width: 8px;
        height: 8px;
    }

    .portfolio-dot.active {
        width: 24px;
    }

    .workflow {
        padding: 60px 0;
    }

    .workflow-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .workflow-steps {
        flex-direction: column;
        gap: 30px;
    }

    .workflow-step {
        max-width: 100%;
        min-height: 140px;
        padding: 35px 20px 25px;
    }

    .workflow-step-title {
        font-size: 16px;
    }

    .workflow-step-description {
        font-size: 13px;
    }

    .workflow-number {
        width: 34px;
        height: 34px;
        font-size: 17px;
        top: -17px;
    }
    .why-us-subtitle {
        font-size: 20px;
    }

    .why-us-stat-number {
        font-size: 48px;
    }

    .why-us-card-title {
        font-size: 18px;
    }

    .why-us-card-text {
        font-size: 13px;
    }
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #fff;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    width: 1848px;
    height: 500px;
    bottom: 15%;
    left: 75%;
    transform: translateX(-50%) rotate(-15deg);
    background: linear-gradient(120deg,  #2A8AFB 4%,  #56EF9F 100%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    filter: blur(100px);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    z-index: 1;
}

.contact-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 100%;
    z-index: 1;
}

.contact-title {
    font-size: 36px;
    font-weight: 600;
    color: #111111;
    line-height: 1.3;
    margin-bottom: 8px;
    z-index: 1;
}

.contact-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: auto;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 30px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: #F6F6F6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    color: #2A8AFB;
}

.contact-link {
    font-size: 18px;
    font-weight: 500;
    color: #111111;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #2A8AFB;
}

.contact-right {
    border-radius: 20px;
    padding: 40px;
    z-index: 1;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-label {
    font-size: 14px;
    font-weight: 500;
    color: #111111;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid #E5E5E5;
    border-radius: 12px;
    font-size: 15px;
    color: #111111;
    background: #fff;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #2A8AFB;
    box-shadow: 0 0 0 3px rgba(42, 138, 251, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #999;
}

.phone-input-wrapper {
    display: flex;
    gap: 12px;
}

.country-select {
    width: 140px;
    padding: 14px 16px;
    border: 1px solid #E5E5E5;
    border-radius: 12px;
    font-size: 15px;
    color: #111111;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.country-select:focus {
    outline: none;
    border-color: #2A8AFB;
    box-shadow: 0 0 0 3px rgba(42, 138, 251, 0.1);
}

.phone-input {
    flex: 1;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit {
    padding: 16px 32px;
    background: #2A8AFB;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-submit:hover {
    background: #1a7ae8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(42, 138, 251, 0.3);
}

.form-submit:active {
    transform: translateY(0);
}

/* Responsive Design for Contact Section */
@media (max-width: 1024px) {
    .contact-wrapper {
        gap: 40px;
    }

    .contact-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 60px 0;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-title {
        font-size: 28px;
    }

    .contact-description {
        font-size: 15px;
    }

    .contact-right {
        padding: 30px 24px;
    }

    .contact-link {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .contact-title {
        font-size: 24px;
    }

    .contact-description {
        font-size: 14px;
    }

    .contact-right {
        padding: 24px 20px;
    }

    .phone-input-wrapper {
        flex-direction: column;
        gap: 12px;
    }

    .country-select {
        width: 100%;
    }

    .form-submit {
        width: 100%;
    }
}


