/* Corporate Professional Hero Design */

:root {
    --gold-primary: #F5E6A3;
    --gold-secondary: #FFF8DC;
    --gold-dark: #E6D690;
    --navy-primary: #001F3F;
    --navy-secondary: #003366;
    --navy-dark: #001428;
    --white: #FFFFFF;
    --gray-light: #F8F9FA;
    --gray-medium: #6C757D;
}

/* Mobile overflow fix */
* {
    max-width: 100%;
}

html, body {
    overflow-x: hidden !important;
    width: 100%;
    position: relative;
}

/* Hero Section */
.hero-corporate {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-primary) 50%, var(--navy-secondary) 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Animated Background Pattern */
.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(212, 175, 55, 0.1) 35px, rgba(212, 175, 55, 0.1) 70px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(212, 175, 55, 0.05) 35px, rgba(212, 175, 55, 0.05) 70px);
    animation: patternMove 30s linear infinite;
}

@keyframes patternMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(70px, 70px); }
}

/* Geometric Shapes Background */
.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.shape {
    position: absolute;
    border: 2px solid rgba(212, 175, 55, 0.1);
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    border-radius: 50%;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 15%;
    transform: rotate(45deg);
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.1;
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.3;
    }
}

/* Main Content Container */
.hero-corporate-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 60px 20px;
    max-width: 1400px;
    width: 100%;
}

/* Logo Section */
.corporate-logo {
    margin-bottom: 50px;
    animation: logoReveal 1.5s ease-out;
}

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

.logo-container {
    display: inline-block;
    position: relative;
    padding: 30px;
}

.logo-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid var(--gold-primary);
    border-radius: 10px;
    animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% {
        box-shadow:
            0 0 20px rgba(212, 175, 55, 0.3),
            inset 0 0 20px rgba(212, 175, 55, 0.1);
    }
    50% {
        box-shadow:
            0 0 40px rgba(212, 175, 55, 0.5),
            inset 0 0 30px rgba(212, 175, 55, 0.2);
    }
}

.logo-text {
    font-size: 4.5rem;
    font-weight: 300;
    letter-spacing: 15px;
    color: var(--white);
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    position: relative;
}

.logo-text::after {
    content: 'SARITASLI';
    position: absolute;
    left: 3px;
    top: 3px;
    color: var(--gold-primary);
    z-index: -1;
    opacity: 0.5;
}

.logo-subtitle {
    font-size: 1.2rem;
    letter-spacing: 8px;
    color: var(--gold-primary);
    margin-top: 10px;
    font-weight: 400;
    animation: fadeInUp 1.5s ease-out 0.5s both;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Divider Line */
.premium-divider {
    width: 200px;
    height: 1px;
    margin: 40px auto;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    position: relative;
    animation: lineExpand 2s ease-out;
}

@keyframes lineExpand {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 200px;
        opacity: 1;
    }
}

.premium-divider::before,
.premium-divider::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border: 1px solid var(--gold-primary);
    background: var(--navy-primary);
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.premium-divider::before {
    left: -5px;
}

.premium-divider::after {
    right: -5px;
}

/* Service Tags */
.service-tags {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.service-tag {
    padding: 15px 35px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: var(--white);
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: tagReveal 1s ease-out backwards;
}

.service-tag:nth-child(1) { animation-delay: 0.1s; }
.service-tag:nth-child(2) { animation-delay: 0.2s; }
.service-tag:nth-child(3) { animation-delay: 0.3s; }
.service-tag:nth-child(4) { animation-delay: 0.4s; }

@keyframes tagReveal {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.service-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    transition: left 0.5s ease;
}

.service-tag:hover::before {
    left: 100%;
}

.service-tag:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

/* Description */
.hero-description-corporate {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    animation: fadeIn 1.5s ease-out 0.8s both;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* CTA Buttons */
.corporate-cta {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin: 50px 0;
    flex-wrap: wrap;
}

.btn-corporate {
    padding: 18px 45px;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
}

.btn-corporate-primary {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    color: var(--navy-dark);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.btn-corporate-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-corporate-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-corporate-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

/* Trust Indicators */
.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.trust-item {
    text-align: center;
    animation: fadeInScale 1s ease-out backwards;
}

.trust-item:nth-child(1) { animation-delay: 1s; }
.trust-item:nth-child(2) { animation-delay: 1.1s; }
.trust-item:nth-child(3) { animation-delay: 1.2s; }
.trust-item:nth-child(4) { animation-delay: 1.3s; }

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.trust-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Animated Background Elements */
.corporate-bg-element {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: pulse 10s ease-in-out infinite;
}

.corporate-bg-element-1 {
    top: -250px;
    left: -250px;
}

.corporate-bg-element-2 {
    bottom: -250px;
    right: -250px;
    animation-delay: 5s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-corporate {
        overflow: hidden !important;
    }

    .logo-text {
        font-size: 2rem;
        letter-spacing: 5px;
    }

    .logo-text::after {
        display: none;
    }

    .logo-container {
        padding: 20px;
    }

    .logo-subtitle {
        font-size: 0.9rem;
        letter-spacing: 4px;
    }

    .service-tags {
        gap: 10px;
        padding: 0 10px;
    }

    .service-tag {
        padding: 8px 15px;
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

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

    .trust-number {
        font-size: 1.8rem;
    }

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

    .corporate-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 0 20px;
    }

    .btn-corporate {
        width: 100%;
        max-width: 280px;
        padding: 15px 30px;
        font-size: 0.9rem;
    }

    .hero-description-corporate {
        font-size: 1rem;
        padding: 0 20px;
        line-height: 1.6;
    }

    .corporate-bg-element,
    .shape {
        display: none;
    }

    .premium-divider {
        width: 150px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.5rem;
        letter-spacing: 3px;
    }

    .service-tag {
        font-size: 0.7rem;
        padding: 6px 12px;
    }

    .btn-corporate {
        font-size: 0.85rem;
        padding: 12px 25px;
    }
}