/* Corporate Hero Section */
.corporate-hero {
    min-height: 44vh !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
    padding-bottom: 0;
    display: flex;
    align-items: flex-start;
    background: #34495e;
    position: relative;
    overflow: hidden;
}
.corporate-hero__text {
    flex: 0 1 600px;
    max-width: 600px;
    width: 100%;
    background: #34495e;
    color: #fff;
    padding: 0 48px 40px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    margin: 0;
    text-align: left;
    box-sizing: border-box;
}
.corporate-hero__title {
    font-size: 3.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.2rem;
    margin-top: 0;
    line-height: 1.08;
    letter-spacing: -0.5px;
}
.corporate-hero__subtitle {
    font-size: 1.13rem;
    margin-bottom: 2.2rem;
    color: #fff;
    line-height: 1.4;
}
.corporate-hero__features {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-bottom: 2rem;
}
.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    margin-bottom: 1rem;
}
.feature__icon {
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}
.feature__text {
    font-weight: 500;
    font-size: 1.1rem;
}
.corporate-hero__image {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    background: none;
    margin: 0;
    max-width: calc(100vw - 600px);
}
.corporate-hero__image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    background: none;
    position: relative;
}
.corporate-hero__image-placeholder img {
    width: 100%;
    height: 100vh;
    max-width: none;
    max-height: 100vh;
    object-fit: cover;
    object-position: right center;
    display: block;
}

/* Button styles */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn--primary {
    background: #e74c3c;
    color: white;
}

.btn--primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

/* Corporate Video Section */
.corporate-video {
    padding: 100px 0;
    background: var(--bg-light);
}

/* Why Choose Corporate Section */
.why-choose-corporate {
    padding: 100px 0;
    background: white;
}

.why-choose-corporate__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-choose-item {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.why-choose-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #e0e0e0;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.why-choose-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.why-choose-item:hover::before {
    transform: scaleX(1);
}

.why-choose-item__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.why-choose-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.why-choose-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Corporate Reviews Section */
.corporate-reviews {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.review-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #e0e0e0;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.review-card__content {
    margin-bottom: 1.5rem;
}

.review-card__content p {
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.6;
}

.review-card__author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-card__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f4f4f4;
}

.review-card__info h4 {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.review-card__info span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Corporate Gallery Section */
.corporate-gallery {
    padding: 100px 0;
    background: white;
}

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

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #e0e0e0;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.gallery-item__image-placeholder {
    width: 100%;
    height: 250px;
    background: #f0f0f0;
    position: relative;
}

.gallery-item__info {
    padding: 1.5rem;
    background: white;
}

.gallery-item__info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.gallery-item__info p {
    color: var(--text-light);
}

/* Work Process Section */
.work-process {
    padding: 100px 0;
    background: var(--bg-light);
}

.work-process__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 1px solid #e0e0e0;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.process-step__number {
    width: 60px;
    height: 60px;
    background: #34495e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Corporate CTA Section */
.corporate-cta {
    padding: 100px 0;
    background: #34495e;
    color: white;
    text-align: center;
}

.corporate-cta__content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.corporate-cta__content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Corporate Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
}

.modal__content {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.modal.active .modal__content {
    transform: scale(1);
}

.modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.modal__header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.modal__close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-light);
    transition: color 0.3s ease;
}

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

/* Mobile Responsive */
@media (max-width: 900px) {
  .corporate-hero {
    flex-direction: column;
    align-items: center;
    padding-top: 12px;
    min-height: unset;
    overflow-x: hidden;
  }
  .corporate-hero__text {
    max-width: 98vw;
    padding-left: 0;
    text-align: center;
    top: 0;
    padding-top: 120px;
    background: #34495e;
    padding-right: 0;
    padding-bottom: 24px;
  }
  .corporate-hero__title {
    font-size: 2.5rem;
  }
  .corporate-hero__subtitle {
    font-size: 1rem;
    max-width: 90vw;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
    margin-bottom: 1.2rem;
  }
  .corporate-hero__image {
    max-width: 98vw;
    margin: 0 auto;
    align-self: center;
    margin-top: 0;
    min-width: 0;
    display: block;
  }
  .corporate-hero__image-placeholder {
    width: 100%;
    max-width: 350px;
    height: 450px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .corporate-hero__features {
    align-items: center;
  }
  .corporate-hero__image-placeholder {
    width: 100vw !important;
    max-width: 100vw !important;
    height: auto;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
  }
  .corporate-hero__image-placeholder img {
    width: 100vw !important;
    max-width: 100vw !important;
    height: auto !important;
    min-width: 0;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
}
@media (max-width: 480px) {
  .corporate-hero__title {
    font-size: 2rem;
  }
  .corporate-hero__subtitle {
    font-size: 1rem;
  }
  .corporate-hero__image-placeholder {
    height: 350px;
  }
}

/* Additional Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes heartBeat {
    0% {
        transform: scale(1);
    }
    14% {
        transform: scale(1.3);
    }
    28% {
        transform: scale(1);
    }
    42% {
        transform: scale(1.3);
    }
    70% {
        transform: scale(1);
    }
}

.process-step__number {
    animation: pulse 2s infinite;
}

.process-step:nth-child(2) .process-step__number {
    animation-delay: 0.5s;
}

.process-step:nth-child(3) .process-step__number {
    animation-delay: 1s;
}

.process-step:nth-child(4) .process-step__number {
    animation-delay: 1.5s;
}

.feature__icon {
    animation: heartBeat 2s infinite;
}

.feature:nth-child(2) .feature__icon {
    animation-delay: 0.5s;
}

.feature:nth-child(3) .feature__icon {
    animation-delay: 1s;
}

/* Hover Effects */
.gallery-item:hover .gallery-item__image-placeholder {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Focus Styles */
.gallery-item:focus-within {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
} 

.corporate-video-ux {
  background: #f4f4f4;
  padding: 56px 0 48px 0;
}
.video-ux-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 700px) {
  .corporate-video-ux {
    padding: 32px 0 24px 0;
  }
  .video-ux-container video {
    max-width: 100vw;
  }
}
@keyframes fadein {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: none; }
} 

.corporate-video-ux .reviews-video-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    border-radius: 0;
    overflow: hidden;
    background: none;
    padding: 0;
}
.corporate-video-ux video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
    background: #000;
    box-shadow: none;
    margin: 0;
    padding: 0;
} 