/* Home Page Specific Styles */

.home-page main {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: visible;
}

.home-page .process-container,
.home-page .case-study-container,
.home-page .about-container,
.home-page .contact-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
}

/* Scroll margin for anchor links */
.home-page section {
    scroll-margin-top: 100px;
}

/* Hero Section */
.hero-section {
    padding: 0;
    padding-top: calc(var(--section-spacing) * 0.6);
    padding-bottom: calc(var(--section-spacing) * 0.6);
    text-align: center;
    scroll-margin-top: 0;
    position: relative;
    min-height: 60vh;
    width: 100%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    box-shadow: 0 0 10px rgba(0, 174, 239, 0.5);
    z-index: 10;
}

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

.hero-bg-image {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.25) contrast(1.3) saturate(1.4);
    transform: scale(1.15);
    animation: heroBgFloat 20s ease-in-out infinite;
}

@keyframes heroBgFloat {
    0%, 100% {
        transform: scale(1.15) translateY(0);
    }
    50% {
        transform: scale(1.2) translateY(-20px);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 174, 239, 0.15) 0%,
        rgba(0, 0, 0, 0.8) 50%,
        rgba(0, 174, 239, 0.15) 100%
    );
    backdrop-filter: blur(2px);
    z-index: 2;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.hero-icon {
    margin-bottom: 30px;
    animation: fadeInDown 0.8s ease-out, float 3s ease-in-out 1s infinite;
}

.hero-icon-image {
    height: 80px;
    width: auto;
    display: inline-block;
    filter: drop-shadow(0 0 20px rgba(0, 174, 239, 0.6));
    transition: all 0.3s ease;
}

.hero-icon:hover .hero-icon-image {
    filter: drop-shadow(0 0 30px rgba(0, 174, 239, 1));
    transform: scale(1.1) rotate(5deg);
}

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

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

.hero-title {
    font-size: 56px;
    font-weight: 800;
    letter-spacing: 0.05em;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--color-text);
    background: linear-gradient(135deg, #FFFFFF 0%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    text-shadow: 0 0 40px rgba(0, 174, 239, 0.3);
}

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

.hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    color: var(--color-text-secondary);
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-cta {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    padding: 12px 30px;
    border-radius: 5px;
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out 0.6s both;
    box-shadow: 0 0 20px rgba(0, 174, 239, 0.3);
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.hero-cta:hover::before {
    left: 100%;
}

.hero-cta:hover {
    background: var(--color-primary);
    color: var(--color-bg);
    transform: translateY(-3px);
    box-shadow: 0 5px 30px rgba(0, 174, 239, 0.6), 0 0 50px rgba(0, 174, 239, 0.3);
}

.hero-cta:active {
    transform: translateY(-1px);
}

.service-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.service-btn {
    background: var(--color-bg);
    border: 1px solid var(--color-primary);
    color: var(--color-text);
    padding: 12px 32px;
    border-radius: 25px;
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 140px;
    position: relative;
    overflow: hidden;
}

.service-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, var(--color-primary), rgba(0, 174, 239, 0.8));
    transition: width 0.5s ease, height 0.5s ease;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.service-btn:hover {
    color: var(--color-bg);
    box-shadow: 0 5px 20px rgba(0, 174, 239, 0.4);
    transform: translateY(-2px);
}

.service-btn:hover::before {
    width: 200px;
    height: 200px;
}

.service-btn:active {
    transform: translateY(0);
}

.service-btn:nth-child(1) { animation: fadeInScale 0.5s ease-out 1.0s both; }
.service-btn:nth-child(2) { animation: fadeInScale 0.5s ease-out 1.1s both; }
.service-btn:nth-child(3) { animation: fadeInScale 0.5s ease-out 1.2s both; }
.service-btn:nth-child(4) { animation: fadeInScale 0.5s ease-out 1.3s both; }
.service-btn:nth-child(5) { animation: fadeInScale 0.5s ease-out 1.4s both; }

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Process Section */
.process-section {
    padding-top: 0;
    margin-top: 0;
}

.process-container {
    padding: 40px 0 20px 0;
    max-width: 100%;
    overflow: hidden;
}

/* Process Navigation */
.process-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    gap: 16px;
}

.process-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 12px;
    border-radius: 8px;
    flex: 1;
}

.process-nav-item:hover {
    background: transparent;
}

.process-nav-item.active {
    background: transparent;
}

.nav-number-wrapper {
    position: relative;
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-90deg);
}

.progress-ring-circle-bg {
    fill: none;
    stroke: var(--color-text-secondary);
    stroke-width: 2;
    opacity: 0.3;
}

.progress-ring-circle {
    fill: none;
    stroke: var(--color-primary);
    stroke-width: 3;
    stroke-dasharray: 176;
    stroke-dashoffset: 176;
    transition: none;
    opacity: 0;
}

.process-nav-item.active .progress-ring-circle {
    opacity: 1;
    animation: progress 5s linear forwards;
}

@keyframes progress {
    0% {
        stroke-dashoffset: 176;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

.nav-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-secondary);
    font-size: 24px;
    font-weight: 800;
    transition: all 0.3s ease;
    background: transparent;
    position: relative;
    z-index: 1;
}

.process-nav-item:hover .progress-ring-circle-bg {
    opacity: 0.5;
}

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

.process-nav-item.active .nav-number {
    color: var(--color-primary);
    background: rgba(0, 174, 239, 0.1);
    transform: scale(1.1);
}

.nav-label {
    font-size: 13px;
    color: var(--color-text-secondary);
    text-align: center;
    font-weight: 500;
    transition: color 0.3s ease;
}

.process-nav-item:hover .nav-label,
.process-nav-item.active .nav-label {
    color: var(--color-primary);
}

/* Carousel */
.process-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.carousel-slide {
    display: none;
    opacity: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.carousel-slide.active {
    display: block;
    opacity: 1;
    position: relative;
    animation: fadeInSlideUp 0.5s ease;
}

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

/* Slide Header */
.slide-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--color-primary);
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 2px 15px rgba(0, 174, 239, 0.3);
}

.slide-number {
    font-size: 72px;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1;
    letter-spacing: -0.02em;
    text-shadow: 0 0 30px rgba(0, 174, 239, 0.7);
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        text-shadow: 0 0 30px rgba(0, 174, 239, 0.7);
    }
    50% {
        text-shadow: 0 0 40px rgba(0, 174, 239, 1);
    }
}

.slide-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
    flex: 1;
    text-shadow: 0 0 20px rgba(0, 174, 239, 0.2);
}

/* Carousel Pause Button */
.carousel-pause-btn {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: auto;
    margin-right: 5px;
    padding: 0;
    flex-shrink: 0;
}

.carousel-pause-btn:hover {
    background: var(--color-primary);
    color: var(--color-bg);
    transform: scale(1.1);
    transform-origin: right center;
}

.carousel-pause-btn svg {
    width: 20px;
    height: 20px;
}

.carousel-pause-btn.paused .pause-icon {
    display: none;
}

.carousel-pause-btn.paused .play-icon {
    display: block !important;
}

.carousel-pause-btn:not(.paused) .pause-icon {
    display: block;
}

.carousel-pause-btn:not(.paused) .play-icon {
    display: none !important;
}

/* Slide Content */
.slide-content {
    display: grid;
    gap: 24px;
    width: 100%;
    max-width: 100%;
}

.slide-content.columns-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    min-height: 450px;
}

.slide-content.columns-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    min-height: 450px;
}

.slide-content.columns-4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    min-height: 450px;
}

.content-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 8px;
    margin: -8px;
    border-radius: 8px;
}

.content-column:hover {
    background: rgba(0, 174, 239, 0.05);
    transform: translateY(-5px);
}

.content-column.wide {
    grid-column: span 1;
}

.column-image {
    width: 100%;
    border: 1px solid var(--color-primary);
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: rgba(0, 174, 239, 0.05);
    flex-shrink: 0;
    height: auto;
    position: relative;
    transition: all 0.3s ease;
}

.column-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 174, 239, 0.3) 0%, transparent 50%, rgba(0, 174, 239, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.column-image.large {
    aspect-ratio: 16 / 9;
}

.column-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, filter 0.3s ease;
    pointer-events: none;
}

.content-column:hover .column-image {
    box-shadow: 0 0 30px rgba(0, 174, 239, 0.6), inset 0 0 20px rgba(0, 174, 239, 0.2);
    border-color: var(--color-primary);
}

.content-column:hover .column-image::before {
    opacity: 1;
}

.content-column:hover .column-image img {
    transform: scale(1.08);
    filter: brightness(1.1);
}

.content-column h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
    margin: 4px 0 2px 0;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.content-column p {
    font-size: 12px;
    line-height: 1.4;
    color: var(--color-text-secondary);
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.slide-content.columns-4 .content-column h4 {
    font-size: 13px;
}

.slide-content.columns-4 .content-column p {
    font-size: 11px;
    line-height: 1.35;
}

.slide-content.columns-3 .content-column h4 {
    font-size: 14px;
}

.slide-content.columns-3 .content-column p {
    font-size: 12px;
}

.column-image.additional-image {
    margin-top: 16px;
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
}

.carousel-prev,
.carousel-next {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.carousel-prev::before,
.carousel-next::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--color-primary);
    transition: width 0.3s ease, height 0.3s ease;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.carousel-prev:hover,
.carousel-next:hover {
    color: var(--color-bg);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 174, 239, 0.6);
}

.carousel-prev:hover::before,
.carousel-next:hover::before {
    width: 100%;
    height: 100%;
}

/* Case Study Section */
.case-study-section {
    padding-top: var(--section-spacing);
}

.case-study-container {
    padding: 80px 0;
}

.case-study-container .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.case-study-card {
    background: rgba(0, 174, 239, 0.03);
    border: 1px solid var(--color-primary);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.case-study-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 174, 239, 0.1), transparent);
    transition: left 0.6s ease;
}

.case-study-card:hover {
    background: rgba(0, 174, 239, 0.08);
    box-shadow: 0 10px 40px rgba(0, 174, 239, 0.3);
    transform: translateY(-5px);
    border-color: var(--color-primary);
}

.case-study-card:hover::before {
    left: 100%;
}

.case-study-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 174, 239, 0.3);
}

.case-study-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1;
    text-shadow: 0 0 20px rgba(0, 174, 239, 0.5);
}

.case-study-name {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
    flex: 1;
}

.case-study-type {
    font-size: 14px;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 16px;
    border: 1px solid var(--color-primary);
    border-radius: 20px;
    background: rgba(0, 174, 239, 0.1);
}

.case-study-body {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.case-study-description p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin: 0;
}

.case-study-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 30px 0;
    border-top: 1px solid rgba(0, 174, 239, 0.2);
    border-bottom: 1px solid rgba(0, 174, 239, 0.2);
}

.stat-item {
    text-align: center;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: scale(1.05);
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 8px;
    text-shadow: 0 0 20px rgba(0, 174, 239, 0.4);
}

.stat-label {
    font-size: 12px;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.case-study-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.case-study-tags .tag {
    font-size: 13px;
    color: var(--color-primary);
    padding: 8px 16px;
    border: 1px solid var(--color-primary);
    border-radius: 20px;
    background: transparent;
    transition: all 0.3s ease;
    cursor: default;
}

.case-study-tags .tag:hover {
    background: var(--color-primary);
    color: var(--color-bg);
    box-shadow: 0 0 15px rgba(0, 174, 239, 0.6);
}

/* About Section */
.about-section {
    padding-top: var(--section-spacing);
}

.about-container {
    padding: 80px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    display: flex;
    gap: 20px;
}

.about-image-box {
    width: 100%;
    aspect-ratio: 3 / 4;
    border: 1px solid var(--color-primary);
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
}

.about-image-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 174, 239, 0.4) 0%, transparent 50%, rgba(0, 174, 239, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.about-image-box:hover {
    box-shadow: 0 10px 40px rgba(0, 174, 239, 0.5);
    transform: translateY(-5px);
}

.about-image-box:hover::after {
    opacity: 1;
}

.about-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, filter 0.4s ease;
}

.about-image-box:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.about-text {
    text-align: right;
}

.about-heading {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--color-text);
    text-shadow: 0 0 30px rgba(0, 174, 239, 0.3);
}

.about-underline {
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-primary));
    width: 200px;
    margin-left: auto;
    box-shadow: 0 0 15px rgba(0, 174, 239, 0.8);
    animation: expandLine 1s ease-out;
}

@keyframes expandLine {
    from {
        width: 0;
    }
    to {
        width: 200px;
    }
}

/* Contact Section */
.contact-section {
    padding-top: var(--section-spacing);
}

.contact-container {
    padding: 80px 0;
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 60px;
}

.contact-left .section-title {
    text-align: left;
    margin-bottom: 40px;
}

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

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

.form-label {
    color: var(--color-text);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.form-label .required {
    color: var(--color-primary);
}

.form-label .optional {
    color: var(--color-text-secondary);
    font-weight: 400;
    font-size: 13px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: flex-start;
}

.input-icon {
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--color-primary);
    z-index: 1;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 5px rgba(0, 174, 239, 0.5));
}

.input-wrapper:focus-within .input-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(0, 174, 239, 1));
    animation: iconPulse 1s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1.15);
    }
}

.input-icon.textarea-icon {
    top: 14px;
}

.contact-input,
.contact-textarea {
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--color-text-secondary);
    color: var(--color-text);
    padding: 12px 0 12px 32px;
    font-family: var(--font-main);
    font-size: 16px;
    outline: none;
    width: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.contact-textarea {
    resize: vertical;
    min-height: 120px;
    padding-top: 14px;
    line-height: 1.6;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
    color: var(--color-text-secondary);
    transition: all 0.3s ease;
}

.contact-input:focus,
.contact-textarea:focus {
    border-bottom-color: var(--color-primary);
    box-shadow: 0 2px 15px rgba(0, 174, 239, 0.3);
    transform: translateY(-2px);
}

.contact-input:focus::placeholder,
.contact-textarea:focus::placeholder {
    color: var(--color-primary);
    transform: translateX(5px);
}

.contact-input.error,
.contact-textarea.error {
    border-bottom-color: #ff4444;
    animation: shake 0.3s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.error-message {
    color: #ff4444;
    font-size: 13px;
    min-height: 18px;
    display: block;
    margin-top: 4px;
    padding-left: 32px;
}

.form-info {
    background: rgba(0, 174, 239, 0.1);
    border-left: 2px solid var(--color-primary);
    padding: 12px 16px;
    margin-top: 8px;
}

.form-info p {
    color: var(--color-text-secondary);
    font-size: 13px;
    margin: 0;
}

.form-success {
    background: rgba(0, 174, 239, 0.15);
    border: 2px solid var(--color-primary);
    border-radius: 5px;
    padding: 16px 20px;
    margin-top: 16px;
    display: none;
    align-items: center;
    gap: 12px;
    box-shadow: 0 0 20px rgba(0, 174, 239, 0.4);
}

.form-success.visible {
    display: flex;
    animation: slideInBounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes slideInBounce {
    0% {
        opacity: 0;
        transform: translateY(-30px) scale(0.8);
    }
    50% {
        transform: translateY(5px) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.success-icon {
    color: var(--color-primary);
    flex-shrink: 0;
    animation: checkmarkPop 0.5s ease 0.3s both;
    filter: drop-shadow(0 0 10px rgba(0, 174, 239, 0.8));
}

@keyframes checkmarkPop {
    0% {
        transform: scale(0) rotate(0deg);
    }
    50% {
        transform: scale(1.2) rotate(180deg);
    }
    100% {
        transform: scale(1) rotate(360deg);
    }
}

.success-message {
    color: var(--color-text);
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

.contact-submit {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    padding: 14px 40px;
    border-radius: 5px;
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 8px;
    position: relative;
    overflow: hidden;
}

.contact-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, var(--color-primary), rgba(0, 174, 239, 0.8));
    transition: width 0.4s ease, height 0.4s ease;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.contact-submit:hover {
    color: var(--color-bg);
    transform: translateY(-3px);
    box-shadow: 0 5px 30px rgba(0, 174, 239, 0.6), 0 0 50px rgba(0, 174, 239, 0.3);
}

.contact-submit:hover::before {
    width: 300px;
    height: 300px;
}

.contact-submit:active {
    transform: translateY(-1px);
}

.contact-right {
    width: 100%;
}

.contact-image-placeholder {
    width: 100%;
    aspect-ratio: 16 / 10;
    border: 1px solid var(--color-primary);
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
}

.contact-image-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 174, 239, 0.3) 0%, transparent 50%, rgba(0, 174, 239, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.contact-image-placeholder:hover {
    box-shadow: 0 10px 40px rgba(0, 174, 239, 0.5);
}

.contact-image-placeholder:hover::after {
    opacity: 1;
}

.contact-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, filter 0.4s ease;
}

.contact-image-placeholder:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

