/* assets/css/style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0A0C10 0%, #1a1a2e 50%, #16213e 100%);
    color: #E8EDF2;
    line-height: 1.5;
    scroll-behavior: smooth;
    position: relative;
}

/* Animated Background Effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        repeating-linear-gradient(45deg, rgba(212, 175, 55, 0.02) 0px, rgba(212, 175, 55, 0.02) 2px, transparent 2px, transparent 8px);
    pointer-events: none;
    z-index: -1;
    animation: subtleShift 20s ease-in-out infinite;
}

@keyframes subtleShift {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.05); opacity: 0.7; }
}

/* Color Scheme: Dark + Vibrant Gold Accent */
:root {
    --dark-bg: #0A0C10;
    --card-bg: rgba(19, 22, 28, 0.85);
    --card-bg-solid: #13161C;
    --border-dim: #2A2F3A;
    --gold: #5D8EC7;
    --gold-light: #89B4E3;
    --gold-gradient: linear-gradient(135deg, #5D8EC7 0%, #89B4E3 40%, #5D8EC7 70%, #3A6A9E 100%);
    --text-muted: #9AA3B0;
    --glow: rgba(93, 142, 199, 0.3);
    --success: #2ECC71;
    --danger: #E74C3C;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* Navigation */
nav {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--border-dim);
    backdrop-filter: blur(10px);
    background: rgba(10, 12, 16, 0.5);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

nav.scrolled {
    padding: 12px 0;
    background: rgba(10, 12, 16, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.logo span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-links li {
    display: inline-block;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-links a:hover {
    color: #ffffff;
}

.nav-links a.active {
    color: var(--gold);
}

/* Underline animation for nav links */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Mobile menu button */
.mobile-menu {
    display: none;
    font-size: 1.5rem;
    color: #E8EDF2;
    cursor: pointer;
    transition: color 0.3s ease;
}

.mobile-menu:hover {
    color: var(--gold);
}

/* Sections - FIXED with scroll margin */
section {
    scroll-margin-top: 80px;
    padding: 60px 0 80px 0;
    border-bottom: 1px solid var(--border-dim);
    position: relative;
}

/* First section needs less top padding */
section:first-of-type {
    padding-top: 30px;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Content Sections - visible by default */
.content-section {
    display: block;
    padding: 20px 0 60px 0;
    animation: fadeIn 0.5s ease;
}

/* Fade animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Title */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 23px;
    margin-top: 10px;
    position: relative;
    display: inline-block;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding-top: 10px;
}

.section-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 60px;
    height: 4px;
    background: var(--gold-gradient);
    border-radius: 4px;
    animation: slideIn 0.6s ease-out;
}

@keyframes slideIn {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 60px;
        opacity: 1;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gold-gradient);
    color: #0A0C10;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    border: 1.5px solid var(--gold);
    color: var(--gold);
    background: transparent;
    position: relative;
    z-index: 1;
}

.btn-outline::before {
    background: var(--gold-gradient);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.btn-outline:hover::before {
    opacity: 1;
    width: 100%;
    height: 100%;
    border-radius: 40px;
}

.btn-outline:hover {
    color: #0A0C10;
    border-color: transparent;
    transform: translateY(-3px);
}

.btn-danger {
    background: var(--danger);
    color: white;
}

.btn-danger:hover {
    background: #c82333;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    min-height: 64vh;
}

.hero-content {
    flex: 1;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin: 16px 0;
    line-height: 1.2;
    background: linear-gradient(135deg, #fff 0%, var(--gold) 50%, #fff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-role {
    font-size: 1.4rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.profile-img {
    flex: 0.8;
    text-align: center;
    animation: fadeInRight 0.8s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.profile-img img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 25px 40px rgba(212, 175, 55, 0.2);
    border: 3px solid transparent;
    background: linear-gradient(135deg, var(--gold), var(--gold-light)) border-box;
    transition: all 0.5s ease;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.profile-img img:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 30px 50px rgba(212, 175, 55, 0.3);
}

/* About Section */
.about-wrapper {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.about-text {
    flex: 2;
}

.about-text p {
    margin-bottom: 20px;
    color: #cfd9e6;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* ===================== Start Trekking Destinations ==================== */
#trekkingDistination {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin: 0;
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.project-card {
    background: linear-gradient(135deg, #0f0f0f, #0a0a0a);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.project-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #d4af37;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.25);
}

.project-card:hover::before {
    opacity: 1;
}

.project-icon {
    text-align: center;
    padding: 40px 20px 30px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.project-icon i {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #5D8EC7, #5488c4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: transform 0.3s ease;
}

.project-card:hover .project-icon i {
    transform: scale(1.1) rotate(5deg);
}

.project-info {
    padding: 25px;
}

.project-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.project-card:hover .project-info h3 {
    color: #d4af37;
}

.project-info p {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.trekking.destinations {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.trekking.destination {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #c0c0c0;
    transition: all 0.3s ease;
}

.trekking.destination i {
    color: #d4af37;
    font-size: 0.9rem;
    min-width: 16px;
    transition: transform 0.3s ease;
}

.project-card:hover .trekking.destination {
    color: #ffffff;
}

.project-card:hover .trekking.destination i {
    transform: translateX(3px);
}

.difficulty {
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    display: inline-block;
}

.difficulty.easy {
    background: #28a745;
    color: white;
}

.difficulty.moderate {
    background: #ffc107;
    color: #000;
}

.difficulty.challenging {
    background: #fd7e14;
    color: white;
}

.difficulty.difficult {
    background: #dc3545;
    color: white;
}

.no-data {
    text-align: center;
    color: #888;
    padding: 50px;
    font-size: 1.1rem;
    grid-column: 1 / -1;
    background: rgba(10, 10, 10, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.trekking-header {
    text-align: center;
    margin-bottom: 50px;
}

.trekking-header h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff, #d4af37);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
    width: 100%;
}

.trekking-header h2 i {
    background: linear-gradient(135deg, #d4af37, #ffdd77);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-right: 10px;
}

.trekking-header p {
    text-align: center;
    color: #a0a0a0;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===================== End Trekking Destinations ==================== */

/* ============================================
   SERVICE PANEL - Single Adventure Panel
   ============================================ */
.hero-message-wrapper {
    grid-column: 1 / -1;
    width: 100%;
}

.hero-message-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.hero-message-text {
    font-size: 1.4rem;
    line-height: 2;
    color: #b5bcc3;
    font-weight: 400;
    margin: 0;
    padding: 0 20px;
    letter-spacing: 0.3px;
    font-family: 'Georgia', 'Times New Roman', serif;
    text-align: center;
}

.hero-message-text::first-letter {
    font-size: 2.8rem;
    font-weight: bold;
    color: #c0392b;
    float: left;
    margin-right: 10px;
    line-height: 1;
}

/* Services Grid */
.services-grid {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    width: 100%;
    padding: 20px 0;
}

.service-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px 25px;
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
    cursor: default;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    border-color: #c0392b;
}

.service-card-inner {
    display: flex;
    align-items: center;
    gap: 14px;
}

.service-icon {
    color: #c0392b;
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: translateX(5px);
}

.service-name {
    font-size: 1rem;
    color: #34495e;
    font-weight: 500;
}

/* ============================================
   END SERVICE PANEL
   ============================================ */

/* Cards Grid */
.skills-grid,
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

/* Expertise Container */
#skillsContainer {
    display: block;
    margin: 0;
    padding: 0;
}

#skillsContainer .skill-card {
    background: linear-gradient(135deg, #0a0a0a, #080808);
    border-radius: 24px;
    padding: 4px 32px !important;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

#skillsContainer .skill-card:hover {
    transform: scale(1.02);
    border-color: #d4af37;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
    background: linear-gradient(135deg, #121212, #0a0a0a);
}

#skillsContainer .skill-card:hover .skill-info {
    transform: scale(1.03);
}

#skillsContainer .skill-card:hover .skill-name {
    transform: scale(1.03);
    color: #d4af37;
}

#skillsContainer .skill-card:hover .skill-name::before {
    transform: scale(1.12);
}

#skillsContainer .skill-info {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    padding: 8px 0;
    transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    transform-origin: left center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

#skillsContainer .skill-info:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

#skillsContainer .skill-name {
    color: #e0e0e0;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    display: inline-block;
    transform-origin: left center;
}

#skillsContainer .skill-name::before {
    content: "▹";
    color: #d4af37;
    display: inline-block;
    margin-right: 14px;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

#skillsContainer .skill-icon {
    font-size: 1.4rem;
    min-width: 36px;
    text-align: center;
    background: linear-gradient(135deg, #d4af37, #f0c84c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: all 0.3s ease;
}

#skillsContainer .skill-card:hover .skill-icon {
    transform: scale(1.08);
}

#skillsContainer .skill-category {
    display: inline-block;
    margin-left: 12px;
    font-size: 0.7rem;
    font-weight: 500;
    color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
    padding: 4px 12px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

#skillsContainer .skill-card:hover .skill-category {
    transform: scale(1.05);
    background: rgba(212, 175, 55, 0.2);
}

#skillsContainer .skill-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.08), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: 24px;
}

#skillsContainer .skill-card:hover::before {
    opacity: 1;
}

#skillsContainer .skill-card {
    border-left: 4px solid transparent;
}

#skillsContainer .skill-card:hover {
    border-left-color: #d4af37;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0;
}

.tech-badge {
    background: rgba(212, 175, 55, 0.1);
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.75rem;
    color: var(--gold-light);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s;
}

.tech-badge:hover {
    background: var(--gold);
    color: #0A0C10;
    transform: translateY(-2px);
}

.project-link {
    margin-top: 16px;
    display: inline-block;
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.project-link:hover {
    color: var(--gold-light);
    transform: translateX(5px);
}

/* Contact Section */
.contact-flex {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.contact-form {
    flex: 1.5;
}

.form-group {
    margin-bottom: 20px;
}

input,
textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(19, 22, 28, 0.8);
    border: 1px solid var(--border-dim);
    border-radius: 16px;
    color: #fff;
    font-family: inherit;
    transition: all 0.3s;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    background: rgba(19, 22, 28, 1);
}

.social-links {
    flex: 1;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 28px;
    padding: 32px;
    border: 1px solid var(--border-dim);
    transition: all 0.3s;
}

.social-links:hover {
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.social-links h3 {
    margin-bottom: 24px;
    color: var(--gold);
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
    color: #E8EDF2;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    text-decoration: none;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-icons a::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    padding: 2px;
    background: var(--gold-gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.social-icons a::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, var(--glow), transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: -1;
}

.social-icons a:hover {
    color: #FFFFFF;
    transform: translateY(-8px) scale(1.1);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
    box-shadow: 0 8px 30px rgba(93, 142, 199, 0.25), 0 0 60px rgba(93, 142, 199, 0.1);
}

.social-icons a:hover::before {
    opacity: 1;
}

.social-icons a:hover::after {
    width: 80px;
    height: 80px;
}

.social-icons a:active {
    transform: translateY(-3px) scale(0.95);
}

.social-icons a:hover .fa-facebook { color: #1877F2; }
.social-icons a:hover .fa-twitter { color: #1DA1F2; }
.social-icons a:hover .fa-instagram { color: #E4405F; }
.social-icons a:hover .fa-linkedin { color: #0A66C2; }
.social-icons a:hover .fa-youtube { color: #FF0000; }
.social-icons a:hover .fa-github { color: #FFFFFF; }
.social-icons a:hover .fa-dev { color: #0A0A0A; }
.social-icons a:hover .fa-discord { color: #5865F2; }
.social-icons a:hover .fa-telegram { color: #26A5E4; }
.social-icons a:hover .fa-whatsapp { color: #25D366; }
.social-icons a:hover .fa-tiktok { color: #000000; text-shadow: 2px 0 0 #00f2ea, -2px 0 0 #ff0050; }
.social-icons a:hover .fa-pinterest { color: #E60023; }
.social-icons a:hover .fa-snapchat { color: #FFFC00; text-shadow: 0 0 10px rgba(255, 252, 0, 0.5); }
.social-icons a:hover .fa-reddit { color: #FF4500; }
.social-icons a:hover .fa-twitch { color: #9146FF; }
.social-icons a:hover .fa-spotify { color: #1DB954; }
.social-icons a:hover .fa-soundcloud { color: #FF5500; }
.social-icons a:hover .fa-medium { color: #000000; }
.social-icons a:hover .fa-email { color: #EA4335; }
.social-icons a:hover .fa-phone { color: #34B7F1; }
.social-icons a:hover .fa-map-marker { color: #EA4335; }

/* Footer */
footer {
    text-align: center;
    padding: 32px 0;
    color: var(--text-muted);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 1px;
    background: var(--gold);
}

/* Admin Link */
.admin-login-link {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(31, 35, 44, 0.9);
    backdrop-filter: blur(10px);
    padding: 10px 16px;
    border-radius: 40px;
    font-size: 0.8rem;
    z-index: 99;
    transition: all 0.3s;
    border: 1px solid var(--border-dim);
}

.admin-login-link:hover {
    background: var(--card-bg-solid);
    border-color: var(--gold);
    transform: scale(1.05);
}

.admin-login-link a {
    color: var(--gold);
    text-decoration: none;
}

/* Form Feedback */
#formFeedback {
    margin-top: 16px;
}

.success-message {
    color: var(--success);
    animation: fadeIn 0.5s;
}

.error-message {
    color: var(--danger);
    animation: shake 0.5s;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .profile-img img {
        width: 260px;
        height: 260px;
    }
}

@media (max-width: 768px) {
    .mobile-menu {
        display: block;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: rgba(10, 12, 16, 0.95);
        backdrop-filter: blur(20px);
        padding: 20px;
        gap: 20px;
        position: absolute;
        top: 70px;
        left: 0;
        border-radius: 0 0 20px 20px;
        animation: slideDown 0.3s ease;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }
    
    .nav-links a {
        display: block;
        padding: 10px 0;
        font-size: 1.1rem;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .hero {
        flex-direction: column-reverse;
        text-align: center;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-role {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .profile-img img {
        width: 200px;
        height: 200px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .skills-grid,
    .projects-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-flex {
        flex-direction: column;
    }

    section {
        padding: 40px 0 60px 0;
    }

    .container {
        padding: 0 16px;
    }

    #trekkingDistination {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 10px;
    }

    .trekking-header h2 {
        font-size: 1.8rem;
    }

    .trekking-header p {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .project-icon i {
        font-size: 2.8rem;
    }

    .project-info h3 {
        font-size: 1.2rem;
    }

    .project-info p {
        font-size: 0.9rem;
    }

    .project-info {
        padding: 20px;
    }

    .trekking.destinations {
        gap: 12px;
    }

    .trekking.destination {
        font-size: 0.8rem;
    }

    #skillsContainer .skill-card {
        padding: 20px 24px !important;
    }

    #skillsContainer .skill-card:hover {
        transform: scale(1.01);
    }

    #skillsContainer .skill-card:hover .skill-info {
        transform: scale(1.02);
    }

    #skillsContainer .skill-card:hover .skill-name {
        transform: scale(1.02);
    }

    #skillsContainer .skill-name {
        font-size: 0.9rem;
    }

    #skillsContainer .skill-name::before {
        margin-right: 10px;
        font-size: 0.9rem;
    }

    #skillsContainer .skill-info {
        gap: 12px;
        margin-bottom: 12px;
    }

    .social-icons {
        gap: 16px;
    }

    .social-icons a {
        width: 46px;
        height: 46px;
        font-size: 1.3rem;
    }

    .hero-message-wrapper {
        padding: 30px 15px 20px 15px;
    }

    .hero-message-text {
        font-size: 1.15rem;
        line-height: 1.9;
        padding: 0 10px;
    }

    .hero-message-text::first-letter {
        font-size: 2.2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 15px 0;
    }

    .about-wrapper {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .profile-img img {
        width: 160px;
        height: 160px;
    }

    .social-icons {
        justify-content: center;
        gap: 12px;
    }

    .social-icons a {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .admin-login-link {
        bottom: 10px;
        right: 10px;
        padding: 6px 12px;
        font-size: 0.7rem;
    }

    .trekking.destinations {
        flex-direction: column;
        gap: 10px;
    }

    .project-info {
        padding: 15px;
    }

    .project-icon {
        padding: 30px 20px 20px;
    }

    .project-icon i {
        font-size: 2.5rem;
    }

    .trekking-header h2 {
        font-size: 1.5rem;
    }

    .hero-message-text {
        font-size: 1rem;
        line-height: 1.8;
    }

    .hero-message-wrapper {
        padding: 20px 10px 15px 10px;
    }

    .service-card {
        padding: 15px 20px;
    }

    .section-title {
        font-size: 1.5rem;
    }
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s;
}

.loading.hide {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--border-dim);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Print Styles */
@media print {
    body::before {
        display: none;
    }
    
    .admin-login-link,
    .mobile-menu {
        display: none;
    }
}