/* 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;
}

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

/* Scroll Progress Bar */
.scroll-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(44, 90, 160, 0.1);
    overflow: hidden;
}

.scroll-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #2c5aa0, #00a86b);
    width: 0%;
    transition: width 0.1s ease;
    position: relative;
}

.scroll-progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5aa0;
}

.nav-logo i {
    margin-right: 10px;
    font-size: 1.8rem;
}

.logo-img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    border-radius: 50%;
    transition: transform 0.3s ease;
    object-fit: contain;
    max-width: 100%;
    height: auto;
}

/* CSS Church Icon as fallback */
.css-church-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.css-church-icon::before {
    content: '';
    width: 20px;
    height: 20px;
    background: white;
    position: relative;
    border-radius: 2px;
}

.css-church-icon::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 8px solid white;
}

.css-church-icon .cross {
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 6px;
    background: white;
}

.css-church-icon .cross::before {
    content: '';
    position: absolute;
    top: 2px;
    left: -1px;
    width: 4px;
    height: 2px;
    background: white;
}

/* Hero section church icon */
.hero-logo-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.hero-logo-icon::before {
    width: 60px;
    height: 60px;
}

.hero-logo-icon::after {
    top: 24px;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 24px solid white;
}

.hero-logo-icon .cross {
    top: 6px;
    width: 6px;
    height: 18px;
}

.hero-logo-icon .cross::before {
    top: 6px;
    left: -3px;
    width: 12px;
    height: 6px;
}

/* Footer church icon */
.footer-logo-icon {
    width: 50px;
    height: 50px;
    margin-right: 15px;
}

.footer-logo-icon::before {
    width: 25px;
    height: 25px;
}

.footer-logo-icon::after {
    top: 10px;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 10px solid white;
}

.footer-logo-icon .cross {
    top: 3px;
    width: 3px;
    height: 8px;
}

.footer-logo-icon .cross::before {
    top: 3px;
    left: -1px;
    width: 5px;
    height: 3px;
}

/* Hover effects for church icons */
.css-church-icon:hover {
    transform: scale(1.1);
}

.logo-img:hover {
    transform: scale(1.1);
}

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

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

.nav-link:hover {
    color: #2c5aa0;
}

/* Active Navigation State */
.nav-link.active {
    color: #2c5aa0;
    background: rgba(44, 90, 160, 0.1);
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, #2c5aa0, #00a86b);
    border-radius: 1px;
}

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

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

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

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::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 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

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

.hero-logo {
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.1s both;
}

.hero-logo-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    object-fit: contain;
    max-width: 100%;
    height: auto;
}

.hero-slim {
    height: 60vh;
    min-height: 420px;
}

.badge-row {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(8px);
}

.pill-badge.subtle {
    background: rgba(255, 255, 255, 0.12);
    color: #e6ecff;
}

.hero-logo-img:hover {
    transform: scale(1.05);
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #f8f9fa;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-details {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

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

.detail-item i {
    font-size: 1.3rem;
    color: #f8f9fa;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.8s both;
}

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

.btn-primary {
    background: #ff6b6b;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.btn-primary:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
}

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

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

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

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

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 1rem;
}

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

/* About Section */
.about {
    padding: 100px 0;
    background: #f8f9fa;
}

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

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

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

.features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.feature i {
    font-size: 2rem;
    color: #2c5aa0;
    margin-top: 0.5rem;
}

.feature h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.feature p {
    color: #666;
    margin: 0;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.2rem;
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.about-logo-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    object-fit: contain;
    max-width: 100%;
    height: auto;
}

.about-logo-img:hover {
    transform: scale(1.05);
}

/* Schedule Section */
.schedule {
    padding: 100px 0;
    background: white;
}

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

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 60px;
    top: 80px;
    width: 2px;
    height: calc(100% + 2rem);
    background: #e0e0e0;
}

.timeline-date {
    flex-shrink: 0;
    width: 120px;
    text-align: center;
    background: #2c5aa0;
    color: white;
    border-radius: 15px;
    padding: 1rem;
    position: relative;
    z-index: 2;
}

.timeline-date .day {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

.timeline-date .month {
    display: block;
    font-size: 1rem;
    opacity: 0.9;
}

.timeline-content {
    flex: 1;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: #2c5aa0;
    margin-bottom: 1.5rem;
}

.schedule-events {
    display: grid;
    gap: 1rem;
}

.event {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: white;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.event:hover {
    transform: translateX(5px);
}

.event .time {
    font-weight: 600;
    color: #2c5aa0;
    min-width: 80px;
}

.event .event-title {
    color: #333;
    font-weight: 500;
}

/* Location Section */
.location {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.location-info h3 {
    font-size: 2rem;
    color: #2c5aa0;
    margin-bottom: 2rem;
}

.address {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.address i {
    font-size: 1.5rem;
    color: #2c5aa0;
    margin-top: 0.2rem;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    color: #333;
}

.contact-item i {
    color: #2c5aa0;
    width: 20px;
}

.contact-item span {
    color: #333;
    font-weight: 500;
}

.location-features h4 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.location-features ul {
    list-style: none;
}

.location-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #555;
}

.location-features i {
    color: #28a745;
}

.map-container {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

#map {
    width: 100%;
    height: 100%;
}

/* Embedded Google Maps Styling */
.embed-map-fixed {
    position: relative;
    text-align: right;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.embed-map-container {
    overflow: hidden;
    background: none !important;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.embed-map-frame {
    width: 100% !important;
    height: 100% !important;
    border: none;
    border-radius: 15px;
}

/* Registration Section */
.register {
    padding: 100px 0;
    background: white;
}

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

.registration-info h3 {
    font-size: 2rem;
    color: #2c5aa0;
    margin-bottom: 2rem;
}

.pricing {
    margin-bottom: 2rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    margin-bottom: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #2c5aa0;
}

.price-item h4 {
    color: #333;
    margin: 0;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5aa0;
}

.registration-benefits h4 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.registration-benefits ul {
    list-style: none;
}

.registration-benefits li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #555;
}

.registration-benefits i {
    color: #28a745;
}

.registration-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
    font-weight: 600;
}

.form-header p {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

.registration-requirements {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border-left: 4px solid #2c5aa0;
}

.registration-requirements h4 {
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.registration-requirements ul {
    list-style: none;
    padding: 0;
}

.registration-requirements li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: #333;
    font-size: 1rem;
}

.registration-requirements i {
    color: #28a745;
    font-size: 1.1rem;
}

.registration-button-container {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.btn-register {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
    background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
    color: white;
    border: none;
    cursor: pointer;
}

.btn-register:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6);
    background: linear-gradient(135deg, #ff5252 0%, #ff1744 100%);
    color: white;
    text-decoration: none;
}

.btn-register i {
    font-size: 1.1rem;
}

.registration-note {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    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: #2c5aa0;
}

.btn-full {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

/* Payment Information - Professional Table Design */
.payment-info {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.payment-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2c5aa0, #00a86b, #ff6b6b);
}

.payment-header {
    text-align: center;
    margin-bottom: 3rem;
}

.payment-header h3 {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
    font-size: 2.2rem;
    font-weight: 700;
    position: relative;
}

.payment-header h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #2c5aa0, #00a86b);
    border-radius: 2px;
}

.payment-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin: 0 0 2rem 0;
}

.btn-view-payment {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
    background: linear-gradient(135deg, #2c5aa0 0%, #4a7bc8 100%);
    color: white;
    border: none;
    cursor: pointer;
}

.btn-view-payment:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.4);
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5aa0 100%);
}

.btn-view-payment i {
    font-size: 1rem;
}

/* Payment Modal Styling */
.payment-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.payment-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 90vw;
    max-height: 90vh;
    width: 1000px;
    overflow: hidden;
    animation: slideIn 0.3s ease;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, #2c5aa0 0%, #4a7bc8 100%);
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h3 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
}

.modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.modal-body {
    padding: 2.5rem;
    max-height: 60vh;
    overflow-y: auto;
}

.modal-footer {
    padding: 1.5rem 2.5rem;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    display: flex;
    justify-content: flex-end;
}

.btn-secondary {
    background: #6c757d;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-1px);
}

/* Modal Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Modal Responsive Design - Enhanced for Mobile */
@media (max-width: 768px) {
    .modal-content {
        width: 95vw;
        max-height: 95vh;
        margin: 0.5rem;
        border-radius: 15px;
    }
    
    .modal-header {
        padding: 1.5rem 1rem;
        border-radius: 15px 15px 0 0;
    }
    
    .modal-header h3 {
        font-size: 1.4rem;
        font-weight: 600;
    }
    
    .modal-close {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .modal-body {
        padding: 1.5rem 1rem;
        max-height: calc(95vh - 140px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .modal-footer {
        padding: 1rem;
        border-radius: 0 0 15px 15px;
    }
    
    .payment-table {
        font-size: 0.85rem;
        border-radius: 10px;
        overflow: hidden;
    }
    
    .payment-table th,
    .payment-table td {
        padding: 0.7rem 0.4rem;
        vertical-align: top;
    }
    
    .payment-table th {
        font-size: 0.8rem;
        font-weight: 600;
        background: #f8f9fa;
    }
    
    .method-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
    }
    
    .method-icon {
        font-size: 1.8rem;
        margin-bottom: 0.3rem;
    }
    
    .method-details h4 {
        font-size: 0.9rem;
        margin: 0;
    }
    
    .method-type {
        font-size: 0.75rem;
    }
    
    .detail-item {
        flex-direction: column;
        gap: 0.2rem;
        margin-bottom: 0.5rem;
    }
    
    .detail-label {
        font-size: 0.75rem;
        font-weight: 600;
        color: #666;
    }
    
    .detail-value {
        font-size: 0.8rem;
        font-weight: 500;
        word-break: break-all;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.2rem;
    }
    
    .contact-item i {
        font-size: 0.9rem;
    }
    
    .contact-item span {
        font-size: 0.8rem;
    }
    
    .notes-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .note-item {
        padding: 1rem;
        border-radius: 10px;
    }
    
    .note-icon {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .note-content h5 {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .note-content p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
}

/* iPhone and Android Specific Optimizations */
@media (max-width: 480px) {
    .modal-content {
        width: 100vw;
        height: 100vh;
        border-radius: 0;
        max-height: 100vh;
        margin: 0;
    }
    
    .modal-header {
        padding: 1rem 0.8rem;
        border-radius: 0;
        position: sticky;
        top: 0;
        z-index: 10;
    }
    
    .modal-header h3 {
        font-size: 1.2rem;
        font-weight: 700;
    }
    
    .modal-close {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
        background: rgba(255, 255, 255, 0.3);
    }
    
    .modal-body {
        padding: 1rem 0.8rem;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 2rem;
    }
    
    .modal-footer {
        padding: 0.8rem;
        position: sticky;
        bottom: 0;
        background: #f8f9fa;
        border-top: 1px solid #e9ecef;
        border-radius: 0;
    }
    
    .btn-secondary {
        width: 100%;
        padding: 0.8rem;
        font-size: 0.9rem;
        border-radius: 8px;
    }
    
    /* Table becomes card layout on very small screens */
    .payment-table {
        display: none;
    }
    
    .payment-table-container {
        display: block;
    }
    
    .payment-table-container::before {
        content: "Payment Methods";
        display: block;
        font-size: 1.1rem;
        font-weight: 700;
        color: #2c5aa0;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    /* Card-based layout for mobile */
    .payment-method-card {
        background: white;
        border: 2px solid #e9ecef;
        border-radius: 12px;
        padding: 1rem;
        margin-bottom: 1rem;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .payment-method-card.bank-card {
        border-left: 4px solid #2c5aa0;
    }
    
    .payment-method-card.gcash-card {
        border-left: 4px solid #00a86b;
    }
    
    .card-header {
        display: flex;
        align-items: center;
        gap: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .card-icon {
        font-size: 2rem;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: #f8f9fa;
    }
    
    .bank-card .card-icon {
        background: rgba(44, 90, 160, 0.1);
    }
    
    .gcash-card .card-icon {
        background: rgba(0, 168, 107, 0.1);
    }
    
    .card-title {
        font-size: 1.1rem;
        font-weight: 700;
        color: #2c5aa0;
        margin: 0;
    }
    
    .card-subtitle {
        font-size: 0.8rem;
        color: #666;
        margin: 0;
    }
    
    .card-details {
        margin-bottom: 1rem;
    }
    
    .card-detail-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 0;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .card-detail-item:last-child {
        border-bottom: none;
    }
    
    .card-detail-label {
        font-size: 0.8rem;
        color: #666;
        font-weight: 500;
    }
    
    .card-detail-value {
        font-size: 0.85rem;
        font-weight: 600;
        color: #333;
        text-align: right;
        word-break: break-all;
    }
    
    .card-contact {
        background: #f8f9fa;
        border-radius: 8px;
        padding: 0.8rem;
    }
    
    .card-contact-item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 0.5rem;
    }
    
    .card-contact-item:last-child {
        margin-bottom: 0;
    }
    
    .card-contact-item i {
        font-size: 0.9rem;
        color: #2c5aa0;
        width: 16px;
    }
    
    .card-contact-item span {
        font-size: 0.8rem;
        color: #333;
    }
    
    /* Notes section mobile optimization */
    .payment-notes-section {
        margin-top: 1.5rem;
    }
    
    .payment-notes-section h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .note-item {
        background: #f8f9fa;
        border: 1px solid #e9ecef;
        border-radius: 10px;
        padding: 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .note-item:last-child {
        margin-bottom: 0;
    }
    
    .note-content h5 {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
        color: #2c5aa0;
    }
    
    .note-content p {
        font-size: 0.75rem;
        line-height: 1.3;
        margin: 0;
    }
    
    .email-link {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
        border-radius: 4px;
    }
}

/* Landscape orientation for mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .modal-content {
        width: 95vw;
        height: 95vh;
        max-height: 95vh;
    }
    
    .modal-body {
        max-height: calc(95vh - 120px);
    }
    
    .payment-table {
        font-size: 0.75rem;
    }
    
    .payment-table th,
    .payment-table td {
        padding: 0.5rem 0.3rem;
    }
}

/* High DPI displays (Retina, etc.) */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .modal-content {
        border: 0.5px solid rgba(0, 0, 0, 0.1);
    }
    
    .payment-table {
        border: 0.5px solid #e9ecef;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .modal-close {
        min-width: 44px;
        min-height: 44px;
    }
    
    .btn-secondary {
        min-height: 44px;
    }
    
    .payment-table th,
    .payment-table td {
        padding: 1rem 0.5rem;
    }
}

/* Professional Table Styling */
.payment-table-container {
    background: white;
    border-radius: 15px;
}

/* Hide mobile cards on desktop */
.payment-method-card {
    display: none;
}

/* Show mobile cards only on small screens */
@media (max-width: 480px) {
    .payment-method-card {
        display: block;
    }
}

.payment-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.payment-table thead {
    background: linear-gradient(135deg, #2c5aa0 0%, #4a7bc8 100%);
}

.payment-table th {
    color: white;
    padding: 1.5rem 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.method-column {
    width: 25%;
}

.details-column {
    width: 45%;
}

.contact-column {
    width: 30%;
}

.payment-table tbody tr {
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.payment-table tbody tr:hover {
    background: rgba(44, 90, 160, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.payment-table tbody tr:last-child {
    border-bottom: none;
}

.payment-table td {
    padding: 1.5rem 1rem;
    vertical-align: top;
}

/* Method Cell Styling */
.method-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.method-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.bank-icon {
    background: linear-gradient(135deg, #2c5aa0, #4a7bc8);
    color: white;
}

.gcash-icon {
    background: linear-gradient(135deg, #00a86b, #00d4aa);
    color: white;
}

.method-details h4 {
    margin: 0 0 0.3rem 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

.method-type {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Details Cell Styling */
.account-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.detail-label {
    font-weight: 600;
    color: #555;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-value {
    font-weight: 500;
    color: #333;
    font-size: 1rem;
    font-family: 'Courier New', monospace;
    background: rgba(44, 90, 160, 0.1);
    padding: 0.5rem;
    border-radius: 6px;
    border-left: 3px solid #2c5aa0;
}

/* Contact Cell Styling */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #333;
    font-size: 0.95rem;
}

.contact-item i {
    color: #2c5aa0;
    width: 16px;
    text-align: center;
}

/* Payment Notes Section */
.payment-notes-section {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.payment-notes-section h4 {
    color: #2c5aa0;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
}

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

.note-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #2c5aa0;
    transition: all 0.3s ease;
}

.note-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    background: #ffffff;
}

.note-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.note-content h5 {
    margin: 0 0 0.5rem 0;
    color: #2c5aa0;
    font-size: 1.1rem;
    font-weight: 600;
}

.note-content p {
    margin: 0;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Payment Method Cards */
.payment-method-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.payment-method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: #2c5aa0;
}

.payment-method-card.bank-card {
    border-left: 4px solid #2c5aa0;
}

.payment-method-card.gcash-card {
    border-left: 4px solid #00a86b;
    background: linear-gradient(135deg, #f8fff8 0%, #e8f5e8 100%);
}

.payment-method-card.notes-card {
    border-left: 4px solid #ff6b6b;
    background: linear-gradient(135deg, #fff8f8 0%, #f8e8e8 100%);
}

/* Payment Section Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.payment-info {
    animation: slideInUp 0.8s ease-out;
}

.bank-info {
    animation: slideInUp 0.8s ease-out 0.2s both;
}

.gcash-info {
    animation: slideInUp 0.8s ease-out 0.4s both;
}

.payment-notes {
    animation: slideInUp 0.8s ease-out 0.6s both;
}

/* Payment Method Icons */
.payment-method-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin: 0 auto 1rem;
}

.bank-icon {
    background: linear-gradient(135deg, #2c5aa0, #4a7bc8);
    color: white;
}

.gcash-icon {
    background: linear-gradient(135deg, #00a86b, #00d4aa);
    color: white;
}

.notes-icon {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: white;
}

/* Copy to Clipboard Button */
.copy-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.copy-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.bank-info .copy-btn {
    background: rgba(44, 90, 160, 0.1);
    border: 1px solid rgba(44, 90, 160, 0.3);
    color: #2c5aa0;
}

.bank-info .copy-btn:hover {
    background: rgba(44, 90, 160, 0.2);
}

/* Email Link Styling */
.email-link {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 600;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    background: rgba(44, 90, 160, 0.1);
    transition: all 0.3s ease;
    display: inline-block;
    margin-left: 0.2rem;
}

.email-link:hover {
    background: rgba(44, 90, 160, 0.2);
    color: #1e3a5f;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(44, 90, 160, 0.2);
}

.email-link:active {
    transform: translateY(0);
}

/* Accommodation Information */
.accommodation-info {
    margin-top: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.accommodation-info h3 {
    color: #2c5aa0;
    margin-bottom: 1.5rem;
    text-align: center;
}

.accommodation-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.free-accommodation, .hotel-info {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.free-accommodation h4, .hotel-info h4 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.free-accommodation p, .hotel-info p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.6;
}

.free-accommodation ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.free-accommodation li {
    margin-bottom: 0.5rem;
    color: #555;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.free-accommodation li::before {
    content: "•";
    color: #2c5aa0;
    font-weight: bold;
}

.accommodation-requirements {
    background: #e8f4fd;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #2c5aa0;
}

.accommodation-requirements h5 {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.accommodation-requirements ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accommodation-requirements li {
    margin-bottom: 0.3rem;
    color: #555;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.accommodation-requirements li::before {
    content: "✓";
    color: #28a745;
    font-weight: bold;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo i {
    margin-right: 10px;
    font-size: 1.8rem;
    color: #3498db;
}

.footer-logo-img {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    border-radius: 50%;
    transition: transform 0.3s ease;
    object-fit: contain;
    max-width: 100%;
    height: auto;
}

.footer-logo-img:hover {
    transform: scale(1.1);
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #3498db;
}

.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: white;
}

.footer-section .contact-item {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.8rem;
    margin-bottom: 0.8rem;
}

.footer-section .contact-item span {
    color: white;
    font-weight: 500;
}

.footer-section .contact-item i {
    color: #3498db;
    width: 20px;
}

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

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

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

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

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Enhanced Mobile Navigation */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        z-index: 1000;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        padding: 1rem 0;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .nav-link.active {
        background: rgba(44, 90, 160, 0.1);
        color: #2c5aa0;
        font-weight: 600;
        border-radius: 0;
        padding: 1rem 0;
    }
    
    .nav-link.active::after {
        display: none;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    /* Mobile Hero Section */
    .hero {
        padding: 0 20px;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .hero-logo-img {
        width: 80px;
        height: 80px;
    }
    
    .about-logo-img {
        width: 100px;
        height: 100px;
    }
    
    .footer-logo-img {
        width: 40px;
        height: 40px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-details {
        flex-direction: column;
        gap: 0.8rem;
        margin-bottom: 2rem;
    }
    
    .detail-item {
        font-size: 1rem;
        justify-content: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    /* Mobile Section Headers */
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    /* Mobile About Section */
    .about {
        padding: 60px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text h3 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    
    .about-text p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .features {
        gap: 1rem;
    }
    
    .feature {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .feature i {
        font-size: 1.8rem;
        margin-top: 0;
    }
    
    .image-placeholder {
        height: 250px;
        font-size: 1rem;
    }
    
    .image-placeholder i {
        font-size: 3rem;
    }
    
    .about-logo-img {
        width: 70px;
        height: 70px;
    }
    
    .footer-logo-img {
        width: 35px;
        height: 35px;
    }
    
    .logo-img {
        width: 35px;
        height: 35px;
    }
    
    /* Mobile Schedule Section */
    .schedule {
        padding: 60px 0;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .timeline-item::after {
        display: none;
    }
    
    .timeline-date {
        width: 100%;
        max-width: 150px;
        margin: 0 auto;
        padding: 0.8rem;
    }
    
    .timeline-date .day {
        font-size: 1.5rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .timeline-content h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .event {
        padding: 0.6rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .event .time {
        font-size: 0.9rem;
        min-width: auto;
    }
    
    /* Mobile Location Section */
    .location {
        padding: 60px 0;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .location-info h3 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .address {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .contact-item {
        padding: 0.8rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .map-container {
        height: 300px;
    }
    
    .embed-map-fixed {
        width: 100%;
        height: 100%;
    }
    
    .embed-map-container {
        width: 100%;
        height: 100%;
    }
    
    .embed-map-frame {
        width: 100% !important;
        height: 100% !important;
    }
    
    /* Mobile Registration Section */
    .register {
        padding: 60px 0;
    }
    
    .registration-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .registration-info h3 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .price-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .price-item h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .price {
        font-size: 1.3rem;
    }
    
    .registration-form {
        padding: 1.5rem;
    }
    
    .form-header h3 {
        font-size: 1.5rem;
    }
    
    .form-header p {
        font-size: 0.9rem;
    }
    
    .registration-requirements {
        padding: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .registration-requirements h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .registration-requirements li {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }
    
    .registration-button-container {
        padding: 1.5rem;
    }
    
    .btn-register {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .registration-note {
        font-size: 0.8rem;
    }
    
    .form-group {
        margin-bottom: 1.2rem;
    }
    
    .form-group label {
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px;
        font-size: 0.95rem;
    }
    
    .btn-full {
        padding: 12px;
        font-size: 1rem;
    }
    
    /* Mobile Payment & Accommodation */
    .payment-info {
        margin-top: 2rem;
        padding: 2rem;
    }
    
    .payment-header h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .payment-subtitle {
        font-size: 1rem;
    }
    
    .payment-table-container {
        overflow-x: auto;
        margin-bottom: 2rem;
    }
    
    .payment-table {
        min-width: 600px;
    }
    
    .payment-table th {
        padding: 1rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .payment-table td {
        padding: 1rem 0.8rem;
    }
    
    .method-info {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .method-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .method-details h4 {
        font-size: 1rem;
    }
    
    .method-type {
        font-size: 0.8rem;
    }
    
    .detail-label {
        font-size: 0.8rem;
    }
    
    .detail-value {
        font-size: 0.9rem;
        padding: 0.4rem;
    }
    
    .contact-item {
        font-size: 0.9rem;
    }
    
    .payment-notes-section {
        padding: 1.5rem;
    }
    
    .payment-notes-section h4 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .notes-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .note-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .note-content h5 {
        font-size: 1rem;
    }
    
    .note-content p {
        font-size: 0.9rem;
    }
    
    .email-link {
        font-size: 0.9rem;
        padding: 0.15rem 0.3rem;
        margin-left: 0.1rem;
    }
    
    .accommodation-info {
        margin-top: 2rem;
        padding: 1.5rem;
    }
    
    .accommodation-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .free-accommodation, .hotel-info {
        padding: 1.2rem;
    }
    
    /* Mobile Footer */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
        margin-bottom: 1.5rem;
    }
    
    .footer-logo-img {
        width: 40px;
        height: 40px;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 1.5rem;
    }
    
    .footer-section .contact-item {
        padding: 0.6rem;
        margin-bottom: 0.6rem;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    /* Navigation */
    .nav-container {
        padding: 0 15px;
        height: 60px;
    }
    
    .nav-logo {
        font-size: 1.2rem;
    }
    
    .logo-img {
        width: 35px;
        height: 35px;
    }
    
    .nav-menu {
        top: 60px;
        padding: 1.5rem 0;
    }
    
    /* Hero Section */
    .hero {
        height: 100vh;
        min-height: 600px;
    }
    
    .hero-content {
        padding: 0 5px;
    }
    
    .hero-logo-img {
        width: 70px;
        height: 70px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.1;
        margin-bottom: 0.6rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.2rem;
        line-height: 1.5;
    }
    
    .hero-details {
        gap: 0.6rem;
        margin-bottom: 1.5rem;
    }
    
    .detail-item {
        font-size: 0.9rem;
        gap: 0.4rem;
    }
    
    .detail-item i {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        gap: 0.8rem;
    }
    
    .btn {
        padding: 10px 18px;
        font-size: 0.95rem;
        max-width: 250px;
    }
    
    /* Section Headers */
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.7rem;
        line-height: 1.2;
    }
    
    .section-header p {
        font-size: 0.95rem;
    }
    
    /* About Section */
    .about {
        padding: 50px 0;
    }
    
    .about-text h3 {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }
    
    .about-text p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .feature {
        padding: 0.8rem;
        gap: 0.6rem;
    }
    
    .feature i {
        font-size: 1.6rem;
    }
    
    .feature h4 {
        font-size: 1.1rem;
    }
    
    .feature p {
        font-size: 0.9rem;
    }
    
    .image-placeholder {
        height: 200px;
        font-size: 0.9rem;
    }
    
    .image-placeholder i {
        font-size: 2.5rem;
    }
    
    /* Schedule Section */
    .schedule {
        padding: 50px 0;
    }
    
    .timeline-date {
        max-width: 120px;
        padding: 0.6rem;
    }
    
    .timeline-date .day {
        font-size: 1.3rem;
    }
    
    .timeline-date .month {
        font-size: 0.9rem;
    }
    
    .timeline-content {
        padding: 1.2rem;
    }
    
    .timeline-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .event {
        padding: 0.5rem;
        gap: 0.4rem;
    }
    
    .event .time {
        font-size: 0.85rem;
        font-weight: 700;
    }
    
    .event .event-title {
        font-size: 0.9rem;
    }
    
    /* Location Section */
    .location {
        padding: 50px 0;
    }
    
    .location-info h3 {
        font-size: 1.4rem;
        margin-bottom: 1.2rem;
    }
    
    .address {
        padding: 0.8rem;
        gap: 0.6rem;
    }
    
    .address i {
        font-size: 1.3rem;
    }
    
    .contact-item {
        padding: 0.6rem;
        gap: 0.4rem;
    }
    
    .contact-item i {
        font-size: 1.1rem;
    }
    
    .contact-item span {
        font-size: 0.9rem;
    }
    
    .map-container {
        height: 250px;
    }
    
    .embed-map-fixed {
        width: 100%;
        height: 100%;
    }
    
    .embed-map-container {
        width: 100%;
        height: 100%;
    }
    
    .embed-map-frame {
        width: 100% !important;
        height: 100% !important;
    }
    
    /* Registration Section */
    .register {
        padding: 50px 0;
    }
    
    .registration-info h3 {
        font-size: 1.4rem;
        margin-bottom: 1.2rem;
    }
    
    .price-item {
        padding: 0.8rem;
        gap: 0.4rem;
    }
    
    .price-item h4 {
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
    }
    
    .price {
        font-size: 1.2rem;
    }
    
    .price-item p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .registration-form {
        padding: 1.2rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 8px;
        font-size: 0.9rem;
    }
    
    .btn-full {
        padding: 10px;
        font-size: 0.95rem;
    }
    
    .form-header h3 {
        font-size: 1.3rem;
    }
    
    .form-header p {
        font-size: 0.85rem;
    }
    
    .registration-requirements {
        padding: 1rem;
        margin-bottom: 1.2rem;
    }
    
    .registration-requirements h4 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }
    
    .registration-requirements li {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    
    .registration-button-container {
        padding: 1.2rem;
    }
    
    .btn-register {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .registration-note {
        font-size: 0.75rem;
    }
    
    /* Payment & Accommodation */
    .payment-info,
    .accommodation-info {
        margin-top: 1.5rem;
        padding: 1.2rem;
    }
    
    .payment-info {
        margin-top: 1.5rem;
        padding: 1.5rem;
    }
    
    .payment-info h3 {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }
    
    .payment-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .bank-info, .gcash-info, .payment-notes {
        padding: 1.2rem;
    }
    
    .bank-info h4, .gcash-info h4, .payment-notes h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .bank-info p, .gcash-info p {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 0.5rem;
        font-weight: 500;
    }
    
    .payment-notes li {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 0.5rem;
        font-weight: 500;
    }
    
    .gcash-info p {
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    }
    
    .email-link {
        font-size: 0.85rem;
        padding: 0.1rem 0.25rem;
        margin-left: 0.1rem;
    }
    
    .accommodation-info {
        margin-top: 1.5rem;
        padding: 1.2rem;
    }
    
    .accommodation-info h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .free-accommodation, .hotel-info {
        padding: 1rem;
    }
    
    .free-accommodation h4, .hotel-info h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .free-accommodation p, .hotel-info p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    /* Footer */
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-logo {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .footer-logo-img {
        width: 35px;
        height: 35px;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-section ul li {
        margin-bottom: 0.4rem;
    }
    
    .footer-section ul li a {
        font-size: 0.9rem;
    }
    
    .footer-section .contact-item {
        padding: 0.5rem;
        margin-bottom: 0.5rem;
    }
    
    .footer-section .contact-item span {
        font-size: 0.85rem;
    }
    
    .social-links {
        gap: 0.8rem;
        margin-top: 1rem;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
        font-size: 0.85rem;
    }
}

/* Tablet and Medium Screens */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-logo-img {
        width: 100px;
        height: 100px;
    }
    
    .about-logo-img {
        width: 110px;
        height: 110px;
    }
    
    .footer-logo-img {
        width: 45px;
        height: 45px;
    }
    
    .logo-img {
        width: 38px;
        height: 38px;
    }
    
    /* Payment section for tablets */
    .payment-info {
        padding: 2.5rem;
    }
    
    .payment-info h3 {
        font-size: 2rem;
    }
    
    .payment-details {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .payment-notes {
        grid-column: 1 / -1;
    }
    
    .bank-info, .gcash-info, .payment-notes {
        padding: 1.8rem;
    }
}

/* Small Tablets */
@media (max-width: 768px) and (min-width: 481px) {
    .hero-logo-img {
        width: 90px;
        height: 90px;
    }
    
    .about-logo-img {
        width: 90px;
        height: 90px;
    }
    
    .footer-logo-img {
        width: 42px;
        height: 42px;
    }
    
    .logo-img {
        width: 36px;
        height: 36px;
    }
}

/* Landscape Mobile Devices */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 60px 0;
    }
    
    .hero-content {
        padding: 2rem 0;
    }
    
    .hero-logo-img {
        width: 60px;
        height: 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-details {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }
    
    .btn {
        max-width: 200px;
    }
}

/* Large Desktop Screens */
@media (min-width: 1400px) {
    .hero-logo-img {
        width: 140px;
        height: 140px;
    }
    
    .about-logo-img {
        width: 130px;
        height: 130px;
    }
    
    .footer-logo-img {
        width: 55px;
        height: 55px;
    }
    
    .logo-img {
        width: 45px;
        height: 45px;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .btn {
        min-height: 44px;
        padding: 12px 20px;
    }
    
    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        min-height: 44px;
    }
    
    .social-links a {
        min-width: 44px;
        min-height: 44px;
    }
    
    .hamburger {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Text justification for specific content */
.about-text p,
.about-description,
.hero-content p:not(.hero-subtitle),
.hero-text {
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
}

/* Hero description justification */
.hero-description {
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
}

/* Professional & Simple About Section */
.greeting-section {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 4px solid #2c5aa0;
}

.greeting-title {
    color: #2c5aa0;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: left;
}

.greeting-content {
    background: white;
    border-radius: 6px;
    padding: 1.5rem;
    border: 1px solid #e9ecef;
}

.greeting-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin: 0;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
}

.conference-highlights {
    margin-top: 2rem;
}

.highlights-title {
    color: #2c5aa0;
    font-size: 1.4rem;
    font-weight: 600;
    text-align: left;
    margin-bottom: 1.5rem;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.feature {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid #e9ecef;
    transition: box-shadow 0.2s ease;
}

.feature:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: #2c5aa0;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon i {
    font-size: 1.2rem;
    color: white;
}

.feature-content h4 {
    color: #2c5aa0;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.feature-content p {
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
}

/* Simple About Image */
.image-placeholder {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    border: 1px solid #e9ecef;
}

.logo-container {
    margin-bottom: 1rem;
}

.image-caption h4 {
    color: #2c5aa0;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.image-caption p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Mobile text justification adjustments */
@media (max-width: 768px) {
    .about-text p,
    .about-description,
    .hero-content p:not(.hero-subtitle),
    .hero-text {
        text-align: justify;
        text-justify: inter-word;
        hyphens: auto;
        word-spacing: 0.1em;
    }
    
    .hero-description {
        text-align: justify;
        text-justify: inter-word;
        hyphens: auto;
        word-spacing: 0.1em;
    }
    
    /* Mobile About Section */
    .greeting-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .greeting-title {
        font-size: 1.3rem;
    }
    
    .greeting-content {
        padding: 1.2rem;
    }
    
    .greeting-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .highlights-title {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .feature {
        padding: 1.2rem;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 0.8rem;
    }
    
    .feature-icon i {
        font-size: 1.1rem;
    }
    
    .feature-content h4 {
        font-size: 1rem;
    }
    
    .feature-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .image-placeholder {
        padding: 1.5rem;
    }
    
    .image-caption h4 {
        font-size: 1.1rem;
    }
    
    .image-caption p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .about-text p,
    .about-description,
    .hero-content p:not(.hero-subtitle),
    .hero-text {
        text-align: justify;
        text-justify: inter-word;
        hyphens: auto;
        word-spacing: 0.1em;
        line-height: 1.6;
    }
    
    .hero-description {
        text-align: justify;
        text-justify: inter-word;
        hyphens: auto;
        word-spacing: 0.1em;
        line-height: 1.6;
    }
    
    /* Small Mobile About Section */
    .greeting-section {
        padding: 1.2rem;
        margin-bottom: 1.2rem;
        border-radius: 6px;
    }
    
    .greeting-title {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .greeting-content {
        padding: 1rem;
        border-radius: 4px;
    }
    
    .greeting-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .highlights-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .features {
        gap: 1rem;
    }
    
    .feature {
        padding: 1rem;
        border-radius: 6px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0.8rem;
    }
    
    .feature-icon i {
        font-size: 1rem;
    }
    
    .feature-content h4 {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
    }
    
    .feature-content p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .image-placeholder {
        padding: 1.2rem;
        border-radius: 6px;
    }
    
    .image-caption h4 {
        font-size: 1rem;
        margin-bottom: 0.2rem;
    }
    
    .image-caption p {
        font-size: 0.8rem;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2c5aa0 0%, #4a7bc8 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    visibility: hidden;
}

.back-to-top.show {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.back-to-top:hover {
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5aa0 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.4);
}

.back-to-top:active {
    transform: translateY(-1px);
}

/* Mobile Back to Top Button */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Mobile-specific performance optimizations */
@media (max-width: 768px) {
    /* Reduce animations on mobile for better performance */
    .hero-logo-img,
    .feature,
    .timeline-item,
    .price-item {
        animation: none;
        transition: none;
    }
    
    /* Optimize scrolling performance */
    .hero,
    .about,
    .schedule,
    .location,
    .register {
        will-change: auto;
    }
    
    /* Improve text rendering on mobile */
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
    }
    
    /* Optimize images for mobile */
    .logo-img,
    .hero-logo-img,
    .footer-logo-img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Mobile-specific utility classes */
.mobile-device .hero {
    background-attachment: scroll; /* Disable parallax on mobile */
}

.mobile-device .hero::before {
    display: none; /* Hide decorative elements on mobile */
}

/* iOS Safari specific fixes */
@supports (-webkit-touch-callout: none) {
    .form-group input,
    .form-group select,
    .form-group textarea {
        -webkit-appearance: none;
        border-radius: 8px;
    }
    
    .btn {
        -webkit-appearance: none;
        border-radius: 50px;
    }
}

/* Android Chrome specific fixes */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: #2c5aa0;
        box-shadow: 0 0 0 2px rgba(44, 90, 160, 0.2);
    }
}

/* High DPI mobile displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-img,
    .hero-logo-img,
    .footer-logo-img {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* Dark mode support for mobile */
@media (prefers-color-scheme: dark) and (max-width: 768px) {
    .navbar {
        background: rgba(0, 0, 0, 0.95);
        color: white;
    }
    
    .nav-link {
        color: white;
    }
    
    .nav-link:hover {
        color: #3498db;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .hero-logo-img,
    .feature,
    .timeline-item,
    .price-item,
    .btn,
    .nav-link {
        animation: none;
        transition: none;
    }
    
    .scroll-indicator {
        animation: none;
    }
}

.hidden {
    display: none !important;
}

/* Admin Panel */
.admin-panel {
    padding: 100px 0;
    background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
}

.admin-layout {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.stat-card {
    background: #fff;
    border: 1px solid rgba(44, 90, 160, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-radius: 14px;
    padding: 1rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    border-left: 4px solid #2c5aa0;
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 1.2rem;
}

.stat-icon.success { background: linear-gradient(135deg, #2c5aa0, #00a86b); }
.stat-icon.info { background: linear-gradient(135deg, #4dabf7, #1e7ad6); }
.stat-icon.warning { background: linear-gradient(135deg, #ff9f43, #ff6b6b); }
.stat-icon.accent { background: linear-gradient(135deg, #7c3aed, #2c5aa0); }

.stat-label {
    color: #6b7280;
    font-weight: 600;
    font-size: 0.9rem;
}

.stat-card h3 {
    margin: 0.1rem 0;
    font-size: 1.8rem;
    color: #111827;
}

.stat-sub {
    color: #9ca3af;
    font-size: 0.85rem;
}

.admin-controls {
    background: #fff;
    border: 1px solid rgba(44, 90, 160, 0.08);
    border-radius: 16px;
    padding: 1.4rem;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.06);
}

.controls-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.controls-header h3 {
    margin-bottom: 0.2rem;
}

.controls-header p {
    color: #6b7280;
}

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

.control-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.control-group label {
    font-weight: 600;
    color: #374151;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
}

.input-with-icon input {
    width: 100%;
    padding: 0.85rem 1rem 0.85rem 2.6rem;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 0.95rem;
    background: #f9fafb;
    transition: all 0.2s ease;
}

.input-with-icon input:focus {
    outline: none;
    border-color: #2c5aa0;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

.control-group select {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 0.95rem;
    background: #f9fafb;
    transition: all 0.2s ease;
}

.control-group select:focus {
    outline: none;
    border-color: #2c5aa0;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

.control-group.full-width {
    grid-column: 1 / -1;
}

.admin-table-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(44, 90, 160, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.admin-table-card:hover {
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.table-card-header {
    padding: 1.8rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-bottom: 2px solid rgba(44, 90, 160, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.table-card-header h3 {
    margin-bottom: 0.3rem;
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3a5f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.table-card-header p {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}

.table-wrapper {
    overflow-x: auto;
    width: 100%;
    position: relative;
}

.table-wrapper::-webkit-scrollbar {
    height: 8px;
}

.table-wrapper::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 4px;
}

.table-wrapper::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3a5f 100%);
    border-radius: 4px;
}

.table-wrapper::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5aa0 100%);
}

.admin-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 980px;
    table-layout: auto;
}

.admin-table colgroup {
    display: none;
}

.admin-table th,
.admin-table td {
    padding: 1.1rem 1rem;
    text-align: left;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.admin-table thead {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3a5f 100%);
    position: relative;
}

.admin-table thead::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.admin-table th {
    font-weight: 700;
    color: #ffffff;
    position: sticky;
    top: 0;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3a5f 100%);
    z-index: 10;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    padding: 1.2rem 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
}

.admin-table th:last-child {
    border-right: none;
}

.admin-table tbody tr {
    background: #ffffff;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.2s ease;
    position: relative;
}

.admin-table tbody tr::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #2c5aa0 0%, #1e3a5f 100%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.admin-table tbody tr:hover {
    background: linear-gradient(90deg, #f8faff 0%, #ffffff 50%, #f8faff 100%);
    transform: translateX(2px);
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.08);
}

.admin-table tbody tr:hover::before {
    opacity: 1;
}

.admin-table tbody tr:hover td {
    color: #1e3a5f;
}

.admin-table tbody td {
    color: #475569;
    font-weight: 500;
    border-right: 1px solid #f1f5f9;
    vertical-align: middle;
}

.admin-table tbody td:last-child {
    border-right: none;
    max-width: 200px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.admin-table tbody td[data-column="remarks"],
.admin-table tbody td:nth-child(21) {
    max-width: 200px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

.admin-table tbody tr:nth-child(even) {
    background: #fafbfc;
}

.admin-table tbody tr:nth-child(even):hover {
    background: linear-gradient(90deg, #f0f4ff 0%, #fafbfc 50%, #f0f4ff 100%);
}

.empty-row {
    text-align: center;
    padding: 3rem 1.5rem;
    color: #94a3b8;
    font-size: 1rem;
    font-weight: 500;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
    border: 1px solid transparent;
}

.chip-primary {
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.15) 0%, rgba(30, 58, 95, 0.12) 100%);
    color: #1e3a5f;
    border-color: rgba(44, 90, 160, 0.2);
}

.chip-primary:hover {
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.2) 0%, rgba(30, 58, 95, 0.15) 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(44, 90, 160, 0.15);
}

.chip-muted {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    color: #475569;
    border-color: rgba(0, 0, 0, 0.05);
}

.chip-quiet {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.02) 100%);
    color: #64748b;
    border-color: rgba(0, 0, 0, 0.05);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.85rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.8rem;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    border: 1px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.status-paid {
    background: linear-gradient(135deg, rgba(0, 168, 107, 0.15) 0%, rgba(0, 127, 95, 0.12) 100%);
    color: #006b4f;
    border-color: rgba(0, 168, 107, 0.25);
}

.status-paid:hover {
    background: linear-gradient(135deg, rgba(0, 168, 107, 0.2) 0%, rgba(0, 127, 95, 0.15) 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 168, 107, 0.2);
}

.status-pending {
    background: linear-gradient(135deg, rgba(255, 159, 67, 0.15) 0%, rgba(199, 106, 21, 0.12) 100%);
    color: #b45309;
    border-color: rgba(255, 159, 67, 0.25);
}

.status-pending:hover {
    background: linear-gradient(135deg, rgba(255, 159, 67, 0.2) 0%, rgba(199, 106, 21, 0.15) 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(255, 159, 67, 0.2);
}

.status-confirmed {
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.15) 0%, rgba(30, 58, 95, 0.12) 100%);
    color: #1e3a5f;
    border-color: rgba(44, 90, 160, 0.25);
}

.status-confirmed:hover {
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.2) 0%, rgba(30, 58, 95, 0.15) 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(44, 90, 160, 0.2);
}

/* Admin Pagination Styles */
.admin-pagination {
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
    border-top: 2px solid rgba(44, 90, 160, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.pagination-info {
    font-size: 0.9rem;
    font-weight: 600;
    color: #475569;
}

.pagination-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.page-size-label {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
    margin-right: 0.5rem;
}

.pagination-controls select {
    padding: 0.5rem 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.85rem;
    background: #fff;
    color: #475569;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pagination-controls select:hover {
    border-color: #2c5aa0;
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

.pagination-controls select:focus {
    outline: none;
    border-color: #2c5aa0;
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.15);
}

/* Enhanced table cell styling for specific columns */
.admin-table td:nth-child(4) {
    font-weight: 600;
    color: #1e3a5f;
}

.admin-table td:nth-child(7),
.admin-table td:nth-child(10) {
    font-weight: 600;
}

.admin-table td:nth-child(19) {
    font-weight: 700;
    color: #059669;
    font-size: 0.95rem;
}

/* Loading state animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.admin-table tbody tr.loading {
    background: linear-gradient(90deg, #f1f5f9 0%, #f8fafc 50%, #f1f5f9 100%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

@media (max-width: 768px) {
    .admin-table {
        min-width: 820px;
    }

    .controls-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .stat-card {
        padding: 1rem;
    }
    
    .table-card-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.4rem 1.5rem;
    }
    
    .admin-actions {
        width: 100%;
        justify-content: flex-start;
    }
    
    .admin-pagination {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.2rem 1.5rem;
    }
    
    .pagination-controls {
        width: 100%;
        justify-content: space-between;
    }
}

/* Admin Login */
.admin-login {
    padding: 90px 0 40px;
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.admin-login-card {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.2rem;
    background: #fff;
    border: 1px solid rgba(44, 90, 160, 0.08);
    border-radius: 18px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.06);
    padding: 1.6rem;
}

.login-content h3 {
    margin-bottom: 0.4rem;
}

.login-subtext {
    color: #6b7280;
    margin-bottom: 1rem;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.form-field label {
    font-weight: 600;
    color: #374151;
}

.form-field input {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
    transition: all 0.2s ease;
    box-shadow: 0 10px 30px rgba(44, 90, 160, 0.08);
}

.form-field input:focus {
    outline: none;
    border-color: #2c5aa0;
    box-shadow: 0 12px 34px rgba(44, 90, 160, 0.15);
    background: #fff;
}

.form-field input::placeholder {
    color: #9ca3af;
}

.password-input {
    display: flex;
    align-items: center;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #f9fafb;
    overflow: hidden;
}

.password-input input {
    border: none;
    padding: 0.85rem 1rem;
    flex: 1;
    font-size: 0.95rem;
    background: transparent;
}

.password-input input:focus {
    outline: none;
}

.toggle-password {
    background: none;
    border: none;
    padding: 0.85rem 1rem;
    cursor: pointer;
    color: #6b7280;
}

.toggle-password:focus {
    outline: none;
    color: #2c5aa0;
}

.full-width {
    width: 100%;
}

.helper-text {
    color: #6b7280;
    font-size: 0.9rem;
}

.code-chip {
    background: #eef2f7;
    color: #1f3f80;
    padding: 0.15rem 0.5rem;
    border-radius: 6px;
    font-weight: 700;
}

.login-aside {
    background: linear-gradient(145deg, #2c5aa0, #4a7bc8);
    color: #fff;
    border-radius: 14px;
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.security-highlights {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-bottom: 0.8rem;
    color: #1f3f80;
    font-weight: 700;
}

.security-highlights span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.35rem 0.8rem;
    border-radius: 10px;
    background: rgba(44, 90, 160, 0.08);
    color: #1f3f80;
}

.login-aside ul {
    list-style: none;
    display: grid;
    gap: 0.35rem;
    padding-left: 0.2rem;
}

.login-aside li {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.login-aside li::before {
    content: '•';
    color: rgba(255, 255, 255, 0.8);
}

.login-aside .badge {
    background: rgba(255, 255, 255, 0.16);
    display: inline-flex;
    align-self: flex-start;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.85rem;
}

.admin-panel.locked {
    position: relative;
    filter: blur(3px);
    pointer-events: none;
    user-select: none;
}

.admin-panel.locked::after {
    content: 'Login required to view admin panel';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 1.4rem;
    border-radius: 12px;
    border: 1px solid rgba(44, 90, 160, 0.12);
    color: #1f3f80;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    min-width: 240px;
}

@media (max-width: 900px) {
    .admin-login-card {
        grid-template-columns: 1fr;
    }
}

/* Registrant Details Modal */
.registrant-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn 0.2s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.registrant-modal.active {
    display: flex;
}

.registrant-modal-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.7) 0%, rgba(44, 90, 160, 0.5) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.registrant-modal-content {
    position: relative;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.1);
    max-width: 1000px;
    width: 100%;
    max-height: 92vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    z-index: 1;
    animation: modalSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.registrant-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3a5f 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.registrant-modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.registrant-modal-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

.registrant-modal-header h2 {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.registrant-modal-header h2 i {
    font-size: 1.5rem;
    opacity: 0.95;
}

.registrant-modal-close {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.registrant-modal-close:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.registrant-modal-close:active {
    transform: rotate(90deg) scale(0.95);
}

.registrant-modal-body {
    padding: 2.5rem;
    overflow-y: auto;
    background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
}

.registrant-modal-body::-webkit-scrollbar {
    width: 8px;
}

.registrant-modal-body::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.registrant-modal-body::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3a5f 100%);
    border-radius: 4px;
}

.registrant-modal-body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5aa0 100%);
}

.registrant-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
}

.detail-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    padding: 1.75rem;
    border: 2px solid rgba(44, 90, 160, 0.08);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04), 0 0 0 1px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.detail-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2c5aa0 0%, #1e3a5f 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.detail-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(44, 90, 160, 0.12), 0 0 0 1px rgba(44, 90, 160, 0.1);
    border-color: rgba(44, 90, 160, 0.15);
}

.detail-section:hover::before {
    opacity: 1;
}

.detail-section.full-width {
    grid-column: 1 / -1;
}

.detail-section h3 {
    margin: 0 0 1.5rem 0;
    font-size: 1.15rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3a5f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    letter-spacing: -0.01em;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(44, 90, 160, 0.1);
    position: relative;
}

.detail-section h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #2c5aa0 0%, #1e3a5f 100%);
    border-radius: 2px;
}

.detail-section h3 i {
    color: #2c5aa0;
    font-size: 1.25rem;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.1) 0%, rgba(30, 58, 95, 0.08) 100%);
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(44, 90, 160, 0.15);
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 10px;
    border-left: 3px solid transparent;
    transition: all 0.2s ease;
}

.detail-item:hover {
    background: rgba(255, 255, 255, 0.9);
    border-left-color: #2c5aa0;
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(44, 90, 160, 0.08);
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-label {
    font-weight: 700;
    color: #64748b;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.detail-label::before {
    content: '';
    width: 4px;
    height: 4px;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3a5f 100%);
    border-radius: 50%;
    opacity: 0.6;
}

.detail-value {
    color: #1e293b;
    font-size: 1.05rem;
    line-height: 1.6;
    font-weight: 600;
    word-break: break-word;
    padding: 0.5rem 0;
}

.detail-value em.text-muted {
    color: #94a3b8;
    font-style: italic;
    font-weight: 500;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.detail-value em.text-muted::before {
    content: '—';
    color: #cbd5e1;
    font-weight: 300;
}

/* Special styling for badges and chips in detail values */
.detail-value .status-badge,
.detail-value .chip {
    margin-top: 0.25rem;
    display: inline-block;
}

/* Highlight important values - using class-based approach */
.detail-item .detail-value {
    position: relative;
}

.admin-table td[data-column="number"],
.admin-table td:first-child {
    text-align: center !important;
    width: 50px !important;
    min-width: 50px !important;
    max-width: 50px !important;
    padding: 0.75rem !important;
    display: table-cell !important;
    visibility: visible !important;
    font-weight: 600;
    color: #64748b;
}

.action-cell,
td[data-column="actions"],
.admin-table td:nth-child(3) {
    text-align: center !important;
    width: 90px !important;
    min-width: 90px !important;
    max-width: 90px !important;
    padding: 0.75rem !important;
    display: table-cell !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    background: transparent !important;
}

.action-buttons {
    display: flex !important;
    gap: 0.5rem !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    flex-wrap: nowrap !important;
}

.btn-view-details,
.btn-edit-registrant {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.province-cell {
    min-width: 120px;
}

.action-buttons {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-wrap: nowrap;
}

.btn-view-details,
.btn-edit-registrant {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3a5f 100%);
    border: none;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(44, 90, 160, 0.2);
}

.btn-view-details:hover {
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5aa0 100%);
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.4);
}

.btn-view-details:active {
    transform: scale(1.05);
}

.btn-edit-registrant {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.btn-edit-registrant:hover {
    background: linear-gradient(135deg, #047857 0%, #059669 100%);
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
}

.btn-edit-registrant:active {
    transform: scale(1.05);
}

.admin-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
}

.import-help {
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #f0f4ff 0%, #f8fafc 100%);
    border-bottom: 1px solid rgba(44, 90, 160, 0.1);
    margin: 0;
}

.import-help p {
    margin: 0;
    font-size: 0.85rem;
    color: #475569;
    line-height: 1.6;
}

.import-help strong {
    color: #1e3a5f;
    font-weight: 700;
}

.import-help em {
    color: #2c5aa0;
    font-style: normal;
    font-weight: 600;
}

/* Enhanced animations for detail sections */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.detail-section {
    animation: fadeInUp 0.4s ease-out backwards;
}

.detail-section:nth-child(1) { animation-delay: 0.1s; }
.detail-section:nth-child(2) { animation-delay: 0.15s; }
.detail-section:nth-child(3) { animation-delay: 0.2s; }
.detail-section:nth-child(4) { animation-delay: 0.25s; }
.detail-section:nth-child(5) { animation-delay: 0.3s; }
.detail-section:nth-child(6) { animation-delay: 0.35s; }

/* Special styling for name field */
.detail-item:first-of-type .detail-value {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1e3a5f;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.08) 0%, rgba(30, 58, 95, 0.05) 100%);
    padding: 0.75rem 1rem;
    border-radius: 10px;
    border: 2px solid rgba(44, 90, 160, 0.1);
}

/* Special styling for Name field */
.detail-item-name .detail-value-name {
    font-size: 1.25rem !important;
    font-weight: 800 !important;
    color: #1e3a5f !important;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.08) 0%, rgba(30, 58, 95, 0.05) 100%) !important;
    padding: 0.75rem 1rem !important;
    border-radius: 10px !important;
    border: 2px solid rgba(44, 90, 160, 0.1) !important;
    display: inline-block;
    width: 100%;
}

.detail-item-name {
    border-left-color: #2c5aa0 !important;
}

/* Special styling for Amount field */
.detail-item-amount {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.08) 0%, rgba(5, 150, 105, 0.03) 100%) !important;
    border-left-color: #059669 !important;
}

.detail-item-amount .detail-value-amount {
    color: #059669 !important;
    font-size: 1.3rem !important;
    font-weight: 800 !important;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.12) 0%, rgba(5, 150, 105, 0.06) 100%) !important;
    padding: 0.75rem 1rem !important;
    border-radius: 10px !important;
    border: 2px solid rgba(5, 150, 105, 0.15) !important;
    display: inline-block;
    width: 100%;
}

@media (max-width: 768px) {
    .registrant-details-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .registrant-modal-content {
        max-height: 95vh;
        margin: 0.5rem;
        border-radius: 20px;
    }

    .registrant-modal-header {
        padding: 1.5rem 1.75rem;
    }
    
    .registrant-modal-header h2 {
        font-size: 1.5rem;
    }

    .registrant-modal-body {
        padding: 1.75rem;
    }
    
    .detail-section {
        padding: 1.5rem;
    }
    
    .detail-section h3 {
        font-size: 1.05rem;
        margin-bottom: 1.25rem;
    }
    
    .detail-section h3 i {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
    
    .detail-item {
        padding: 0.65rem;
        margin-bottom: 1rem;
    }
    
    .detail-label {
        font-size: 0.75rem;
    }
    
    .detail-value {
        font-size: 0.95rem;
    }
    
    .registrant-modal-close {
        width: 38px;
        height: 38px;
        font-size: 1.2rem;
    }
}

/* New Registrant Form Styles */
.new-registrant-modal .registrant-modal-content {
    max-width: 1000px;
    max-height: 90vh;
}

.new-registrant-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    color: #374151;
    font-size: 0.9rem;
}

.form-group label .required {
    color: #dc3545;
}

.form-group input,
.form-group select,
.form-group textarea {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 0.75rem;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.2s ease;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5aa0;
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eef2f7;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .new-registrant-modal .registrant-modal-content {
        max-width: 95vw;
        margin: 0.5rem;
    }
}

/* Print Options Modal Styles */
.print-options-modal .registrant-modal-content {
    max-width: 600px;
}

.print-options-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.print-options-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.print-options-form .form-group label {
    font-weight: 600;
    color: #1f2937;
    font-size: 0.95rem;
}

.print-options-form .form-group select {
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.95rem;
    background: #fff;
    color: #1f2937;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.print-options-form .form-group select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.print-options-form .form-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 0.5rem;
    cursor: pointer;
}

.print-options-form .form-group label:has(input[type="checkbox"]) {
    display: flex;
    align-items: center;
    font-weight: 500;
    cursor: pointer;
}

.print-options-form .form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 0.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

@media (max-width: 768px) {
    .print-options-modal .registrant-modal-content {
        max-width: 95vw;
        margin: 0.5rem;
    }
    
    .print-options-form .form-actions {
        flex-direction: column;
    }
    
    .print-options-form .form-actions button {
        width: 100%;
    }
}
