/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.nav {
    padding: 1rem 0;
}

.nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #0f4c75 0%, #3282b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #3282b8;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #3282b8;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0f4c75 0%, #3282b8 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1518709268805-4e9042af2176?ixlib=rb-4.0.3&auto=format&fit=crop&w=2125&q=80') center/cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 76, 117, 0.85), rgba(50, 130, 184, 0.85));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.title-primary {
    display: block;
    font-size: 5rem;
    margin-bottom: 0.5rem;
}

.title-secondary {
    display: block;
    font-size: 2.5rem;
    font-weight: 300;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-details {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.detail-item i {
    font-size: 1.2rem;
    opacity: 0.8;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    opacity: 0.7;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.hero-scroll:hover {
    opacity: 1;
}

.hero-scroll i {
    display: block;
    margin-top: 0.5rem;
    animation: bounce 2s infinite;
}

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

/* Hero Features */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: white;
    opacity: 0.9;
}

.feature-item i {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #0f4c75 0%, #3282b8 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(50, 130, 184, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #3282b8;
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background: #3282b8;
    color: white;
    transform: translateY(-2px);
}

/* Special Demo Button Styling */
.btn-demo {
    background: linear-gradient(135deg, #4CAF50 0%, #2196F3 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    animation: pulse-demo 2s infinite;
    position: relative;
    overflow: hidden;
}

.btn-demo::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

.btn-demo:hover {
    background: linear-gradient(135deg, #45a049 0%, #1976D2 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
    animation: none;
}

@keyframes pulse-demo {
    0% {
        box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    }
    50% {
        box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
    }
    100% {
        box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    }
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    50% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #0f4c75 0%, #3282b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: #f8f9fa;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #666;
}

.about-features {
    list-style: none;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.about-features i {
    color: #3282b8;
    font-size: 1.2rem;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #3282b8;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

/* Schedule Section */
.schedule {
    padding: 6rem 0;
}

.schedule-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    padding: 1rem 2rem;
    border: none;
    background: transparent;
    color: #666;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
    background: #3282b8;
    color: white;
}

.day-schedule {
    display: none;
    max-width: 800px;
    margin: 0 auto;
}

.day-schedule.active {
    display: block;
}

.schedule-item {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.schedule-item:hover {
    transform: translateX(10px);
}

.time {
    font-size: 1.1rem;
    font-weight: 600;
    color: #3282b8;
    min-width: 150px;
    background: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-details h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.event-details p {
    color: #666;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.speaker {
    font-size: 0.9rem;
    color: #3282b8;
    font-weight: 600;
}

/* Speakers Section */
.speakers {
    padding: 6rem 0;
    background: #f8f9fa;
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.speaker-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.speaker-card:hover {
    transform: translateY(-10px);
}

.speaker-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #3282b8;
}

.speaker-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.speaker-info h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.speaker-title {
    color: #3282b8;
    font-weight: 600;
    margin-bottom: 1rem;
}

.speaker-bio {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.speaker-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.speaker-social a {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3282b8;
    transition: all 0.3s ease;
}

.speaker-social a:hover {
    background: #3282b8;
    color: white;
    transform: translateY(-2px);
}

/* Tickets Section */
.tickets {
    padding: 6rem 0;
}

.tickets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.ticket-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.ticket-card:hover {
    transform: translateY(-10px);
}

.ticket-card.featured {
    border-color: #3282b8;
    transform: scale(1.05);
}

.ticket-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #3282b8;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.ticket-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    color: #3282b8;
    margin-right: 0.5rem;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
}

.ticket-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.ticket-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.ticket-features i.fa-check {
    color: #28a745;
}

.ticket-features i.fa-times {
    color: #dc3545;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: #3282b8;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-item p {
    color: #666;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3282b8;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3282b8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #34495e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #3282b8;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Services Section - New Design */
.services {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23dee2e6" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
    pointer-events: none;
}

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

.services-container {
    display: grid;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(50, 130, 184, 0.1);
    position: relative;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(50, 130, 184, 0.02), rgba(15, 76, 117, 0.02));
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.service-item:hover::before {
    opacity: 1;
}

.service-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(50, 130, 184, 0.3);
}

.service-item:nth-child(even) {
    grid-template-columns: 1fr 1fr;
}

.service-item:nth-child(even) .service-visual {
    order: 2;
}

.service-item:nth-child(even) .service-content {
    order: 1;
}

.service-visual {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9) contrast(1.1);
}

.service-item:hover .service-image img {
    transform: scale(1.08);
    filter: brightness(1) contrast(1.2);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 76, 117, 0.85), rgba(50, 130, 184, 0.85));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item:hover .service-overlay {
    opacity: 1;
}

.service-overlay .service-icon {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(15px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    transform: scale(0.8) rotate(-10deg);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item:hover .service-overlay .service-icon {
    transform: scale(1) rotate(0deg);
}

.service-overlay .service-icon i {
    font-size: 2.2rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.service-content {
    padding: 3rem;
    position: relative;
}

.service-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 3rem;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #3282b8, #0f4c75);
    border-radius: 2px;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item:hover .service-content::before {
    opacity: 1;
    transform: translateX(0);
}

.service-content h3 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    margin-top: 1rem;
    color: #0f4c75;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.service-item:hover .service-content h3 {
    color: #3282b8;
}

.service-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.05rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.service-item:hover .service-content p {
    opacity: 1;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
}

.feature-tag {
    background: linear-gradient(135deg, #0f4c75, #3282b8);
    color: white;
    padding: 0.6rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(50, 130, 184, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.service-item:hover .feature-tag::before {
    left: 100%;
}

.feature-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(50, 130, 184, 0.3);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: #3282b8;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.8rem 0;
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: 0.3rem;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #3282b8, #0f4c75);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-link:hover::after {
    width: calc(100% - 2rem);
}

.service-link:hover {
    color: #0f4c75;
    transform: translateX(8px);
}

.service-link i {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
}

.service-link:hover i {
    transform: translateX(5px) scale(1.1);
}

/* Service Numbers and Badges */
.service-number {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f4c75;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item:hover .service-number {
    transform: scale(1.1) rotate(5deg);
    background: rgba(50, 130, 184, 0.95);
    color: white;
}

.service-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(50, 130, 184, 0.1), rgba(15, 76, 117, 0.1));
    color: #3282b8;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.8rem;
    border: 1px solid rgba(50, 130, 184, 0.2);
    transition: all 0.3s ease;
}

.service-item:hover .service-badge {
    background: linear-gradient(135deg, #3282b8, #0f4c75);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}

/* Team Section - Services Style */
.team {
    padding: 8rem 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23dee2e6" stroke-width="0.5" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

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

.team-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-item {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 1px solid #f0f0f0;
    display: block;
}

.team-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.team-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.team-item:nth-child(1)::before {
    background: linear-gradient(90deg, #4A90E2, #357ABD);
}

.team-item:nth-child(2)::before {
    background: linear-gradient(90deg, #FF6B9D, #C44569);
}

.team-item:nth-child(3)::before {
    background: linear-gradient(90deg, #00C851, #007E33);
}

.team-item:nth-child(4)::before {
    background: linear-gradient(90deg, #FF8A80, #FF5722);
}

.team-item:nth-child(5)::before {
    background: linear-gradient(90deg, #6C63FF, #4834D4);
}

.team-item:nth-child(6)::before {
    background: linear-gradient(90deg, #FF6B6B, #EE5A52);
}

.team-item:nth-child(7)::before {
    background: linear-gradient(90deg, #4ECDC4, #44A08D);
}

.team-item:nth-child(8)::before {
    background: linear-gradient(90deg, #45B7D1, #2E86AB);
}

.team-item:nth-child(9)::before {
    background: linear-gradient(90deg, #96CEB4, #6A994E);
}

.team-content {
    padding: 3rem;
    text-align: center;
}

.team-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.team-position {
    font-size: 1.1rem;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.team-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.team-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.expertise-tag {
    background: #f8f9fa;
    color: #495057;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #e9ecef;
}

/* Projects Section - Services Style */
.projects {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23dee2e6" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
    pointer-events: none;
}

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

.projects-container {
    display: grid;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.project-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(50, 130, 184, 0.1);
    position: relative;
}

.project-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(50, 130, 184, 0.02), rgba(15, 76, 117, 0.02));
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.project-item:hover::before {
    opacity: 1;
}

.project-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(50, 130, 184, 0.3);
}

.project-item:nth-child(even) {
    grid-template-columns: 1fr 1fr;
}

.project-item:nth-child(even) .project-visual {
    order: 2;
}

.project-item:nth-child(even) .project-content {
    order: 1;
}

.project-visual {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.project-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9) contrast(1.1);
}

.project-item:hover .project-image img {
    transform: scale(1.08);
    filter: brightness(1) contrast(1.2);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 76, 117, 0.85), rgba(50, 130, 184, 0.85));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-item:hover .project-overlay {
    opacity: 1;
}

.project-overlay .project-icon {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(15px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    transform: scale(0.8) rotate(-10deg);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-item:hover .project-overlay .project-icon {
    transform: scale(1) rotate(0deg);
}

.project-overlay .project-icon i {
    font-size: 2.2rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.project-number {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f4c75;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-item:hover .project-number {
    transform: scale(1.1) rotate(5deg);
    background: rgba(50, 130, 184, 0.95);
    color: white;
}

.project-content {
    padding: 3rem;
    position: relative;
}

.project-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 3rem;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #3282b8, #0f4c75);
    border-radius: 2px;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-item:hover .project-content::before {
    opacity: 1;
    transform: translateX(0);
}

.project-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(50, 130, 184, 0.1), rgba(15, 76, 117, 0.1));
    color: #3282b8;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.8rem;
    border: 1px solid rgba(50, 130, 184, 0.2);
    transition: all 0.3s ease;
}

.project-item:hover .project-badge {
    background: linear-gradient(135deg, #3282b8, #0f4c75);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}

.project-content h3 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    margin-top: 1rem;
    color: #0f4c75;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.project-item:hover .project-content h3 {
    color: #3282b8;
}

.project-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.05rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.project-item:hover .project-description {
    opacity: 1;
}

.project-achievements {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.achievement-tag {
    background: linear-gradient(135deg, #0f4c75, #3282b8);
    color: white;
    padding: 0.6rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(50, 130, 184, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.achievement-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.project-item:hover .achievement-tag::before {
    left: 100%;
}

.achievement-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(50, 130, 184, 0.3);
}

.project-metrics {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #3282b8;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.metric-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Team expand/collapse functionality */
.team-hidden {
    display: none;
}

.team-expanded .team-hidden {
    display: block;
}

.team-placeholder {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px dashed #dee2e6;
    opacity: 0.8;
}

.team-placeholder::before {
    background: linear-gradient(90deg, #6c757d, #495057);
}

.team-placeholder .team-content {
    text-align: center;
    opacity: 0.7;
}

.team-placeholder .team-badge {
    background: linear-gradient(135deg, #6c757d, #495057);
}

.team-placeholder h3 {
    color: #6c757d;
}

.team-placeholder .team-position {
    color: #6c757d;
}

.team-placeholder .team-description {
    color: #6c757d;
}

.team-cta {
    margin-top: 1.5rem;
    text-align: center;
}

.team-cta .btn {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: inline-block;
}

.team-cta .btn-primary {
    background: linear-gradient(135deg, #1e90ff 0%, #00bfff 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(30, 144, 255, 0.3);
    font-weight: 600;
}

.team-cta .btn-primary:hover {
    background: linear-gradient(135deg, #0080ff 0%, #00a8ff 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 144, 255, 0.4);
}

/* Team Expand Button Styles */
.team-expand-section {
    margin-top: 3rem;
    text-align: center;
    padding: 2rem 0;
}

.team-expand-btn {
    background: linear-gradient(135deg, #0f4c75 0%, #3282b8 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.team-expand-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(50, 130, 184, 0.3);
    background: linear-gradient(135deg, #0a3d5c 0%, #2874a6 100%);
}

.team-expand-btn:active {
    transform: translateY(0);
}

.team-expand-btn .expand-icon,
.team-expand-btn .collapse-icon {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.team-expand-btn:hover .expand-icon {
    transform: translateY(2px);
}

.team-expand-btn:hover .collapse-icon {
    transform: translateY(-2px);
}

/* FAQ Page Styles */
.faq-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
}

.faq-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.faq-hero-content p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.faq-content {
    padding: 6rem 0;
    background: #f8f9fa;
}

.faq-section {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.faq-section-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f1f3f4;
}

.faq-section-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.faq-section-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.faq-section-header p {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 500px;
    margin: 0 auto;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #f8f9fa;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    flex: 1;
    padding-right: 1rem;
}

.faq-toggle {
    color: #667eea;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.faq-item.active .faq-answer {
    padding: 1.5rem 2rem;
    max-height: 500px;
}

.faq-answer p {
    color: #495057;
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

.faq-cta {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-actions .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-actions .btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
}

.cta-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.cta-actions .btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.cta-actions .btn-secondary:hover {
    background: white;
    color: #2c3e50;
    transform: translateY(-2px);
}

/* Navigation active state for FAQ */
.nav-menu a.active {
    color: #667eea;
    font-weight: 600;
}

/* Logo link styling */
.logo a {
    color: inherit;
    text-decoration: none;
}

/* Responsive Design for FAQ */
@media (max-width: 768px) {
    .faq-hero {
        padding: 6rem 0 3rem;
    }
    
    .faq-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .faq-hero-content p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .faq-content {
        padding: 4rem 0;
    }
    
    .faq-section {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
        border-radius: 16px;
    }
    
    .faq-section-header h2 {
        font-size: 1.8rem;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1.25rem 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .team-expand-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .team-expand-section {
        margin-top: 2rem;
        padding: 1.5rem 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .title-primary {
        font-size: 2.5rem;
    }
    
    .title-secondary {
        font-size: 1.5rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .tickets-grid {
        grid-template-columns: 1fr;
    }
    
    .team-expand-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* Careers Page Styles */
.careers-hero {
    background: linear-gradient(135deg, #0f4c75 0%, #3282b8 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.careers-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.careers-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.careers-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.6;
}

.careers-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #bbe1fa;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Why Join Section */
.why-join {
    padding: 80px 0;
    background: #f8f9fa;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0f4c75 0%, #3282b8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.benefit-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #0f4c75;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

/* Open Positions Section */
.open-positions {
    padding: 80px 0;
    background: white;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.job-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #3282b8;
}

.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #0f4c75 0%, #3282b8 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.job-card:hover::before {
    transform: scaleX(1);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.job-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #0f4c75;
    margin-bottom: 0.5rem;
}

.job-type {
    background: #e8f4f8;
    color: #3282b8;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.job-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.job-location,
.job-experience {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.job-location i,
.job-experience i {
    color: #3282b8;
}

.job-description {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: #555;
}

.job-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.skill-tag {
    background: #f0f8ff;
    color: #0f4c75;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #e1f0ff;
}

.job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.job-salary {
    font-weight: 600;
    color: #0f4c75;
    font-size: 1.1rem;
}

.apply-btn {
    background: linear-gradient(135deg, #0f4c75 0%, #3282b8 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(50, 130, 184, 0.3);
}

/* Application Process Section */
.application-process {
    padding: 80px 0;
    background: #f8f9fa;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
}

.step-item:nth-child(even) {
    margin-top: 2rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0f4c75 0%, #3282b8 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 auto 1rem;
}

.step-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #0f4c75;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

/* Apply Section */
.apply-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f4c75 0%, #3282b8 100%);
    color: white;
    text-align: center;
}

.apply-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.apply-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.apply-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.apply-actions .btn {
    padding: 0.75rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.apply-actions .btn-primary {
    background: white;
    color: #0f4c75;
}

.apply-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.apply-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.apply-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.apply-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
}

.apply-info p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.apply-info p:last-child {
    margin-bottom: 0;
}

.apply-info strong {
    color: #bbe1fa;
}

/* Demo Page Styles */
.demo-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.demo-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.demo-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.demo-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.6;
}

.demo-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.benefit-point {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.benefit-point i {
    color: #90EE90;
    font-size: 1.1rem;
}

/* Demo Booking Section */
.demo-booking {
    padding: 80px 0;
    background: #f8f9fa;
}

.demo-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.demo-info h2 {
    font-size: 2.2rem;
    color: #0f4c75;
    margin-bottom: 2rem;
    font-weight: 600;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-text h3 {
    font-size: 1.3rem;
    color: #0f4c75;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.info-text p {
    color: #666;
    line-height: 1.6;
}

/* Demo Form Styles */
.booking-form {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.booking-form h2 {
    font-size: 1.8rem;
    color: #0f4c75;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

.form-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 1rem;
}

.form-section h3 {
    font-size: 1.2rem;
    color: #0f4c75;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102,126, 234, 0.1);
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.checkbox-label:hover {
    background-color: #f8f9fa;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

.submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.form-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Demo Testimonials */
.demo-testimonials {
    padding: 80px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
}

.author-name {
    font-weight: 600;
    color: #0f4c75;
    margin-bottom: 0.25rem;
}

.author-position {
    font-size: 0.9rem;
    color: #666;
}

/* Responsive Design for Demo Page */
@media (max-width: 768px) {
    .demo-title {
        font-size: 2.2rem;
    }
    
    .demo-subtitle {
        font-size: 1rem;
    }
    
    .demo-benefits {
        flex-direction: column;
        align-items: center;
    }
    
    .demo-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .booking-form {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .info-icon {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .demo-hero {
        padding: 6rem 0 3rem;
    }
    
    .demo-title {
        font-size: 1.8rem;
    }
    
    .benefit-point {
        width: 100%;
        justify-content: center;
    }
    
    .booking-form {
        padding: 1.5rem;
    }
    
    .demo-booking {
        padding: 4rem 0;
    }
}

/* Navigation Demo Button Styling */
.nav-menu .btn-demo {
    margin-left: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-menu .btn-demo:hover {
    text-decoration: none;
}

@media (max-width: 768px) {
    .nav-menu .btn-demo {
        margin-left: 0;
        margin-top: 0.5rem;
        display: block;
        text-align: center;
    }
}
