/* =====================================================
   PARGAVAN ACADEMY - TRAINING WEBSITE STYLES
   ===================================================== */

/* ==================== Hero Section ==================== */
.academy-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.academy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(26,26,26,0.92) 0%, rgba(26,26,26,0.88) 100%),
        url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?ixlib=rb-1.2.1&auto=format&fit=crop&w=2850&q=80');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.academy-hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212,175,55,0.08) 0%, transparent 60%);
    z-index: 1;
}

.academy-hero .container {
    position: relative;
    z-index: 2;
}

.hero-subtitle-top {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.hero-title {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    color: #a0a0a0;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hero-buttons .btn {
    padding: 14px 32px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons .btn-primary {
    background: #d7b66a;
    border: none;
}

.hero-buttons .btn-primary:hover {
    background: #b8963f;
}

.hero-buttons .btn-secondary {
    border: 2px solid #ffffff;
    background: transparent;
    color: #ffffff;
}

.hero-buttons .btn-secondary:hover {
    background: #ffffff;
    color: #1a1a1a;
}

.hero-image {
    position: relative;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-image {
        margin-top: 3rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
}

/* ==================== Course Card ==================== */
.course-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 2rem;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.course-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.course-card:hover .course-image img {
    transform: scale(1.1);
}

.course-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #d7b66a;
    color: #1a1a1a;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.course-content {
    padding: 25px;
}

.course-category {
    color: #d7b66a;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

.course-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.course-description {
    color: #666666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
    color: #666666;
    font-size: 0.85rem;
}

.course-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.course-card .btn-outline {
    border-color: #d7b66a;
    color: #d7b66a;
    padding: 10px 24px;
    font-weight: 500;
    width: 100%;
    margin-top: 15px;
}

.course-card .btn-outline:hover {
    background: #d7b66a;
    color: #1a1a1a;
}

/* ==================== Feature Card ==================== */
.feature-card {
    background: #2d2d2d;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: #333333;
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #d7b66a 0%, #b8963f 100%);
    border-radius: 50%;
    font-size: 1.75rem;
    color: #1a1a1a;
}

.feature-card h4 {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: #999999;
    font-size: 0.95rem;
    margin: 0;
}

/* ==================== Internship Card ==================== */
.internship-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.internship-card h4 {
    color: #1a1a1a;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.internship-card p {
    color: #666666;
    margin-bottom: 20px;
}

.internship-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.internship-card ul li {
    padding: 8px 0;
    color: #666666;
    display: flex;
    align-items: center;
    gap: 10px;
}

.internship-card ul li i {
    color: #d7b66a;
}

/* ==================== Workshop Card ==================== */
.workshop-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.workshop-date {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #d7b66a 0%, #b8963f 100%);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.workshop-date .day {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

.workshop-date .month {
    font-size: 0.8rem;
    font-weight: 600;
    color: #1a1a1a;
    text-transform: uppercase;
}

.workshop-content {
    flex: 1;
    min-width: 200px;
}

.workshop-content h4 {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.workshop-content p {
    color: #666666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.workshop-time {
    color: #d7b66a;
    font-size: 0.85rem;
    font-weight: 500;
}

.workshop-time i {
    margin-right: 5px;
}

/* ==================== Testimonials ==================== */
.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    border: 3px solid #d7b66a;
    object-fit: cover;
}

.testimonial-text {
    font-style: italic;
    color: #666666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-position {
    color: #d7b66a;
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .testimonial-slider {
        grid-template-columns: 1fr;
    }
}

/* ==================== CTA Section ==================== */
.cta-section {
    background: linear-gradient(135deg, #d7b66a 0%, #b8963f 100%);
    padding: 5rem 0;
    text-align: center;
}

.cta-content h2 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #333333;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-content .btn {
    background: #1a1a1a;
    color: #ffffff;
    padding: 14px 40px;
    font-weight: 600;
}

.cta-content .btn:hover {
    background: #333333;
    color: #ffffff;
}

/* ==================== Page Header ==================== */
.page-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 8rem 0 4rem;
    margin-top: 0;
    text-align: center;
}

.page-header h1 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.page-header p {
    color: #a0a0a0;
    font-size: 1.1rem;
}

/* ==================== Breadcrumb ==================== */
.breadcrumb {
    background: #f8f9fa;
    padding: 1rem 0;
    margin-top: 80px;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb-item {
    color: #666666;
}

.breadcrumb-item a {
    color: #d7b66a;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: #b8963f;
}

.breadcrumb-separator {
    color: #999999;
}

.breadcrumb-item.active {
    color: #1a1a1a;
}

/* ==================== Footer ==================== */
.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 5rem 0 2rem;
}

.footer .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.footer .col-lg-3,
.footer .col-md-6 {
    padding: 0 15px;
    margin-bottom: 2rem;
}

.footer .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

.footer .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

@media (max-width: 991px) {
    .footer .col-lg-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 767px) {
    .footer .col-lg-3,
    .footer .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.footer-col {
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: #d7b66a;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #999999;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #d7b66a;
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #999999;
    margin-bottom: 1rem;
}

.footer-contact li i {
    color: #d7b66a;
    width: 20px;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #333333;
    color: #ffffff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #d7b66a;
    color: #1a1a1a;
}

.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 2rem;
    text-align: center;
    color: #666666;
}

/* ==================== Forms ==================== */
.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
}

.form-control:focus {
    outline: none;
    border-color: #d7b66a;
    box-shadow: 0 0 0 3px rgba(215, 182, 106, 0.1);
}

.form-control::placeholder {
    color: #999999;
}

.form-select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
}

.form-select:focus {
    outline: none;
    border-color: #d7b66a;
    box-shadow: 0 0 0 3px rgba(215, 182, 106, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* ==================== Buttons ==================== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: #d7b66a;
    color: #1a1a1a;
    border: none;
}

.btn-primary:hover {
    background: #b8963f;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #1a1a1a;
}

.btn-outline {
    background: transparent;
    border: 2px solid #d7b66a;
    color: #d7b66a;
}

.btn-outline:hover {
    background: #d7b66a;
    color: #1a1a1a;
}

/* ==================== Section Titles ==================== */
.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #d7b66a;
}

.section-title p {
    color: #666666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 1.5rem auto 0;
}

/* ==================== Scroll Top Button ==================== */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #d7b66a;
    color: #1a1a1a;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    background: #b8963f;
}

/* ==================== Mobile Menu ==================== */
.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.navbar-toggle span {
    width: 25px;
    height: 3px;
    background: #1a1a1a;
    transition: all 0.3s ease;
}

@media (max-width: 992px) {
    .navbar-toggle {
        display: flex;
    }
    
    .navbar-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #ffffff;
        flex-direction: column;
        padding: 2rem;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .navbar-menu.active {
        left: 0;
    }
    
    .navbar-link {
        padding: 1rem;
        width: 100%;
        text-align: center;
    }
}

/* ==================== Team Section ==================== */
.team-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    text-align: center;
}

.team-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.team-card:hover .team-social {
    bottom: 20px;
}

.team-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d7b66a;
    color: #1a1a1a;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: #1a1a1a;
    color: #ffffff;
}

.team-content {
    padding: 20px;
}

.team-name {
    font-size: 1.25rem;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.team-position {
    color: #d7b66a;
    font-size: 0.9rem;
    font-weight: 500;
}

/* ==================== Gallery Section ==================== */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 2rem;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(215, 182, 106, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2rem;
    color: #1a1a1a;
}

/* ==================== Enrollment Form ==================== */
.enrollment-form {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.enrollment-form h3 {
    margin-bottom: 30px;
    color: #1a1a1a;
}
