@import url("assets/css/base.css");
@import url("assets/css/header.css");
@import url("assets/css/carousel.css");
@import url("assets/css/cards.css");

/* --- Hero Section & Video Background --- */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}



.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(4, 12, 33, 0.85) 30%, rgba(4, 12, 33, 0.25) 100%);
    z-index: 2;
}

.hero-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 10;
    margin-top: 0;
}

.hero-content {
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    padding: 6px 14px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
    line-height: 1.5;
    max-width: 650px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.hero-actions .btn-primary {
    background-color: var(--brand-red);
    color: #ffffff;
    border-color: var(--brand-red);
}

.hero-actions .btn-primary:hover {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.hero-actions .btn-secondary {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-actions .btn-secondary:hover {
    background-color: #ffffff;
    color: #0f172a;
}

/* Animations */
.animate-fade-in {
    opacity: 0;
    animation-name: fadeIn;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-timing-function: var(--transition-premium);
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation-name: slideUp;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-timing-function: var(--transition-premium);
}

.animate-slide-up-delay {
    opacity: 0;
    transform: translateY(30px);
    animation-name: slideUp;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-timing-function: var(--transition-premium);
    animation-delay: 0.2s;
}

.animate-slide-up-double {
    opacity: 0;
    transform: translateY(30px);
    animation-name: slideUp;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-timing-function: var(--transition-premium);
    animation-delay: 0.4s;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

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

#hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurns 20s infinite alternate linear;
    will-change: transform;
}

/* --- About Section --- */
.about-section {
    background-color: var(--bg-card);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 60px;
}

/* Left Overlapping Images */
.about-visuals {
    position: relative;
    height: 580px;
    width: 100%;
}

.image-wrapper-large {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 85%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.image-wrapper-small {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 50%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    border: 4px solid #ffffff;
}

.img-about {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--transition-premium);
}

.about-visuals:hover .img-about {
    transform: scale(1.05);
}

/* Right Content */
.about-desc {
    margin-bottom: 32px;
}

.highlight-p {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
    border-left: 2px solid var(--brand-red);
    padding-left: 16px;
    margin-bottom: 20px;
}

.about-philosophy {
    font-size: 1.05rem;
    background-color: var(--bg-light);
    padding: 16px 20px;
    border-radius: 6px;
    border-left: 3px solid var(--brand-blue);
    margin-bottom: 20px;
}

/* Commitment & Team Blocks Styling */
.about-permanent-blocks {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.commitment-block {
    padding: 40px;
    background-color: var(--bg-dark);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
}

.commitment-block h4 {
    font-family: 'Instrument Serif', serif;
    font-size: 1.8rem;
    color: var(--brand-red);
    margin-bottom: 20px;
}

.commitment-block p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.commitment-signature {
    font-family: 'Instrument Serif', serif;
    font-size: 1.8rem;
    font-style: italic;
    color: var(--brand-blue);
    margin-top: 20px;
}

.team-block h4 {
    font-family: 'Instrument Serif', serif;
    font-size: 1.8rem;
    color: var(--brand-blue);
    margin-bottom: 8px;
}

.team-intro {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.team-member-badge {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 16px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-fast);
}

.team-member-badge:hover {
    border-color: var(--brand-red);
    box-shadow: var(--shadow-medium);
    transform: translateY(-2px);
}

.team-member-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--brand-red);
    flex-shrink: 0;
}

.team-member-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.team-member-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.2;
}

.team-member-title {
    font-weight: 500;
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.2;
}

/* History Timeline Panel */
.about-history-timeline {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin-top: 0;
    transition: max-height 0.8s ease-in-out, opacity 0.6s ease-in-out, margin-top 0.5s ease-in-out;
    background-color: var(--bg-dark);
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
}

.about-history-timeline.active {
    max-height: 1000px;
    opacity: 1;
    margin-top: 60px;
    padding: 48px;
}

.timeline-header {
    text-align: center;
    margin-bottom: 40px;
}

.timeline-title {
    font-size: 2.2rem;
    color: var(--text-primary);
    font-family: 'Instrument Serif', serif;
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: calc(100% - 40px);
    background-color: var(--brand-red-semi);
    top: 20px;
}

.timeline-item {
    position: relative;
    width: 50%;
    margin-bottom: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item:nth-child(even) {
    left: 0;
    padding-right: 40px;
    text-align: right;
}

.timeline-item:nth-child(odd) {
    left: 50%;
    padding-left: 40px;
    text-align: left;
}

.timeline-dot {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--brand-red);
    border: 3px solid var(--bg-card);
    top: 8px;
    z-index: 10;
    box-shadow: 0 0 0 4px var(--brand-red-semi);
}

.timeline-item:nth-child(even) .timeline-dot {
    right: -7px;
}

.timeline-item:nth-child(odd) .timeline-dot {
    left: -7px;
}

.timeline-date {
    font-family: 'Instrument Serif', serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--brand-red);
    line-height: 1;
    margin-bottom: 8px;
}

.timeline-content h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-secondary);
    margin: 0;
}



/* --- Grid Helpers --- */
.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

@media (max-width: 768px) {
    .grid-2-col {
        grid-template-columns: 1fr;
    }
}

/* --- Enhanced Commitment Section --- */
.commitment-enhanced {
    position: relative;
    padding: 50px 40px;
    background: linear-gradient(135deg, #0b1329 0%, #1a2942 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-radius: 16px;
}

.commitment-enhanced:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}



.commitment-icon-wrap {
    position: absolute;
    top: 35px;
    left: 40px;
    font-size: 3rem;
    color: rgba(227, 6, 19, 0.15);
    z-index: 1;
}

.pulse-anim {
    animation: pulseQuote 3s infinite ease-in-out;
}

@keyframes pulseQuote {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; color: rgba(227, 6, 19, 0.3); }
}

.commitment-enhanced h4 {
    color: #ffffff !important;
    font-size: 2.2rem !important;
    position: relative;
    z-index: 2;
    margin-bottom: 25px !important;
    display: inline-block;
}



.commitment-enhanced p {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 1.05rem !important;
    line-height: 1.8 !important;
    position: relative;
    z-index: 2;
    margin-bottom: 20px !important;
}

.commitment-enhanced .commitment-signature {
    color: #e30613 !important; /* Brand Red */
    margin-top: 35px !important;
    margin-bottom: 0 !important;
    font-size: 2rem !important;
    opacity: 0.9;
}
