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

:root {
  --teal: #0ea5a4;
  --teal-dark: #0f766e;
  --navy: #0f172a;
  --text: #1e293b;
  --muted: #64748b;
  --bg: #f0f4f5;
  --white: #ffffff;
  --border: #e2e8f0;
  --radius: 16px;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ═══════════════════════════════════════════
   NAVBAR
 ═══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 2000;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  transition: all 0.4s cubic-bezier(0.165,0.84,0.44,1);
  animation: navFadeDown 0.7s cubic-bezier(0.22,1,0.36,1) 0.1s both;
}

@keyframes navFadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.navbar.scrolled {
  background: #ffffff;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(14,165,164,0.15);
}

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

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

.logo { display: flex; align-items: center; text-decoration: none; }
.logo img {
  height: 56px; transform: translateY(2px);
  transition: transform 0.4s ease;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.03));
}
.logo:hover img { transform: translateY(2px) scale(1.04); }

.nav-links { display: flex; align-items: center; gap: 4px; }

.nav-links a {
  text-decoration: none; color: #475569; font-weight: 600;
  font-size: 13.5px; letter-spacing: 0.8px; text-transform: uppercase;
  padding: 10px 14px; transition: all 0.3s ease;
  white-space: nowrap; position: relative; background: transparent !important;
}
.nav-links a:hover,
.nav-links a.active { color: #0ea5a4; }

.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 50%;
  width: 0; height: 2px; background: #0ea5a4;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  transform: translateX(-50%); opacity: 0; border-radius: 2px;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 60%; opacity: 1; }

/* Desktop: hamburger hidden */
.hamburger { display: none; }
.apply-btn-mobile { display: none; }

.apply-btn {
  background: rgba(14,165,164,0.08); color: #0b9090;
  border: 1px solid rgba(14,165,164,0.2); padding: 10px 24px;
  border-radius: 8px; font-weight: 600; font-size: 13px;
  letter-spacing: 0.5px; text-transform: uppercase; cursor: pointer;
  transition: all 0.3s ease;
}
.apply-btn:hover {
  background: #0ea5a4; color: #ffffff; border-color: #0ea5a4;
  transform: translateY(-2px); box-shadow: 0 6px 16px rgba(14,165,164,0.25);
}

.nav-backdrop { display: none; }

/* ═══════════════════════════════════════════
   NAVBAR MOBILE
 ═══════════════════════════════════════════ */
@media (max-width: 768px) {
    .nav-container { padding: 0 20px; height: 64px; }
    .logo img { height: 48px; }

    /* ── Styled Solid Drawer ── */
    .nav-links {
        display: flex !important;
        position: fixed;
        top: 0;
        right: -100%; 
        width: 100vw; 
        height: 100vh;
        background: #ffffff; 
        border-left: 4px solid #0ea5a4;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 100px 40px 40px; 
        z-index: 3000;
        gap: 30px; 
        transition: right 0.6s cubic-bezier(0.85, 0, 0.15, 1);
        overflow: hidden;
        pointer-events: all; 
        box-shadow: -10px 0 30px rgba(0,0,0,0.08);
    }
    
    .nav-links.open { right: 0; }

    /* ── Refined Navigation Links ── */
    .nav-links a {
        font-size: 2.2rem; 
        font-weight: 800; 
        padding: 10px 0;
        width: 100%;
        text-align: left;
        color: #0f172a; 
        background: transparent !important;
        text-transform: uppercase; 
        letter-spacing: -0.03em;
        border-bottom: none !important;
        transition: color 0.3s ease, transform 0.3s ease;
        position: relative;
    }
    
    .nav-links a:hover,
    .nav-links a.active { color: #0ea5a4; }
    
    .nav-links a.active::before {
        content: '';
        position: absolute;
        left: -24px;
        top: 50%;
        transform: translateY(-50%);
        width: 8px;
        height: 8px;
        background: #0ea5a4;
        border-radius: 50%;
        box-shadow: 0 0 15px rgba(14, 165, 164, 0.5);
    }

    .nav-links a::after { display: none !important; }

    /* ── Styled Apply Button ── */
    .apply-btn-mobile {
        display: flex !important;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #0ea5a4 0%, #2dd4bf 100%) !important;
        color: #ffffff !important;
        border: none;
        padding: 18px 40px;
        font-weight: 700;
        font-size: 1.1rem;
        text-decoration: none;
        margin-top: 20px;
        width: 100%;
        max-width: 280px;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(14, 165, 164, 0.3);
        transition: all 0.3s ease !important;
    }
    
    .apply-btn-mobile:active { transform: scale(0.97); }

    /* Instant appearance for links (animations removed as per user preference) */
    .nav-links.open a,
    .nav-links.open .apply-btn-mobile { 
        opacity: 1;
        transform: none;
    }-shadow: 0 10px 30px rgba(14, 165, 164, 0.3);
        transition: all 0.3s ease !important;
    }
    
    .apply-btn-mobile:active { transform: scale(0.97); }

    /* ── Custom Staggered Entrance ── */
    .nav-links.open a,
    .nav-links.open .apply-btn-mobile { 
        animation: drawerItemReveal 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; 
    }
    
    .nav-links.open a:nth-child(1) { animation-delay: 0.15s; }
    .nav-links.open a:nth-child(2) { animation-delay: 0.22s; }
    .nav-links.open a:nth-child(3) { animation-delay: 0.29s; }
    .nav-links.open a:nth-child(4) { animation-delay: 0.36s; }
    .nav-links.open a:nth-child(5) { animation-delay: 0.43s; }
    .nav-links.open .apply-btn-mobile { animation-delay: 0.55s; }

    @keyframes drawerItemReveal { 
        to { 
            opacity: 1; 
            transform: translate(0, 0); 
        } 
    }

    /* ── Hamburger Icon Refinement ── */
    .hamburger {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 44px; height: 44px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 3100;
        position: relative;
    }
    
    .hamburger span {
        display: block; 
        width: 24px; 
        height: 2px;
        background: #1e293b; 
        border-radius: 4px;
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        position: absolute;
    }
    
    .hamburger span:nth-child(1) { transform: translateY(-7px); }
    .hamburger span:nth-child(2) { transform: translateY(0); }
    .hamburger span:nth-child(3) { transform: translateY(7px); }

    .hamburger.open span:nth-child(1) { transform: translateY(0) rotate(45deg); background: #0ea5a4; }
    .hamburger.open span:nth-child(2) { opacity: 0; transform: scale(0.2); }
    .hamburger.open span:nth-child(3) { transform: translateY(0) rotate(-45deg); background: #0ea5a4; }

    /* ── UI Backdrop ── */
    .nav-backdrop {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(15, 23, 42, 0.5); 
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        z-index: 2500;
    }
    .nav-backdrop.visible { display: block; }
    .apply-btn { display: none !important; }
}

/* ═══════════════ HERO ═══════════════ */
.t-hero {
  text-align: center;
  padding: 100px 24px 50px;
  background: linear-gradient(135deg,#99d9d5 0%,#f0fafa 40%,#d4eeec 70%,#79e1da 100%);
}

.t-hero h1 {
  font-size: clamp(2rem,5vw,3rem);
  font-weight: 800; color: var(--navy);
  margin-bottom: 16px; letter-spacing: -0.02em;
}
.t-hero h1 span { color: var(--teal); }

.t-hero > p {
  font-size: clamp(0.9rem,1.5vw,1.05rem);
  color: var(--muted); max-width: 520px;
  margin: 0 auto 36px; line-height: 1.7;
}

.t-rating-bar {
  display: inline-flex; align-items: center; gap: 24px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 14px; padding: 18px 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  flex-wrap: wrap; justify-content: center;
}

.t-rating-score { text-align: left; }
.t-rating-score .score { font-size: 1.8rem; font-weight: 800; color: var(--navy); line-height: 1; }
.t-stars { display: flex; gap: 3px; margin: 4px 0 2px; }
.t-stars svg { width: 16px; height: 16px; }
.t-rating-score .label { font-size: 0.7rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }

.t-divider { width: 1px; height: 44px; background: var(--border); }

.t-avatars { display: flex; align-items: center; }
.t-avatars img { width: 48px; height: 48px; border-radius: 50%; border: 2px solid var(--white); margin-left: -10px; object-fit: cover; }
.t-avatars img:first-child { margin-left: 0; }
.t-avatar-count { width: 48px; height: 48px; border-radius: 50%; background: var(--teal); color: #fff; font-size: 0.75rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin-left: -10px; border: 2px solid var(--white); }

.t-verified-big { text-align: center; }
.t-verified-big strong { display: block; font-size: 1rem; font-weight: 700; color: var(--navy); }
.t-verified-big span { font-size: 0.82rem; color: var(--muted); }


/* ═══════════════ FILTERS ═══════════════ */
.t-filters {
  display: flex; justify-content: center;
  gap: 10px; padding: 50px 24px 40px; flex-wrap: wrap;
}

.t-filter-btn {
  padding: 9px 22px; border-radius: 100px;
  border: 1.5px solid var(--border); background: var(--white);
  color: var(--muted); font-size: 0.88rem; font-weight: 500;
  cursor: pointer; font-family: 'Outfit', sans-serif; transition: all 0.22s;
}
.t-filter-btn:hover { border-color: var(--teal); color: var(--teal); }
.t-filter-btn.active {
  background: var(--teal); color: #fff; border-color: var(--teal);
  box-shadow: 0 4px 14px rgba(14,165,164,0.28);
}

/* ═══════════════ GRID ═══════════════ */
.t-grid-wrap {
  padding: 0 40px;
  max-width: 1280px;
  margin: 0 auto;
}

.t-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  align-items: stretch;
}

/* ═══════════════ CARDS ═══════════════ */
.t-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  display: flex; flex-direction: column;
  transition: box-shadow 0.3s, transform 0.3s;
  animation: fadeCard 0.4s ease both;
}

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

.t-card:hover { box-shadow: 0 12px 36px rgba(14,165,164,0.12); transform: translateY(-4px); }

.t-card.featured {
  border-color: var(--teal);
  background: linear-gradient(135deg,#f0fafa,#fff);
  box-shadow: 0 4px 20px rgba(14,165,164,0.1);
}

.t-card-top {
  display: flex; align-items: flex-start;
  justify-content: space-between; margin-bottom: 14px;
}

.t-profile { display: flex; align-items: center; gap: 12px; }

.t-avatar-wrap { position: relative; flex-shrink: 0; width: 44px; height: 44px; }
.t-avatar-wrap img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }

.t-linkedin-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: #0A66C2;
  border-radius: 8px;
  flex-shrink: 0;
  text-decoration: none;
  opacity: 0;
  transform: translateY(-6px) scale(0.85);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
  pointer-events: none;
}
.t-linkedin-badge:hover { transform: scale(1.1); opacity: 0.9; }
.t-linkedin-badge svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.t-card:hover .t-linkedin-badge {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
  box-shadow: 0 4px 14px rgba(10, 102, 194, 0.40);
}

.t-linkedin-badge:hover {
  background: #004182;
  transform: translateY(-2px) scale(1.08) !important;
  box-shadow: 0 8px 20px rgba(10, 102, 194, 0.50) !important;
}

.t-profile-info strong { display: block; font-size: 0.92rem; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.t-profile-info span { font-size: 0.75rem; color: var(--muted); }

.t-card-stars { display: flex; gap: 2px; margin-bottom: 12px; }
.t-card-stars svg { width: 15px; height: 15px; }

.t-card-quote { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.4; }

.t-card-text {
  font-size: 0.85rem; color: var(--muted);
  line-height: 1.7; margin-bottom: 16px; flex: 1;
}

.t-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.t-tag {
  background: rgba(14,165,164,0.08); color: var(--teal);
  border: 1px solid rgba(14,165,164,0.2); border-radius: 100px;
  padding: 4px 12px; font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
}

/* ═══════════════ LOAD MORE ═══════════════ */
.t-load-wrap { text-align: center; padding: 40px 24px; }

.t-load-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1.5px solid var(--border);
  color: var(--text); padding: 13px 32px; border-radius: 12px;
  font-size: 0.92rem; font-weight: 600; cursor: pointer;
  font-family: 'Outfit', sans-serif; transition: all 0.25s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.t-load-btn:hover { border-color: var(--teal); color: var(--teal); }
.t-load-btn svg { width: 16px; height: 16px; transition: transform 0.3s; }
.t-load-btn:hover svg { transform: translateY(3px); }

.t-show-less { border-color: var(--teal) !important; color: var(--teal) !important; }

/* ═══════════════ CTA ═══════════════ */

  .t-cta {
  margin: 60px 40px 80px;
   background: var(--teal);
  border-radius: 24px; padding: 64px 60px;
  text-align: center; position: relative; overflow: hidden;
}
.t-cta::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px,transparent 1px),
                    linear-gradient(90deg,rgba(255,255,255,0.05) 1px,transparent 1px);
  background-size: 50px 50px; pointer-events: none;
}
.t-cta h2 { font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 800; color: #fff; margin-bottom: 14px; position: relative; z-index: 1; }
.t-cta > p { color: rgba(255,255,255,0.82); font-size: 0.95rem; max-width: 440px; margin: 0 auto 32px; line-height: 1.65; position: relative; z-index: 1; }
.t-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.t-cta-primary {
  padding: 14px 32px; background: #fff; color: var(--teal);
  border: none; border-radius: 12px; font-weight: 700; font-size: 0.95rem;
  cursor: pointer; font-family: 'Outfit', sans-serif; transition: all 0.25s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.t-cta-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,0.2); }
.t-cta-secondary {
  padding: 14px 32px; background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.5); border-radius: 12px;
  font-weight: 600; font-size: 0.95rem; cursor: pointer;
  font-family: 'Outfit', sans-serif; transition: all 0.25s;
}
.t-cta-secondary:hover { background: rgba(255,255,255,0.15); border-color: #fff; transform: translateY(-3px); }
.t-cta-note { margin-top: 18px; font-size: 0.78rem; color: rgba(255,255,255,0.5); position: relative; z-index: 1; }

/* ═══════════════ FOOTER ═══════════════ */
.athenura-footer { background: #0ea5a4; color: #fff; font-family: 'Outfit',sans-serif; padding-top: 60px; }
.footer-container {
  max-width: 1400px; margin: auto; padding: 0 60px 80px;
  display: grid; grid-template-columns: 1.6fr 1fr 1.4fr 1.2fr 1.6fr;
  gap: 50px; align-items: start;
}
.footer-col { min-width: 0; }
.footer-col h3 { font-size: 20px; font-weight: 600; color: #fff; margin-bottom: 28px; }
.footer-logo { width: 160px; margin-bottom: 18px; display: block; }
.branding p { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,0.88); margin-bottom: 24px; max-width: 230px; }
.follow-us-text { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 14px; display: block; }
.social-links { display: flex; gap: 10px; }
.social-icon { width: 40px; height: 40px; background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; flex-shrink: 0; transition: transform 0.25s,box-shadow 0.25s; }
.social-icon svg { width: 18px; height: 18px; }
.social-links a:nth-child(1){color:#0A66C2;} .social-links a:nth-child(2){color:#E1306C;} .social-links a:nth-child(3){color:#1DA1F2;} .social-links a:nth-child(4){color:black;}
.social-icon:hover { transform: translateY(-4px); box-shadow: 0 8px 20px rgba(0,0,0,0.15); }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 16px; }
.footer-col ul li a { color: rgba(255,255,255,0.88); text-decoration: none; font-size: 15px; display: inline-block; transition: all 0.25s; }
.footer-col ul li a:hover { color: #d6f1f3; transform: translateX(4px); text-decoration: underline; }
.info-row { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.white-circle { width: 30px; height: 30px; background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.25s; }
.white-circle svg { width: 15px; height: 15px; display: block; }
.email-icon{color:#e11d48;} .phone-icon{color:#22c55e;}
.info-text { line-height: 1.4; }
.info-text span { display: block; font-size: 11px; text-transform: uppercase; color: rgba(255,255,255,0.7); letter-spacing: 0.8px; margin-bottom: 3px; }
.info-text a { font-size: 15px; font-weight: 600; color: #fff; text-decoration: none; }
.info-row:hover .white-circle { transform: translateY(-4px); box-shadow: 0 8px 20px rgba(0,0,0,0.15); }
.footer-col iframe { width: 100%; height: 160px; border: none; border-radius: 10px; display: block; margin-top: 4px; }
.address { margin-top: 10px; font-size: 14px; color: rgba(255,255,255,0.88); display: flex; align-items: flex-start; gap: 6px; line-height: 1.5; }
.address::before { content: "📍"; font-size: 13px; flex-shrink: 0; margin-top: 1px; }
.footer-bottom-bar { padding: 0; }
.bottom-content{max-width:1400px;margin:auto;padding:30px 60px 50px;border-top:1px solid rgba(255,255,255,0.2);display:flex;justify-content:space-between;align-items:center;font-size:14px;color:rgba(255,255,255,0.85);}
.bottom-content p a{color:#fff;text-decoration:none;transition:opacity 0.25s;}
.bottom-content p a:hover{opacity:0.8;text-decoration:underline;}
.legal-links{display:flex;gap:30px;}
.legal-links a{color:rgba(255,255,255,0.85);text-decoration:none;font-size:14px;}

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 1024px) {
  .t-grid { grid-template-columns: repeat(2,1fr); }
  .t-grid-wrap { padding: 0 28px; }
  .t-cta { margin: 40px 28px 70px; padding: 52px 40px; }
}

@media (max-width: 768px) {
  .t-hero { padding: 100px 20px 40px; }
  .t-rating-bar { gap: 16px; padding: 16px 20px; }
  .t-divider { display: none; }
  .t-grid { grid-template-columns: 1fr; }
  .t-grid-wrap { padding: 0 20px; }
  .t-filters { padding: 50px 16px 32px; gap: 8px; }
  .t-filter-btn { padding: 8px 16px; font-size: 0.82rem; }
  .t-cta { margin: 40px 20px 60px; padding: 44px 24px; }
  .t-cta-btns { flex-direction: column; align-items: center; }
  .t-cta-primary, .t-cta-secondary { width: 100%; max-width: 280px; }
}

@media (max-width: 480px) {
  .t-hero h1 { font-size: 1.8rem; }
  .t-grid-wrap { padding: 0 16px; }
  .t-cta { margin: 40px 16px 50px; padding: 36px 20px; }
  .t-rating-bar { flex-direction: column; align-items: center; text-align: center; gap: 12px; }
  .t-rating-score { text-align: center; }
}


/* Responsive (exactly as original) */
    @media (max-width: 1024px) {
      .footer-container {
        grid-template-columns: 1.6fr 1fr 1.4fr 1.2fr 1.6fr;
        gap: 40px;
        padding: 0 40px 60px;
      }
    }

    @media (max-width: 1200px) {
      .bottom-content {
        padding: 18px 40px 44px;
      }
    }
    @media (max-width: 768px) {
      .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        padding: 0 24px 60px;
      }
      .footer-col.branding {
        grid-column: 1 / -1;
      }
      .bottom-content {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        text-align: center;
        padding: 20px 24px 40px;
      }
    }

    @media (min-width: 480px) and (max-width: 1024px) {
      .footer-container {
        grid-template-columns: 1fr 1fr;
      }
      .branding {
        grid-column: span 2;
      }
      .branding p {
        max-width: 100%;
      }
    }

    @media (max-width: 480px) {
      .footer-container {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 20px 50px;
      }
      .bottom-content {
        padding: 14px 20px 36px;
      }
      .legal-links {
        gap: 16px;
      }
      .legal-links a {
        font-size: 13px;
      }
    } 