/* 
* Australian Careers - Custom CSS
* Based on the logo colors: dark green and yellow/gold
*/

:root {
    --primary-color: #54aa47;
    /* Dark green from logo */
    --secondary-color: #fcd752;
    /* Gold/yellow from logo */
    --accent-color: #54aa47;
    /* Lighter green for accents */
    --light-color: #f8f9fa;
    --white-color: #ffff;
    --dark-color: #212529;
    --gray-color: #6c757d;
    --success-color: #54aa47;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --border-radius: 8px;
    --light-orange: #fbc27b;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

.bg-warning {
    background-color: var(--secondary-color) !important;
}

.btn-warning {
    background-color: var(--secondary-color) !important;
}

.border-success {
    border-color: var(--secondary-color) !important;
}

.text-success {
    color: var(--primary-color) !important;
}

.text-warning {
    color: var(--secondary-color) !important;
}



/* General Styles */
body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

html,
body {
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Bitter", serif;
    font-weight: 700;
    color: var(--primary-color);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

.section-title {
    position: relative;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 800;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-color);
    margin-bottom: 2rem;
}

/* Buttons */
.btn {
    border-radius: var(--border-radius);
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-success {
    background-color: var(--secondary-color);

    border-color: var(--accent-color);
}

.btn-success:hover,
.btn-success:focus {
    background-color: var(--primary-color);
    border-color: var(--secondary-color);
}

.btn-outline-light {
    color: #fff;
    border-color: #fff;
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Navigation */
.navbar {
    background-color: var(--white-color);
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
}

.navbar-brand img {
    margin-right: 10px;
}

.navbar-dark .navbar-nav .nav-link {
    color: var(--dark-color);
    font-weight: 600;
    padding: 0.5rem 1rem;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--dark-color);
}

.navbar-dark .navbar-nav .apply-btn {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: var(--border-radius);
    margin-left: 0.5rem;
}

.navbar-dark .navbar-nav .apply-btn:hover {
    background-color: #e6c200;
    color: var(--primary-color);
}

/* Hero Section */


.hero-section-new {
    position: relative;
    background-color: var(--light-color);
    color: var(--primary-color);
    padding: 10rem 0 2rem;
    overflow: hidden;
}

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

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

.hero-content {
    position: relative;
    padding: 2rem;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(255, 215, 0, 0.2);
    color: var(--secondary-color);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.hero-badge span {
    display: flex;
    align-items: center;
}

.hero-badge i {
    margin-right: 0.5rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--primary-color);
}

.text-highlight {
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

.text-highlight:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(255, 215, 0, 0.3);
    z-index: -1;
    border-radius: 4px;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 90%;
}

.hero-alert {
    display: flex;
    align-items: center;
    background-color: rgb(251, 194, 123, 0.4);
    ;
    border-left: 4px solid var(--primary-color);
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

.hero-alert .alert-icon {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-right: 1rem;
}

.hero-alert .alert-content {
    display: flex;
    flex-direction: column;
}

.hero-alert .alert-content strong {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-cta .btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.9rem;
}

.feature-item i {
    margin-right: 0.5rem;
    color: var(--secondary-color);
}

.hero-image-container {
    position: relative;
    padding: 1rem;
}

.hero-image-main {
    position: relative;
    z-index: 2;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border: 5px solid white;
    transform: rotate(2deg);
}

.hero-image-badge {
    position: absolute;
    display: flex;
    align-items: center;
    background-color: white;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 3;
}

.hero-image-badge.top {
    top: 0;
    right: 0;
    transform: translateY(-30%) rotate(5deg);
}

.hero-image-badge.bottom {
    bottom: 10%;
    left: 0;
    transform: translateX(-20%) rotate(-5deg);
}

.badge-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 0.75rem;
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-text span {
    font-size: 0.8rem;
    color: var(--gray-color);
}

.badge-text strong {
    font-size: 1.1rem;
    color: var(--primary-color);
}

.hero-image-shape {
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0.1;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 3;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: auto;
}

/* Old Hero Section (keeping for reference) */
.hero-section {
    position: relative;
    background: url('https://placehold.co/1920x1080/2F4F4F/FFFFFF?text=Australia+Hero+Background') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 12rem 0 8rem;
    margin-bottom: 2rem;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

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

.hero-section h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.hero-section h2 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.hero-section .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.hero-section .alert {
    display: inline-block;
    margin-bottom: 2rem;
}

.cta-buttons {
    margin-top: 1rem;
}

.navbar-toggler {
    background-color: var(--primary-color);
}

/* Page Header */
.page-header {
    position: relative;
    background: url('../assets/heroSection.webp') no-repeat top center;
    background-size: cover;
    color: white;
    padding: 13rem 0 4rem;
    margin-bottom: 2rem;
}

.page-header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item a {
    color: var(--secondary-color);
}

.breadcrumb-item.active {
    color: white;
}

/* Why Choose Section */
.benefits-card,
.visa-overview-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    height: 100%;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.benefits-card:hover,
.visa-overview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.benefits-card h3,
.visa-overview-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.benefits-list {
    list-style: none;
    padding-left: 0;
}

.benefits-list li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.benefits-list li i {
    color: var(--accent-color);
    position: absolute;
    left: 0;
    top: 5px;
}

.visa-overview-card h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.visa-overview-card ul {
    list-style: none;
    padding-left: 0;
}

.visa-overview-card ul li {
    margin-bottom: 0.5rem;
}

.visa-overview-card ul li i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

/* Eligibility Section */
.eligibility-list {
    list-style: none;
    padding-left: 0;
}

.eligibility-list li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.eligibility-list li i {
    color: var(--accent-color);
    position: absolute;
    left: 0;
    top: 5px;
}

.eligibility-cta {
    background-color: rgba(47, 79, 79, 0.05);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.eligibility-image img {
    border: 5px solid white;
}

/* Pricing Cards - Redesigned */
.pricing-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.pricing-card-ribbon {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--primary-color);
    color: white;
    padding: 5px 30px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
    z-index: 1;
}

.pricing-card.premium .pricing-card-ribbon {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.pricing-card-header {
    padding: 2.5rem 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a2e2e 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.pricing-card.premium .pricing-card-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #e6c200 100%);
    color: var(--primary-color);
}

.pricing-card-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    opacity: 0.6;
}

.pricing-card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
}

.pricing-card.premium .pricing-card-icon {
    background: rgba(47, 79, 79, 0.2);
}

.pricing-card-header h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.pricing-card.premium .pricing-card-header h3 {
    color: var(--primary-color);
}

.price {
    font-size: 1.2rem;
    font-weight: 400;
}

.price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: top;
    line-height: 1;
}

.price .amount {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.price .period {
    font-size: 1rem;
    opacity: 0.8;
}

.pricing-card-body {
    padding: 2rem;
}

.pricing-card-body ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.pricing-card-body ul li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.pricing-card-body ul li i {
    color: var(--accent-color);
    position: absolute;
    left: 0;
    top: 5px;
}

.pricing-card-body .note {
    font-size: 0.9rem;
    color: var(--gray-color);
    font-style: italic;
    margin-top: 1rem;
    padding: 0.75rem;
    background-color: rgba(47, 79, 79, 0.05);
    border-radius: 8px;
}

.pricing-card-body .btn {
    display: block;
    padding: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card.premium .pricing-card-body .btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--primary-color);
}

.pricing-card.premium .pricing-card-body .btn-primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
}

/* Why Australia Section */
.australia-benefits {
    list-style: none;
    padding-left: 0;
}

.australia-benefits li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.australia-benefits li i {
    color: var(--accent-color);
    position: absolute;
    left: 0;
    top: 5px;
}

.australia-gallery img {
    transition: var(--transition);
}

.australia-gallery img:hover {
    transform: scale(1.05);
}

/* Opportunities Section */
.opportunity-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    text-align: start;
    box-shadow: var(--box-shadow);
    height: 100%;
    transition: var(--transition);
}

.opportunity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.opportunity-card .icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.opportunity-card h4 {
    margin-bottom: 1rem;
}

.skills-gained {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.skills-gained span {
    background-color: var(--secondary-color);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.9rem;
}

.skills-gained span i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Testimonials Section */
.testimonial-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    height: 100%;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    position: relative;
    padding: 1.5rem;
    background-color: rgba(47, 79, 79, 0.05);
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
}

.testimonial-content:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 30px;
    border-width: 10px 10px 0;
    border-style: solid;
    border-color: rgba(47, 79, 79, 0.05) transparent;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    margin-right: 1rem;
    object-fit: cover;
}

.testimonial-author h5 {
    margin-bottom: 0.25rem;
}

.testimonial-author p {
    margin-bottom: 0;
    color: var(--gray-color);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(47, 79, 79, 0.5), rgba(47, 79, 79, 0.5)), url('../assets/operaHouse.webp') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 7rem;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section .section-title {
    color: white;
}

/* Contact Info Section */
.contact-method {
    text-align: center;
    padding: 1.5rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    height: 100%;
    transition: var(--transition);
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.contact-method i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-method h4 {
    margin-bottom: 0.5rem;
}

.contact-method a {
    color: var(--accent-color);
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: white;
}

.footer h5 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding-left: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-contact li i {
    margin-right: 0.5rem;
    color: var(--secondary-color);
}

.social-icons {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 1);
    border-radius: 50%;
    color: var(--accent-color);
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.footer-bottom-links {
    list-style: none;
    padding-left: 0;
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
    margin-bottom: 0;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: var(--secondary-color);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--secondary-color);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/* About Page Styles */
.about-section .about-image img {
    border: 5px solid white;
}

.value-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    height: 100%;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.value-card .icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.team-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.team-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-info h4 {
    margin-bottom: 0.25rem;
}

.team-info .designation {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-info .bio {
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--light-color);
    border-radius: 50%;
    color: var(--primary-color);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Services Page Styles */
.service-overview ul.service-features {
    list-style: none;
    padding-left: 0;
}

.service-overview ul.service-features li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-overview ul.service-features li i {
    color: var(--accent-color);
    position: absolute;
    left: 0;
    top: 5px;
}

.package-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    height: 100%;
    transition: var(--transition);
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.package-header {
    padding: 1.5rem;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.package-header h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.package-header .price {
    font-size: 1.5rem;
    font-weight: 700;
}

.package-body {
    padding: 2rem;
    text-align: center;
}

.package-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.package-body h4 {
    margin-bottom: 1.5rem;
}

.package-body ul {
    list-style: none;
    padding-left: 0;
    text-align: left;
    margin-bottom: 1.5rem;
}

.package-body ul li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.package-body ul li i {
    color: var(--accent-color);
    position: absolute;
    left: 0;
    top: 5px;
}

.package-body .ideal-for {
    font-style: italic;
    color: var(--gray-color);
    margin-bottom: 1.5rem;
}

.package-card.premium .package-header {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.package-card.premium .package-header h3 {
    color: var(--primary-color);
}

.process-timeline {
    position: relative;
    padding: 2rem 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: var(--primary-color);
}

.process-step {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.process-step:nth-child(odd) {
    flex-direction: row-reverse;
}

.process-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    z-index: 1;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.process-content {
    width: 45%;
    background-color: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.additional-service-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: start;
    box-shadow: var(--box-shadow);
    height: 100%;
    transition: var(--transition);
}

.additional-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.additional-service-card .icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.additional-service-card .price {
    font-weight: 700;
    color: var(--accent-color);
    margin-top: 1rem;
}

/* Contact Page Styles */
.contact-form-card,
.contact-info-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    height: 100%;
}

.contact-info-card .contact-methods {
    margin-top: 2rem;
}

.contact-info-card .contact-method {
    display: flex;
    align-items: flex-start;
    padding: 0;
    margin-bottom: 1.5rem;
    background: transparent;
    box-shadow: none;
    text-align: left;
}

.contact-info-card .contact-method:hover {
    transform: none;
}

.contact-info-card .contact-method .icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
    margin-bottom: 0;
}

.contact-info-card .contact-method .details {
    flex: 1;
}

.contact-info-card .contact-method h4 {
    margin-bottom: 0.25rem;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

/* Apply Page Styles */
.application-steps {
    position: relative;
}

.step-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--box-shadow);
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: -15px;
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-weight: 700;
}

.step-content h3 {
    margin-bottom: 1rem;
}

.step-features {
    background-color: rgba(47, 79, 79, 0.05);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 1.5rem;
}

.step-features ul {
    list-style: none;
    padding-left: 0;
}

.step-features ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.step-features ul li i {
    color: var(--accent-color);
    position: absolute;
    left: 0;
    top: 5px;
}

.step-note {
    background-color: rgba(255, 215, 0, 0.1);
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-top: 1.5rem;
    border-left: 4px solid var(--secondary-color);
}

.form-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
}

.speak-guide-section .contact-options {
    margin-top: 2rem;
}

.speak-guide-section .contact-option {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.speak-guide-section .contact-option i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 1.5rem;
}

.speak-guide-section .contact-option h5 {
    margin-bottom: 0.25rem;
}

.speak-guide-section .contact-option p {
    margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .hero-section {
        padding: 10rem 0 6rem;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section h2 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .process-timeline::before {
        left: 30px;
    }

    .process-step {
        flex-direction: row !important;
    }

    .process-number {
        left: 30px;
        transform: none;
    }

    .process-content {
        width: calc(100% - 60px);
        margin-left: 60px;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 12rem 0 4rem;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section h2 {
        font-size: 1.25rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 1rem;
    }
    .cta-section {
        background: linear-gradient(rgba(47, 79, 79, 0.5), rgba(47, 79, 79, 0.5)), url('../assets/operaHouse.webp') no-repeat center center;
        background-size: cover;
        color: white;
        padding: 2rem;
        position: relative;
    }
}

/* Animation Styles */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.fadeIn {
    animation-name: fadeIn;
}