/* ===== VARIABLES ===== */
:root {
    --bg-primary: #0a1628;
    --bg-secondary: #111d33;
    --bg-card: #162036;
    --bg-card-hover: #1c2a47;
    --accent: #2dd4a8;
    --accent-dark: #1a8a6e;
    --accent-glow: rgba(45, 212, 168, 0.15);
    --text-primary: #e2e8f0;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --border: #1e3a5f;
    --header-bg: rgba(10, 22, 40, 0.95);
    --max-width: 1200px;
    --radius: 12px;
    --transition: 0.3s ease;
}

/* ===== RESET ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--accent-dark);
}

ul {
    list-style: none;
}

/* ===== UTILITIES ===== */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.text-accent {
    color: var(--accent);
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 0.75rem auto 0;
    border-radius: 2px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn--primary {
    background: var(--accent);
    color: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.btn--primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.btn--primary:hover::after {
    width: 300px;
    height: 300px;
}

.btn--primary:hover {
    background: var(--accent-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px var(--accent-glow);
}

.btn--primary:active {
    transform: translateY(0) scale(0.97);
}

.btn--outline {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.btn--outline:hover {
    background: var(--accent);
    color: var(--bg-primary);
    transform: translateY(-2px);
}

.btn--small {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    background: var(--accent);
    color: var(--bg-primary);
    transition: all var(--transition);
}

.btn--small:hover {
    background: var(--accent-dark);
    color: #fff;
    transform: translateY(-1px);
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--header-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: all var(--transition);
}

.header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* Shrink logo when scrolled */
.header.scrolled .header__logo img {
    width: 55px;
    height: 55px;
    margin-top: 0;
    box-shadow: 0 0 15px var(--accent-glow), 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header.scrolled .header__logo img {
    margin-top: 5px;
}

.header.scrolled .header__logo::after {
    width: 67px;
    height: 67px;
    top: 3px;
}

.header__container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Header logo - oversized, overflows into content */
.header__logo {
    position: relative;
    z-index: 1001;
}

.header__logo img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    background: var(--bg-primary);
    padding: 4px;
    margin-top: 55px;
    box-shadow: 0 0 20px var(--accent-glow), 0 4px 12px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.header__logo:hover img {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 0 50px rgba(45, 212, 168, 0.35), 0 8px 30px rgba(0, 0, 0, 0.5);
    border-color: #fff;
    animation: none;
}

.header__logo:active img {
    transform: scale(0.95);
}

/* Logo glow ring on hover */
.header__logo::after {
    content: '';
    position: absolute;
    top: 53px;
    left: -6px;
    width: 132px;
    height: 132px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    pointer-events: none;
}

.header__logo:hover::after {
    border-color: var(--accent);
    box-shadow: 0 0 30px var(--accent-glow);
    animation: logoRingSpin 3s linear infinite;
}


@keyframes logoRingSpin {
    0% { transform: rotate(0deg); border-color: var(--accent); }
    50% { border-color: rgba(45, 212, 168, 0.3); }
    100% { transform: rotate(360deg); border-color: var(--accent); }
}

/* Header adjustments for bigger logo */
.header__container {
    height: 80px;
}

.header {
    overflow: visible;
}

.header__nav ul {
    display: flex;
    gap: 8px;
}

.header__nav a {
    color: var(--text-secondary);
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all var(--transition);
}

.header__nav a:hover,
.header__nav a.active {
    color: var(--accent);
    background: var(--accent-glow);
}

/* Hamburger */
.header__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.header__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition);
}

.header__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header__toggle.active span:nth-child(2) {
    opacity: 0;
}

.header__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.hero__content {
    max-width: 700px;
}

.hero__title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero__subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero__subtitle #typingText::after {
    content: '|';
    color: var(--accent);
    animation: blink 1s step-end infinite;
    margin-left: 2px;
    font-weight: 300;
}

.hero__subtitle #typingText:empty::before {
    content: '\00a0';
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero__text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 550px;
}

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

/* ===== CARDS / SERVICES ===== */
.services {
    padding: 80px 0;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

/* Cards with accent top bar */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    padding-top: 36px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: block;
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
}


/* Glowing top accent line */
.card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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


.card:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(45, 212, 168, 0.15), 0 0 60px rgba(45, 212, 168, 0.05);
    color: var(--text-primary);
}

.card__icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: var(--accent-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 1.25rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card:hover .card__icon {
    background: var(--accent);
    color: var(--bg-primary);
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 0 20px var(--accent-glow);
}

.card__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.card__text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== HIGHLIGHT / CTA ===== */
.highlight {
    padding: 60px 0 80px;
}

.highlight__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.highlight__item {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

/* Animated left accent bar */
.highlight__item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--accent);
    border-radius: 0 2px 2px 0;
    transition: all 0.4s ease;
    transform: translateY(-50%);
    box-shadow: 0 0 10px var(--accent-glow);
}

.highlight__item:hover::before {
    height: 60%;
}

.highlight__item:hover {
    border-color: rgba(45, 212, 168, 0.2);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.highlight__item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--accent);
}

.highlight__item p {
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

/* ===== PAGE HEADER (subpages) ===== */
.page-header {
    padding: 120px 0 50px;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    text-align: center;
}

.page-header h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.page-header p {
    color: var(--text-secondary);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== CONTENT SECTIONS (subpages) ===== */
.content-section {
    padding: 60px 0;
}

.content-section + .content-section {
    padding-top: 0;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.content-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.content-card__cta {
    margin-top: auto;
    padding-top: 16px;
}


.content-card:hover {
    border-color: var(--accent);
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(45, 212, 168, 0.12), 0 0 40px rgba(45, 212, 168, 0.05);
}

.content-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--accent);
    transition: transform 0.3s ease;
}

.content-card:hover h3 {
    transform: translateX(4px);
}

.content-card h3 i {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.content-card:hover h3 i {
    transform: scale(1.2) rotate(-10deg);
}

.content-card p, .content-card li {
    color: var(--text-secondary);
    line-height: 1.7;
}

.content-card ul {
    margin-top: 0.5rem;
}

.content-card li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.content-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
}

/* Feature list style */
.feature-list {
    display: grid;
    gap: 16px;
    margin-top: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item:hover {
    border-color: rgba(45, 212, 168, 0.3);
    transform: translateX(6px);
    box-shadow: -4px 0 15px var(--accent-glow);
}

.feature-item i {
    color: var(--accent);
    font-size: 1.25rem;
    margin-top: 2px;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-item:hover i {
    transform: scale(1.3);
    text-shadow: 0 0 15px var(--accent-glow);
}

.feature-item h4 {
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.feature-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Project showcase */
.project-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Bottom accent line that grows */
.project-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

.project-card:hover::after {
    width: 80%;
}

.project-card:hover {
    border-color: var(--accent);
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(45, 212, 168, 0.12), 0 0 40px rgba(45, 212, 168, 0.05);
}

.project-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.project-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.tag {
    display: inline-block;
    background: var(--accent-glow);
    color: var(--accent);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-right: 6px;
    margin-bottom: 6px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.tag:hover {
    background: var(--accent);
    color: var(--bg-primary);
    transform: scale(1.05);
    border-color: var(--accent);
}

/* ===== ABOUT PHOTO ===== */
.about-card-photo {
    position: relative;
    overflow: hidden;
}

.about-card-photo h3,
.about-card-photo p {
    padding-right: 150px;
}

.about-photo {
    position: absolute;
    top: 0;
    right: 0;
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-bottom-left-radius: 50%;
    border-top-right-radius: var(--radius);
    box-shadow: -4px 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-card-photo:hover .about-photo {
    transform: scale(1.03);
    box-shadow: -4px 4px 30px rgba(45, 212, 168, 0.2);
}

@media (max-width: 768px) {
    .about-card-photo h3,
    .about-card-photo p {
        padding-right: 0;
    }

    .about-card-photo {
        padding-top: 120px;
    }

    .about-photo {
        width: 140px;
        height: 140px;
        top: 0;
        right: 0;
    }
}

/* ===== CONTACT FORM ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

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

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-item i {
    color: var(--accent);
    font-size: 1.25rem;
    width: 24px;
    text-align: center;
}

.contact-info-item span {
    color: var(--text-secondary);
}

/* Form messages */
.form-message {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
}

.form-message--success {
    background: rgba(45, 212, 168, 0.1);
    border: 1px solid var(--accent);
    color: var(--accent);
}

.form-message--error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid #ef4444;
    color: #ef4444;
}

/* ===== TRAVEL MAP ===== */
.travel-stats {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.stat {
    text-align: center;
}

.stat__number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    transition: transform 0.3s ease;
}

.stat {
    transition: transform 0.3s ease;
    text-decoration: none;
    color: inherit;
}

a.stat {
    cursor: pointer;
}

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

.stat:hover .stat__number {
    transform: scale(1.15);
    text-shadow: 0 0 30px var(--accent-glow);
}

.stat__label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 4px;
}

.country-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.country-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: default;
}

.country-card:hover {
    border-color: var(--accent);
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 10px 30px rgba(45, 212, 168, 0.1), 0 0 0 1px var(--accent);
    background: var(--bg-card-hover);
}

.country-card .flag {
    font-size: 2.5rem;
    margin-bottom: 8px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
}

.country-card:hover .flag {
    transform: scale(1.3) rotate(-5deg);
}

.country-card h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.country-card:hover h4 {
    color: var(--accent);
}

.country-card .rating {
    color: #f59e0b;
    font-size: 0.9rem;
}

.country-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-top: 6px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 40px 0 20px;
    margin-top: 40px;
}

.footer__grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.footer__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.1rem;
}

.footer__brand img {
    border-radius: 6px;
}

.footer__links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer__links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer__links a:hover {
    color: var(--accent);
}

.footer__social a {
    color: var(--text-secondary);
    font-size: 1.2rem;
    padding: 8px;
    transition: color var(--transition);
}

.footer__social a:hover {
    color: var(--accent);
}

.footer__bottom {
    text-align: center;
    padding-top: 20px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ===== RESPONSIVE ===== */
/* ===== MOBILE OVERLAY ===== */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}


/* ===== NAV ACTIVE INDICATOR ===== */
.header__nav a {
    position: relative;
}

.header__nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
    transition: all 0.3s ease;
    transform: translateX(-50%);
    box-shadow: 0 0 8px transparent;
}

.header__nav a:hover::after,
.header__nav a.active::after {
    width: 70%;
    box-shadow: 0 0 8px var(--accent-glow);
}

.header__nav a.active {
    color: var(--accent);
}


/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays for grid children */
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }

/* Accent glow text hover */
.hero__title .text-accent {
    text-shadow: 0 0 30px rgba(45, 212, 168, 0.3);
    transition: text-shadow 0.4s ease;
}

.hero__title:hover .text-accent {
    text-shadow: 0 0 50px rgba(45, 212, 168, 0.5), 0 0 100px rgba(45, 212, 168, 0.2);
}

/* Section title glow on hover */
.section-title:hover::after {
    width: 120px;
    box-shadow: 0 0 20px var(--accent-glow);
}

.section-title::after {
    transition: width 0.4s ease, box-shadow 0.4s ease;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .header__toggle {
        display: flex;
    }

    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-secondary);
        border-left: 1px solid var(--border);
        padding: 80px 24px 24px;
        transition: right var(--transition);
        z-index: 999;
    }

    .header__nav.open {
        right: 0;
    }

    .header__nav ul {
        flex-direction: column;
        gap: 4px;
    }

    .header__nav a {
        display: block;
        padding: 12px 16px;
        font-size: 1.05rem;
    }

    .header__logo img {
        width: 80px;
        height: 80px;
        margin-top: 20px;
    }

    .header__logo::after {
        width: 92px;
        height: 92px;
        top: 18px;
    }

    .hero {
        padding: 110px 0 60px;
    }

    .hero__title {
        font-size: 2.2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer__grid {
        flex-direction: column;
        text-align: center;
    }

    .footer__links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero__cta {
        flex-direction: column;
    }

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

    .services__grid {
        grid-template-columns: 1fr;
    }

    .travel-stats {
        gap: 20px;
    }
}
