@charset "UTF-8";

/* ===================================
   Index Page Styles
=================================== */

/* Section Common */
.section__title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.section__subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 50px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: inherit;
    cursor: pointer;
}

.btn--primary {
    background: #0066cc;
    color: #fff;
    border: 2px solid #0066cc;
}

.btn--primary:hover {
    background: #0052a3;
    border-color: #0052a3;
}

.btn--outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn--outline:hover {
    background: #fff;
    color: #0066cc;
}

.btn--white {
    background: #fff;
    color: #0066cc;
    border: 2px solid #fff;
}

.btn--white:hover {
    background: transparent;
    color: #fff;
}

/* ===================================
   Hero Section
=================================== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 0 20px;
    overflow: hidden;
}

.hero__video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -2;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: -1;
}

/* Hero Scroll Hint */
.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.hero__scroll-text {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.7;
}

.hero__scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, #fff, transparent);
    animation: scrollLine 1.5s ease-in-out infinite;
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }
    50% {
        transform: scaleY(1);
        transform-origin: top;
    }
    50.1% {
        transform-origin: bottom;
    }
    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* Fade In Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.fade-in--delay-1 {
    animation-delay: 0.3s;
}

.fade-in--delay-2 {
    animation-delay: 0.6s;
}

.fade-in--delay-3 {
    animation-delay: 0.9s;
}

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

/* Underline Point */
.underline-point {
    position: relative;
    display: inline-block;
}

.underline-point::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    transform: scaleX(0);
    transform-origin: left;
    animation: underlineIn 0.8s ease forwards 1s;
}

@keyframes underlineIn {
    to {
        transform: scaleX(1);
    }
}

/* Scroll Fade Animation */
.scroll-fade {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-fade.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Floating Buttons */
.floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.floating__btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.floating__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.floating__btn i {
    font-size: 20px;
}

.floating__btn--phone {
    background: #28a745;
    color: #fff;
}

.floating__btn--contact {
    background: #0066cc;
    color: #fff;
}

.floating__btn--top {
    background: #fff;
    color: #333;
    opacity: 0;
    visibility: hidden;
}

.floating__btn--top.visible {
    opacity: 1;
    visibility: visible;
}
}

.hero__container {
    max-width: 800px;
}

.hero__subtitle {
    font-size: 22px;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.hero__title {
    font-size: 72px;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero__desc {
    font-size: 20px;
    font-weight: 400;
    opacity: 0.85;
    margin-bottom: 50px;
    line-height: 1.8;
}

.hero__cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   About Section
=================================== */
.about {
    padding: 120px 20px;
    background: #fff;
}

.about__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about__content .section__title {
    text-align: left;
}

.about__content .section__subtitle {
    text-align: left;
    color: #0066cc;
    font-weight: 600;
    margin-bottom: 30px;
}

.about__text {
    font-size: 17px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 20px;
}

.about__text strong {
    color: #1a1a1a;
}

.about__content .btn {
    margin-top: 20px;
}

.btn--dark {
    background: #1a1a1a;
    color: #fff;
    border: 2px solid #1a1a1a;
}

.btn--dark:hover {
    background: #333;
    border-color: #333;
}

.about__values {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.value-card {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-card__icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0066cc 0%, #1e3a5f 100%);
    border-radius: 12px;
    flex-shrink: 0;
}

.value-card__icon i {
    font-size: 24px;
    color: #fff;
}

.value-card__title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.value-card__desc {
    font-size: 14px;
    color: #666;
}

/* ===================================
   Business Section
=================================== */
.business {
    padding: 120px 20px;
    background: #f8f9fa;
    text-align: center;
}

.business__container {
    max-width: 1200px;
    margin: 0 auto;
}

.business__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.business-card {
    background: #fff;
    padding: 50px 35px;
    border-radius: 16px;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: block;
}

.business-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.business-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0066cc 0%, #1e3a5f 100%);
    border-radius: 50%;
}

.business-card__icon i {
    font-size: 32px;
    color: #fff;
}

.business-card__title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.business-card__desc {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.business-card__more {
    font-size: 14px;
    font-weight: 600;
    color: #0066cc;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.business-card:hover .business-card__more {
    gap: 12px;
}

/* ===================================
   Stats Section
=================================== */
.stats {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1e3a5f 0%, #0066cc 100%);
}

.stats__container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-item {
    text-align: center;
    color: #fff;
}

.stat-item__number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-item__label {
    font-size: 16px;
    font-weight: 400;
    opacity: 0.85;
}

/* ===================================
   Portfolio Preview Section
=================================== */
.portfolio-preview {
    padding: 120px 20px;
    background: #fff;
    text-align: center;
}

.portfolio-preview__container {
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-preview__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.portfolio-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.portfolio-card__img {
    height: 220px;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-card__img i {
    font-size: 48px;
    color: #adb5bd;
}

.portfolio-card__info {
    padding: 25px;
    text-align: left;
    background: #fff;
}

.portfolio-card__category {
    font-size: 13px;
    font-weight: 600;
    color: #0066cc;
    margin-bottom: 8px;
    display: block;
}

.portfolio-card__title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
}

/* ===================================
   CTA Section
=================================== */
.cta {
    padding: 80px 20px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/assets/images/cta.jpg');
    background-size: cover;
    background-position: center 70%;
    background-attachment: fixed;
    text-align: center;
}

.cta__container {
    max-width: 800px;
    margin: 0 auto;
}

.cta__subtitle {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.cta__title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.cta__text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 30px;
}

.cta__buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.btn--outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn--outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.cta__phone {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.cta__phone strong {
    color: #fff;
    font-size: 16px;
}

/* ===================================
   Responsive
=================================== */
@media (max-width: 1024px) {
    .about__container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about__content {
        text-align: center;
    }
    
    .about__content .section__title,
    .about__content .section__subtitle {
        text-align: center;
    }
    
    .about__text br {
        display: none;
    }
    
    .business__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 50px;
    }
    
    .portfolio-preview__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .hero__title {
        font-size: 42px;
    }
    
    .hero__subtitle {
        font-size: 16px;
    }
    
    .hero__desc {
        font-size: 16px;
    }
    
    .hero__desc br {
        display: none;
    }
    
    .section__title {
        font-size: 28px;
    }
    
    .about,
    .business,
    .portfolio-preview {
        padding: 80px 20px;
    }
    
    .value-card {
        padding: 20px;
    }
    
    .value-card:hover {
        transform: none;
    }
    
    .stats__container {
        flex-direction: column;
        gap: 30px;
    }
    
    .stat-item__number {
        font-size: 36px;
    }
    
    .cta__title {
        font-size: 28px;
    }
}