/* Hero Section */
.page-hero {
    position: relative;
    min-height: 40vh;
    width: 100%;
    background: url('../images/hero-bg.png') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    padding: 80px 0;
    text-align: right;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to left, 
        rgba(255, 255, 255, 0.85) 0%,
        rgba(255, 255, 255, 0.75) 50%,
        rgba(255, 255, 255, 0.65) 100%
    );
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-hero .hero-content {
    color: #1B3B8C;
    max-width: 800px;
    margin-right: 0;
    position: relative;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    position: relative;
}

.page-hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #FF4081, #1B3B8C);
    border-radius: 2px;
}

.page-hero p {
    font-size: 1.6rem;
    margin-bottom: 30px;
    opacity: 0.9;
    color: #2c3e50;
    font-weight: 500;
}

.page-hero .breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    margin-top: 30px;
}

.page-hero .breadcrumb a {
    color: #1B3B8C;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    font-weight: 500;
}

.page-hero .breadcrumb a:hover {
    opacity: 1;
    transform: translateX(-3px);
}

.page-hero .breadcrumb .separator {
    color: #1B3B8C;
    opacity: 0.5;
}

.page-hero .breadcrumb .current {
    color: #1B3B8C;
    opacity: 0.7;
    font-weight: 500;
}

.hero-pattern {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    z-index: 2;
}

/* Contact Content */
.contact-content {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Info */
.page-contact-info {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.page-contact-info h2 {
    color: #1B3B8C;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: right;
    position: relative;
    padding-bottom: 15px;
}

.page-contact-info h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #FF4081, #1B3B8C);
    border-radius: 2px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    text-align: right;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(27, 59, 140, 0.05);
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    color: #1B3B8C;
    font-size: 1.5rem;
    margin-top: 5px;
    width: 30px;
    text-align: center;
}

.info-content h3 {
    color: #1B3B8C;
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.info-content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.info-content p + p {
    margin-top: 5px;
}

.info-content a {
    color: #1B3B8C;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.info-content a:hover {
    color: #2850B8;
    transform: translateX(-3px);
}

/* Contact Form */
.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-form h2 {
    color: #1B3B8C;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: right;
    position: relative;
    padding-bottom: 15px;
}

.contact-form h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #FF4081, #1B3B8C);
    border-radius: 2px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #1B3B8C;
    font-size: 1.1rem;
    margin-bottom: 8px;
    text-align: right;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1B3B8C;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(27, 59, 140, 0.1);
}

.submit-btn {
    background: #1B3B8C;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    background: #2850B8;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(27, 59, 140, 0.2);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-hero {
        padding: 60px 0;
    }

    .page-hero h1 {
        font-size: 3rem;
    }

    .page-hero p {
        font-size: 1.4rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .page-contact-info,
    .contact-form {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 35vh;
        padding: 50px 0;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

    .page-hero p {
        font-size: 1.2rem;
    }

    .page-hero .breadcrumb {
        font-size: 1rem;
    }

    .page-contact-info h2,
    .contact-form h2 {
        font-size: 1.8rem;
    }

    .info-item {
        padding: 12px;
    }

    .info-content h3 {
        font-size: 1.1rem;
    }

    .info-content p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .page-hero {
        min-height: 30vh;
        padding: 40px 0;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .page-hero p {
        font-size: 1.1rem;
    }

    .page-hero .breadcrumb {
        font-size: 0.9rem;
    }

    .page-contact-info,
    .contact-form {
        padding: 20px;
    }

    .info-item {
        gap: 15px;
    }

    .info-item i {
        font-size: 1.3rem;
    }
} 