/* CSS variables and global setup */
:root {
    --primary: hsl(330, 85%, 55%);      /* Vibrant Rose Pink (Team Outfit) */
    --primary-hover: hsl(330, 85%, 45%);
    --secondary: hsl(20, 95%, 55%);    /* Coral Orange (Festival Outfit) */
    --secondary-hover: hsl(20, 95%, 45%);
    --teal: hsl(175, 75%, 40%);
    --dark: hsl(220, 40%, 12%);
    --light-bg: hsl(220, 30%, 97%);
    --white: #ffffff;
    --text-primary: hsl(220, 30%, 18%);
    --text-secondary: hsl(220, 15%, 45%);
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.4);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-pink: 0 10px 20px -5px rgba(239, 68, 144, 0.35);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 16px;
    --border-radius-sm: 8px;
    --border-radius-lg: 24px;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Offset for sticky nav */
}

body {
    font-family: 'Noto Sans TC', 'Inter', sans-serif;
    color: var(--text-primary);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    position: relative;
}

.section-padding {
    padding: 100px 0;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--light-bg);
}
::-webkit-scrollbar-thumb {
    background: hsl(330, 40%, 80%);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Typography styles */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
}

.section-header {
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 8px;
}

.section-title {
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 12px;
}

.underline {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    margin: 0 auto;
    border-radius: 2px;
}

.section-desc {
    margin-top: 16px;
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Button System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), hsl(330, 85%, 60%));
    color: var(--white);
    box-shadow: var(--shadow-pink);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 24px -5px rgba(239, 68, 144, 0.5);
    background: linear-gradient(135deg, var(--primary-hover), var(--primary));
}

.btn-primary:active {
    transform: translateY(1px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-lg {
    padding: 14px 36px;
    font-size: 18px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
    height: 80px;
    display: flex;
    align-items: center;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    height: 70px;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
}

.logo-icon {
    font-size: 26px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pulse 2s infinite;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary);
}

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

.nav-btn {
    padding: 8px 20px;
    font-size: 14px;
}

/* Hamburger menu button */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background: url('assets/images/photo3.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    color: var(--white);
    position: relative;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(239, 68, 144, 0.25) 50%, rgba(249, 115, 22, 0.15) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.badge i {
    color: #fcd34d; /* Sparkle Gold */
    animation: rotate-sparkle 3s infinite linear;
}

.hero-title {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 24px;
}

.highlight-text {
    background: linear-gradient(90deg, #ff85b3, #ffb885);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse {
    width: 26px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    display: block;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 1.5s infinite;
}

/* About Section */
.about {
    background: linear-gradient(180deg, var(--white), var(--light-bg));
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.about-text-content h3 {
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 20px;
}

.lead-text {
    font-size: 18px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-text-content p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 16px;
}

.feature-icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(239, 68, 144, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
}

.feature-info h4 {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 4px;
}

.feature-info p {
    font-size: 14px;
    margin-bottom: 0;
}

.info-card-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.icon-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 24px 30px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: var(--transition-slow);
}

.icon-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--white);
    margin-bottom: 16px;
}

.bg-pink { background: linear-gradient(135deg, var(--primary), #fda4af); }
.bg-orange { background: linear-gradient(135deg, var(--secondary), #fed7aa); }
.bg-teal { background: linear-gradient(135deg, var(--teal), #99f6e4); }

.icon-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark);
}

.icon-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Info Section */
.info {
    background: var(--white);
}

.info-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
}

.info-details-box {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.detail-card {
    display: flex;
    gap: 24px;
    background: var(--light-bg);
    border-radius: var(--border-radius);
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.detail-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
    border-color: rgba(239, 68, 144, 0.2);
}

.detail-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    transition: var(--transition);
}

.detail-card:hover .detail-icon {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-pink);
}

.detail-text h3 {
    font-size: 18px;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.detail-text .highlight-val {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.detail-text .sub-val {
    font-size: 14px;
    color: var(--text-secondary);
}

.phone-call-btn {
    color: var(--primary);
    position: relative;
}

.phone-call-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--primary);
    transform: scaleX(1);
    transform-origin: bottom left;
    transition: var(--transition);
}

.phone-call-btn:hover {
    color: var(--primary-hover);
}

.phone-call-btn:hover::after {
    transform: scaleX(0);
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--teal);
    margin-top: 10px;
}

.map-link:hover {
    color: hsl(175, 75%, 30%);
    text-decoration: underline;
}

.info-cta-box {
    background: linear-gradient(135deg, hsl(330, 85%, 20%), hsl(220, 40%, 15%));
    border-radius: var(--border-radius-lg);
    color: var(--white);
    padding: 40px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.info-cta-box::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(239, 68, 144, 0.15);
    filter: blur(30px);
}

.cta-inner {
    position: relative;
    z-index: 2;
}

.cta-bubble-icon {
    font-size: 40px;
    color: var(--secondary);
    margin-bottom: 24px;
    opacity: 0.9;
}

.info-cta-box h3 {
    font-size: 28px;
    margin-bottom: 16px;
    line-height: 1.3;
}

.info-cta-box p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    margin-bottom: 24px;
}

.cta-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin-bottom: 24px;
}

.cta-perks {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-perks span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-perks i {
    color: var(--secondary);
}

/* Gallery Section */
.gallery {
    background: var(--light-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.gallery-item {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.gallery-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.08);
}

.gallery-overlay-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--white);
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay-hover i {
    font-size: 32px;
    transform: scale(0.7);
    transition: var(--transition);
}

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

.gallery-item:hover .gallery-overlay-hover i {
    transform: scale(1);
}

.gallery-info {
    padding: 24px;
}

.gallery-info h4 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 8px;
}

.gallery-info p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Contact/Registration Section */
.contact {
    background: var(--white);
}

.contact-box {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.contact-info-panel {
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: var(--white);
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info-panel h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.contact-info-panel p {
    opacity: 0.9;
    font-size: 15px;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-detail-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-detail-item i {
    font-size: 20px;
    color: #fcd34d; /* Gold */
    margin-top: 4px;
}

.contact-detail-item h5 {
    font-size: 16px;
    margin-bottom: 4px;
    font-weight: 600;
}

.contact-detail-item p {
    margin-bottom: 0;
    font-size: 14px;
    opacity: 0.95;
}

.contact-detail-item a {
    color: var(--white);
    font-weight: 600;
}

.contact-detail-item a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 40px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-btn:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
}

.contact-form-panel {
    padding: 50px;
}

.contact-form-panel h3 {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 30px;
}

/* Forms styling */
.custom-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.required {
    color: var(--primary);
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 16px;
    color: var(--text-secondary);
    font-size: 16px;
    pointer-events: none;
    transition: var(--transition);
}

.input-wrapper input,
.input-wrapper select,
.custom-form textarea {
    width: 100%;
    padding: 12px 16px 12px 46px;
    border-radius: var(--border-radius-sm);
    border: 1px solid hsl(220, 15%, 85%);
    font-size: 15px;
    font-family: inherit;
    color: var(--text-primary);
    background: var(--light-bg);
    transition: var(--transition);
    outline: none;
}

.custom-form textarea {
    padding-left: 16px;
    background: var(--light-bg);
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.custom-form textarea:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(239, 68, 144, 0.1);
}

.input-wrapper input:focus + i,
.input-wrapper select:focus + i {
    color: var(--primary);
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.footer-info {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.footer-info span {
    margin: 0 8px;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 auto 24px auto;
    max-width: 600px;
}

.copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* Modals System styling */
.modal-overlay,
.lightbox-overlay,
.success-alert-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.modal-overlay.active,
.lightbox-overlay.active,
.success-alert-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-box,
.success-alert-box {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    width: 100%;
    max-width: 500px;
    padding: 40px;
    position: relative;
    box-shadow: var(--shadow-lg);
    transform: translateY(30px) scale(0.95);
    transition: var(--transition-slow);
}

.modal-overlay.active .modal-box,
.success-alert-overlay.active .success-alert-box {
    transform: translateY(0) scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-secondary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close-btn:hover {
    background: var(--light-bg);
    color: var(--dark);
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-header-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 12px;
}

.modal-header h2 {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 8px;
}

.modal-header p {
    font-size: 14px;
    color: var(--text-secondary);
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 4px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-primary);
    cursor: pointer;
}

.checkbox-label input {
    width: 16px;
    height: 16px;
    accent-color: var(--primary);
}

/* Lightbox Modal Specifics */
.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 40px;
    color: var(--white);
    background: none;
    border: none;
    cursor: pointer;
}

.lightbox-content {
    max-width: 80%;
    max-height: 75%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: var(--transition-slow);
}

.lightbox-overlay.active img {
    transform: scale(1);
}

.lightbox-caption {
    color: var(--white);
    text-align: center;
    margin-top: 20px;
    max-width: 600px;
}

.lightbox-caption h4 {
    font-size: 20px;
    margin-bottom: 6px;
    color: #fcd34d;
}

.lightbox-caption p {
    font-size: 14px;
    opacity: 0.8;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: none;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.35);
}

.lightbox-prev { left: 40px; }
.lightbox-next { right: 40px; }

/* Success Alert Styling & Animations */
.success-alert-box {
    text-align: center;
    max-width: 460px;
}

.success-alert-box h3 {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 12px;
}

.success-alert-box p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.success-icon-animation {
    width: 80px;
    height: 80px;
    position: relative;
    margin: 0 auto 24px auto;
}

.success-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid rgba(16, 185, 129, 0.2);
    box-sizing: border-box;
}

.success-icon-check {
    width: 24px;
    height: 48px;
    border-bottom: 4px solid #10b981;
    border-right: 4px solid #10b981;
    transform: rotate(45deg);
    position: absolute;
    top: 10px;
    left: 28px;
    transform-origin: bottom left;
    animation: draw-check 0.6s ease-in-out forwards;
    opacity: 0;
}

@keyframes draw-check {
    0% {
        height: 0;
        width: 0;
        opacity: 0;
    }
    30% {
        height: 0;
        width: 24px;
        opacity: 1;
    }
    100% {
        height: 48px;
        width: 24px;
        opacity: 1;
    }
}

/* Scroll To Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    opacity: 0;
    pointer-events: none;
    z-index: 99;
    transition: var(--transition);
}

.scroll-to-top.active {
    opacity: 1;
    pointer-events: auto;
}

.scroll-to-top:hover {
    background: var(--primary-hover);
    transform: translateY(-4px);
}

/* Keyframes & Scroll Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

@keyframes rotate-sparkle {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes scroll-wheel {
    0% { opacity: 1; top: 8px; }
    50% { opacity: 0.3; top: 18px; }
    100% { opacity: 0; top: 22px; }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.fade-in-delay-1 {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}

.fade-in-delay-2 {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
}

.fade-in-delay-3 {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Elements reveal animation on scroll */
.reveal-card {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.reveal-card.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-card.delay-1 { transition-delay: 0.15s; }
.reveal-card.delay-2 { transition-delay: 0.3s; }

/* Responsive adjustments */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .info-container {
        grid-template-columns: 1fr;
    }
    
    .contact-box {
        grid-template-columns: 1fr;
    }
    
    .contact-info-panel {
        padding: 40px;
    }
    
    .contact-form-panel {
        padding: 40px;
    }
    
    .hero-title {
        font-size: 46px;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 70px 0;
    }
    
    .section-title {
        font-size: 30px;
    }

    .hero-title {
        font-size: 38px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }

    /* Hamburger Nav Menu */
    .hamburger {
        display: block;
    }

    .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);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        height: calc(100vh - 80px);
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
        transition: var(--transition);
        gap: 0;
        padding: 40px 0;
        align-items: center;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        padding: 16px 0;
        width: 80%;
        text-align: center;
        font-size: 18px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-btn {
        margin-top: 24px;
        width: 80%;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-image-wrapper {
        height: 250px;
    }
    
    .form-group-row {
        grid-template-columns: 1fr;
    }

    .lightbox-content {
        max-width: 95%;
    }

    .lightbox-nav {
        width: 44px;
        height: 44px;
    }
    
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
}
