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

/* Theme Variables */
:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-card: #ffffff;
    --text-primary: #333;
    --text-secondary: #555;
    --text-tertiary: #666;
    --border-color: rgba(102, 126, 234, 0.1);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 15px 40px rgba(102, 126, 234, 0.2);
}

html[data-theme="dark"] {
    --bg-primary: #0f1419;
    --bg-secondary: #1a1f2e;
    --bg-card: #1e2433;
    --text-primary: #e8eaed;
    --text-secondary: #c5c7ca;
    --text-tertiary: #a0a3a7;
    --border-color: rgba(102, 126, 234, 0.2);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.6);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.7);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.8);
    --shadow-hover: 0 15px 40px rgba(102, 126, 234, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-secondary);
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

html[data-theme="dark"] ::-webkit-scrollbar-track {
    background: #0f1624;
}

/* Selection Color */
::selection {
    background: #667eea;
    color: white;
}

::-moz-selection {
    background: #667eea;
    color: white;
}

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

/* Page Load Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

body {
    animation: fadeIn 0.5s ease-in;
}

/* Smooth transitions for all links */
a {
    transition: all 0.3s ease;
}

/* Theme Toggle Button */
.theme-toggle {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 10px 18px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 1.1em;
    height: 44px;
    min-width: 60px;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.theme-toggle:active {
    transform: scale(0.95);
}

html[data-theme="light"] .theme-toggle .moon-icon {
    display: inline;
}

html[data-theme="light"] .theme-toggle .sun-icon {
    display: none;
}

html[data-theme="dark"] .theme-toggle .sun-icon {
    display: inline;
}

html[data-theme="dark"] .theme-toggle .moon-icon {
    display: none;
}

/* Header & Navigation */
header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
    backdrop-filter: blur(10px);
    animation: slideDown 0.5s ease-out;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

html[data-theme="dark"] header {
    background: linear-gradient(135deg, #4a5cb8 0%, #5a3478 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid rgba(102, 126, 234, 0.2);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

.logo h1 {
    color: white;
    font-size: 1.8em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.logo h1:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 10px 16px;
    border-radius: 20px;
    position: relative;
    display: inline-block;
    line-height: 1.5;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-links a:hover::after {
    width: 80%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
}

html[data-theme="dark"] .hero {
    background: linear-gradient(135deg, #4a5cb8 0%, #5a3478 100%);
}

html[data-theme="dark"] .hero h2 {
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.5);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

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

.hero h2 {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out;
    color: white;
}

html[data-theme="light"] .hero h2 {
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.btn {
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
    position: relative;
    overflow: hidden;
    font-size: 1.05em;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: width 0.6s, height 0.6s, top 0.6s, left 0.6s;
    transform: translate(-50%, -50%);
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: white;
    color: #667eea;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}

html[data-theme="dark"] .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

html[data-theme="dark"] .btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
}

/* Ensure button text appears above animations */
.btn * {
    position: relative;
    z-index: 2;
}

.btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

/* About Section */
.about {
    padding: 100px 20px;
    background: var(--bg-secondary);
    position: relative;
}

.about h2 {
    text-align: center;
    font-size: 2.8em;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.about p {
    text-align: center;
    font-size: 1.25em;
    max-width: 800px;
    margin: 0 auto 60px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

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

html[data-theme="dark"] .stat-card {
    background: var(--bg-card);
    border: 1px solid rgba(102, 126, 234, 0.25);
}

html[data-theme="dark"] .stat-card:hover {
    border-color: rgba(102, 126, 234, 0.5);
    background: #232938;
}

.stat-number {
    font-size: 3.5em;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1em;
    color: var(--text-tertiary);
    margin-top: 10px;
    font-weight: 500;
}

/* Packages Section */
.packages {
    padding: 100px 20px;
    background: var(--bg-primary);
}

.packages h2 {
    text-align: center;
    font-size: 2.8em;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.package-card {
    background: var(--bg-card);
    padding: 45px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.package-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(102, 126, 234, 0.5);
}

.package-card:hover::after {
    opacity: 1;
}

html[data-theme="dark"] .package-card {
    background: var(--bg-card);
    border: 1px solid rgba(102, 126, 234, 0.25);
}

html[data-theme="dark"] .package-card:hover {
    background: #232938;
    border-color: rgba(102, 126, 234, 0.5);
}

html[data-theme="dark"] .coming-soon {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(30, 36, 51, 0.8) 100%);
    border: 3px dashed rgba(102, 126, 234, 0.4);
}

.package-icon {
    font-size: 4em;
    margin-bottom: 20px;
    display: inline-block;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.package-card:hover .package-icon {
    animation: none;
    transform: scale(1.1) rotate(5deg);
    transition: transform 0.3s ease;
}

.package-card h3 {
    font-size: 1.9em;
    margin-bottom: 10px;
    color: var(--text-primary);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.package-version {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.05em;
    position: relative;
    z-index: 1;
}

html[data-theme="dark"] .package-version {
    color: #a8b5ff;
}

.package-description {
    color: var(--text-tertiary);
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 1.05em;
    position: relative;
    z-index: 1;
}

.package-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.feature-tag {
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f0fe 100%);
    color: #667eea;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9em;
    font-weight: 600;
    border: 1px solid rgba(102, 126, 234, 0.2);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

html[data-theme="dark"] .feature-tag {
    background: rgba(102, 126, 234, 0.2);
    color: #a8b5ff;
    border: 1px solid rgba(102, 126, 234, 0.3);
}

html[data-theme="dark"] .feature-tag:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.package-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.package-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.package-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

.package-link:hover {
    color: #764ba2;
    transform: translateX(5px);
}

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

html[data-theme="dark"] .package-link {
    color: #a8b5ff;
}

html[data-theme="dark"] .package-link:hover {
    color: #c5d0ff;
}

.coming-soon {
    background: linear-gradient(135deg, #f0f4ff 0%, #fff 100%);
    border: 3px dashed #667eea;
    position: relative;
}

.coming-soon::before {
    content: '✨';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2em;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

/* Team Section */
.team {
    padding: 100px 20px;
    background: var(--bg-secondary);
}

.team h2 {
    text-align: center;
    font-size: 2.8em;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.team-card {
    background: var(--bg-card);
    padding: 50px 40px;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(102, 126, 234, 0.5);
}

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

html[data-theme="dark"] .team-card {
    background: var(--bg-card);
    border: 1px solid rgba(102, 126, 234, 0.25);
}

html[data-theme="dark"] .team-card:hover {
    background: #232938;
    border-color: rgba(102, 126, 234, 0.5);
}

.team-avatar {
    font-size: 5em;
    margin-bottom: 25px;
    display: inline-block;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.team-card:hover .team-avatar {
    transform: scale(1.1) rotate(5deg);
}

.team-card h3 {
    font-size: 1.6em;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 700;
}

.team-role {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 18px;
    font-size: 1.1em;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

html[data-theme="dark"] .team-role {
    background: linear-gradient(135deg, #a8b5ff 0%, #c5a8ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.team-bio {
    color: var(--text-tertiary);
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 1.05em;
}

.team-links {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.team-links a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 25px;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f0fe 100%);
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.team-links a:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

html[data-theme="dark"] .team-links a {
    background: rgba(102, 126, 234, 0.2);
    color: #a8b5ff;
    border: 1px solid rgba(102, 126, 234, 0.3);
}

html[data-theme="dark"] .team-links a:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

/* Contact Section */
.contact {
    padding: 100px 20px;
    background: var(--bg-primary);
}

.contact h2 {
    text-align: center;
    font-size: 2.8em;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.contact > .container > p {
    text-align: center;
    font-size: 1.25em;
    color: var(--text-secondary);
    margin-bottom: 60px;
    line-height: 1.8;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    background: var(--bg-card);
    padding: 50px 40px;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: height 0.4s ease;
    z-index: 0;
}

.contact-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-hover);
    border-color: rgba(102, 126, 234, 0.5);
}

.contact-card:hover::before {
    height: 100%;
}

html[data-theme="dark"] .contact-card {
    background: var(--bg-card);
    border: 1px solid rgba(102, 126, 234, 0.25);
}

html[data-theme="dark"] .contact-card:hover {
    background: var(--bg-card);
    border-color: rgba(102, 126, 234, 0.5);
}

.contact-card:hover .contact-icon,
.contact-card:hover h3,
.contact-card:hover p {
    color: white;
    position: relative;
    z-index: 1;
}

.contact-icon {
    font-size: 3.5em;
    margin-bottom: 25px;
    display: inline-block;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.contact-card:hover .contact-icon {
    transform: scale(1.2) rotate(360deg);
}

.contact-card h3 {
    font-size: 1.6em;
    margin-bottom: 12px;
    color: #667eea;
    font-weight: 700;
    transition: color 0.4s ease;
    position: relative;
    z-index: 1;
}

html[data-theme="dark"] .contact-card h3 {
    color: #a8b5ff;
}

.contact-card p {
    color: var(--text-tertiary);
    font-size: 1.05em;
    transition: color 0.4s ease;
    position: relative;
    z-index: 1;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: white;
    padding: 60px 20px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
}

html[data-theme="dark"] footer {
    background: linear-gradient(135deg, #0a0e14 0%, #05080d 100%);
    border-top: 1px solid rgba(102, 126, 234, 0.2);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #667eea 100%);
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

footer p {
    margin-bottom: 15px;
    opacity: 0.9;
    font-size: 1.05em;
}

.footer-links {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 25px;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.footer-links a:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
}

.footer-links a:hover::after {
    width: 80%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 2.2em;
    }
    
    .hero {
        padding: 80px 20px;
    }
    
    .subtitle {
        font-size: 1.1em;
    }
    
    .about h2,
    .packages h2,
    .team h2,
    .contact h2 {
        font-size: 2.2em;
    }
    
    .package-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        width: 100%;
        margin-top: 15px;
    }
    
    nav .container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .logo h1 {
        font-size: 1.5em;
    }
    
    .theme-toggle {
        margin-top: 5px;
        width: auto;
    }
    
    .nav-links li {
        width: auto;
    }
    
    .stat-number {
        font-size: 2.5em;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 1.8em;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.95em;
    }
    
    .package-card,
    .team-card,
    .contact-card {
        padding: 30px 25px;
    }
    
    .about h2,
    .packages h2,
    .team h2,
    .contact h2 {
        font-size: 1.8em;
    }
}
