/* ========================================
   HERO SECTION - MODERN & ATTRACTIVE DESIGN
   ======================================== */

.hero-section {
    position: relative;
    background: linear-gradient(135deg, #1d252c 0%, #0083bf 50%, #5fb4e5 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(5, 125, 188, 0.15) 0%, transparent 50%);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section .grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    min-height: 60vh;
}

.hero-section .col-12_tablet-7 {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Typography */
.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-section p {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* Buttons */
.hero-section .button {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 8px 12px;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-section .button.red {
    background: linear-gradient(135deg, #d83c03 0%, #ff6b35 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(216, 60, 3, 0.4);
}

.hero-section .button.red:hover {
    background: linear-gradient(135deg, #b83202 0%, #e55a2b 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(216, 60, 3, 0.6);
}

.hero-section .button.white {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero-section .button.white:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.2);
}

/* Button hover effects */
.hero-section .button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

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

/* Floating Elements */
.hero-section::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

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

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-section h1 {
        font-size: 3rem;
    }
    
    .hero-section p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 60px;
        min-height: 80vh;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .hero-section p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .hero-section .button {
        padding: 14px 28px;
        font-size: 1rem;
        margin: 6px 8px;
        display: block;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-section .button + .button {
        margin-top: 12px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 80px 0 40px;
    }
    
    .hero-section h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-section p {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .hero-section .button {
        padding: 12px 24px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 280px;
    }
}

/* Additional Visual Elements */
.hero-section .floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.hero-section .shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.hero-section .shape:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.hero-section .shape:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.hero-section .shape:nth-child(3) {
    width: 60px;
    height: 60px;
    top: 40%;
    left: 80%;
    animation-delay: 4s;
}

/* Scroll indicator */
.hero-section .scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    animation: bounce 2s infinite;
    z-index: 2;
}

.hero-section .scroll-indicator::after {
    content: '↓';
    display: block;
    font-size: 1.5rem;
    margin-top: 8px;
    margin-left: -17px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero-section {
        background: #000;
    }
    
    .hero-section h1 {
        color: #fff;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    }
    
    .hero-section .button.white {
        border: 2px solid #fff;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .hero-section h1,
    .hero-section p,
    .hero-section .button,
    .hero-section::after,
    .hero-section .shape,
    .hero-section .scroll-indicator {
        animation: none;
    }
}

/* Hero Buttons Container */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

/* Enhanced visual effects */
.hero-section .button {
    position: relative;
    z-index: 3;
}

.hero-section .button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.hero-section .button:hover::after {
    width: 300px;
    height: 300px;
}

/* Text selection styling */
.hero-section h1::selection,
.hero-section p::selection {
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
}

/* Loading animation for elements */
.hero-section .col-12_tablet-7 > * {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-section .col-12_tablet-7 h1 {
    animation-delay: 0.2s;
}

.hero-section .col-12_tablet-7 p {
    animation-delay: 0.4s;
}

.hero-section .col-12_tablet-7 .hero-buttons {
    animation-delay: 0.6s;
}
