.ksp-page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 60px;
    overflow: hidden;
    background: var(--ksp-bg-light);
}

.ksp-page-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.ksp-page-hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0066FF 0%, #00D4FF 50%, #FFB800 100%);
    opacity: 0.05;
}

.ksp-page-hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.ksp-page-hero-shapes .ksp-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 212, 255, 0.1));
    filter: blur(60px);
    animation: float 20s infinite ease-in-out;
}

.ksp-page-hero-shapes .ksp-shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: 10%;
    animation-delay: 0s;
}

.ksp-page-hero-shapes .ksp-shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: 5%;
    animation-delay: 5s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.ksp-page-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.ksp-page-hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--ksp-text-primary);
    background: linear-gradient(135deg, var(--ksp-primary) 0%, var(--ksp-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ksp-page-hero-subtitle {
    font-size: 20px;
    line-height: 1.8;
    color: var(--ksp-text-secondary);
}

.ksp-contact-info {
    padding: 80px 0;
    background: white;
}

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

.ksp-contact-card {
    background: var(--ksp-bg-light);
    padding: 40px;
    border-radius: var(--ksp-radius-lg);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.ksp-contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--ksp-shadow-lg);
    background: white;
    border-top-color: var(--ksp-primary);
}

.ksp-contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--ksp-primary) 0%, var(--ksp-accent) 100%);
    border-radius: var(--ksp-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: white;
}

.ksp-contact-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--ksp-text-primary);
}

.ksp-contact-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--ksp-text-secondary);
}

.ksp-contact-text a {
    color: var(--ksp-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.ksp-contact-text a:hover {
    color: var(--ksp-primary-dark);
}

.ksp-contact-map {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--ksp-bg-light) 0%, white 100%);
}

.ksp-map-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.ksp-map-container {
    border-radius: var(--ksp-radius-lg);
    overflow: hidden;
    box-shadow: var(--ksp-shadow-lg);
}

.ksp-map-container img {
    width: 100%;
    height: auto;
    display: block;
}

.ksp-contact-form-section {
    padding: 80px 0;
    background: white;
}

.ksp-contact-form-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.ksp-form-text {
    padding-right: 40px;
}

.ksp-form-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 30px;
}

.ksp-form-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--ksp-text-secondary);
}

.ksp-form-benefit i {
    color: var(--ksp-success);
    font-size: 20px;
    flex-shrink: 0;
}

.ksp-form-container {
    background: var(--ksp-bg-light);
    padding: 40px;
    border-radius: var(--ksp-radius-lg);
    box-shadow: var(--ksp-shadow-md);
}

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

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

.ksp-form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--ksp-text-primary);
}

.ksp-form-input,
.ksp-form-textarea {
    padding: 14px 16px;
    border: 2px solid var(--ksp-border);
    border-radius: var(--ksp-radius-sm);
    font-size: 16px;
    font-family: inherit;
    color: var(--ksp-text-primary);
    background: white;
    transition: all 0.3s ease;
}

.ksp-form-input:focus,
.ksp-form-textarea:focus {
    outline: none;
    border-color: var(--ksp-primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

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

.ksp-form-submit {
    width: 100%;
    margin-top: 10px;
}

.ksp-business-hours {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--ksp-bg-light) 0%, white 100%);
}

.ksp-business-hours-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.ksp-hours-visual img {
    width: 100%;
    height: auto;
    border-radius: var(--ksp-radius-lg);
    box-shadow: var(--ksp-shadow-lg);
}

.ksp-hours-text {
    padding-left: 40px;
}

.ksp-hours-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}

.ksp-hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    background: white;
    border-radius: var(--ksp-radius-md);
    box-shadow: var(--ksp-shadow-sm);
    transition: all 0.3s ease;
    border-left: 4px solid var(--ksp-primary);
}

.ksp-hour-item:hover {
    box-shadow: var(--ksp-shadow-md);
    transform: translateX(5px);
}

.ksp-hour-day {
    font-size: 18px;
    font-weight: 700;
    color: var(--ksp-text-primary);
}

.ksp-hour-time {
    font-size: 18px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--ksp-primary) 0%, var(--ksp-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ksp-hours-note {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: rgba(0, 102, 255, 0.05);
    border-radius: var(--ksp-radius-md);
    border-left: 4px solid var(--ksp-primary);
    margin-top: 30px;
}

.ksp-hours-note i {
    color: var(--ksp-primary);
    font-size: 20px;
    flex-shrink: 0;
}

.ksp-hours-note span {
    font-size: 14px;
    color: var(--ksp-text-secondary);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .ksp-contact-info-grid {
        grid-template-columns: 1fr;
    }

    .ksp-contact-form-content {
        grid-template-columns: 1fr;
    }

    .ksp-form-text {
        padding-right: 0;
    }

    .ksp-business-hours-content {
        grid-template-columns: 1fr;
    }

    .ksp-hours-text {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .ksp-page-hero {
        min-height: auto;
        padding-top: 120px;
        padding-bottom: 40px;
    }

    .ksp-page-hero-title {
        font-size: 36px;
    }

    .ksp-page-hero-subtitle {
        font-size: 18px;
    }

    .ksp-section-title {
        font-size: 36px;
    }
}

