/* ===== SAKHA LAW FIRM - STYLES ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --gold: #b9883b;
  --gold-light: #d4a94e;
  --gold-dark: #9a7030;
  --black: #0a0a0a;
  --dark: #1a1a1a;
  --dark-grey: #2a2a2a;
  --medium-grey: #3a3a3a;
  --light-grey: #f5f5f3;
  --off-white: #fafaf8;
  --white: #ffffff;
  --cream: #f8f6f0;
  --warm-grey: #edeae4;
  --text-dark: #1a1a1a;
  --text-medium: #555555;
  --text-light: #888888;
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', 'Helvetica Neue', sans-serif;
  --font-accent: 'Cormorant Garamond', 'Georgia', serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
}

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

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.5px;
}

.nav-logo-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 2px;
  text-transform: uppercase;
}

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

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-medium);
  letter-spacing: 0.3px;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

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

/* Language Toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  background: var(--light-grey);
  border-radius: 20px;
  padding: 3px;
  cursor: pointer;
}

.lang-toggle button {
  border: none;
  background: transparent;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-medium);
  border-radius: 18px;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
  letter-spacing: 0.5px;
}

.lang-toggle button.active {
  background: var(--gold);
  color: var(--white);
}

/* Mobile menu */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: var(--transition);
  display: block;
}

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

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

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

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--black);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=1920&q=80') center/cover no-repeat;
  opacity: 0.15;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 60px 24px;
}

.hero-content {
  flex: 1;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 8px 20px;
  margin-bottom: 30px;
}

.hero h1 {
  font-size: 3.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero h1 span {
  color: var(--gold);
}

.hero-subtitle {
  font-family: var(--font-accent);
  font-size: 1.3rem;
  color: rgba(255,255,255,0.6);
  font-style: italic;
  margin-bottom: 40px;
  max-width: 500px;
  line-height: 1.6;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gold);
  color: var(--white);
  padding: 16px 36px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.hero-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(185,136,59,0.3);
}

.hero-cta svg {
  width: 20px;
  height: 20px;
}

.hero-image {
  flex: 0 0 400px;
  display: flex;
  justify-content: center;
}

.hero-image img {
  width: 320px;
  height: 320px;
  object-fit: contain;
  filter: drop-shadow(0 0 40px rgba(185,136,59,0.2));
}

/* ===== SECTION STYLES ===== */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-subtitle {
  font-family: var(--font-accent);
  font-size: 1.15rem;
  color: var(--text-medium);
  max-width: 600px;
  margin: 0 auto;
  font-style: italic;
}

.section-divider {
  width: 50px;
  height: 3px;
  background: var(--gold);
  margin: 20px auto;
}

/* ===== FOUNDER SECTION ===== */
.founder-section {
  background: var(--cream);
}

.founder-grid {
  display: flex;
  align-items: center;
  gap: 80px;
}

.founder-image-wrapper {
  flex: 0 0 380px;
  position: relative;
}

.founder-image-wrapper::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  right: 15px;
  bottom: 15px;
  border: 2px solid var(--gold);
  z-index: 0;
}

.founder-image-wrapper img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top;
}

.founder-info {
  flex: 1;
}

.founder-info h3 {
  font-size: 2rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.founder-info .founder-title {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 24px;
}

.founder-info p {
  color: var(--text-medium);
  margin-bottom: 16px;
  line-height: 1.8;
}

.founder-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.founder-credentials span {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 16px;
  background: var(--white);
  border: 1px solid rgba(185,136,59,0.3);
  color: var(--gold-dark);
  letter-spacing: 0.5px;
}

/* ===== WHY CHOOSE US ===== */
.why-section {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.why-card {
  text-align: center;
  padding: 40px 24px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
  background: var(--white);
}

.why-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.why-card .icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  background: var(--cream);
  border-radius: 50%;
  color: var(--gold);
}

.why-card .icon svg {
  width: 28px;
  height: 28px;
}

.why-card h4 {
  font-size: 1.05rem;
  margin-bottom: 12px;
  font-family: var(--font-heading);
}

.why-card p {
  font-size: 0.88rem;
  color: var(--text-medium);
  line-height: 1.6;
}

/* ===== SERVICES SECTION ===== */
.services-section {
  background: var(--light-grey);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  padding: 40px 32px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--gold);
  transition: height 0.4s ease;
}

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

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card .service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
}

.service-card .service-icon svg {
  width: 32px;
  height: 32px;
}

.service-card h4 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  font-family: var(--font-heading);
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-medium);
  line-height: 1.7;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: var(--cream);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  padding: 36px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  color: var(--gold);
  margin-bottom: 16px;
  font-size: 1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-family: var(--font-accent);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author-info h5 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
}

.testimonial-author-info span {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--black);
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
  margin-bottom: 36px;
}

.cta-section .hero-cta {
  font-size: 0.95rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 4px;
}

.footer-brand .subtitle {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
}

.footer h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}

.footer-links a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  padding: 6px 0;
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.88rem;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-map {
  display: block;
  margin-top: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  transition: var(--transition);
}

.footer-map:hover {
  border-color: var(--gold);
}

.footer-map img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom .motto {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--gold);
}

/* ===== PAGE HEADER (for sub-pages) ===== */
.page-header {
  background: var(--black);
  padding: 140px 0 60px;
  text-align: center;
}

.page-header h1 {
  font-size: 2.8rem;
  color: var(--white);
  margin-bottom: 12px;
}

.page-header p {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
}

.page-header .breadcrumb {
  margin-top: 20px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.page-header .breadcrumb a {
  color: var(--gold);
}

/* ===== COMPANY PROFILE ===== */
.profile-content {
  max-width: 800px;
  margin: 0 auto;
}

.profile-content h3 {
  font-size: 1.6rem;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.profile-content p {
  color: var(--text-medium);
  margin-bottom: 16px;
  line-height: 1.8;
}

.vision-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 32px;
}

.vm-card {
  padding: 40px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
}

.vm-card h4 {
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.vm-card p, .vm-card li {
  font-size: 0.92rem;
  color: var(--text-medium);
  line-height: 1.7;
}

.vm-card ul {
  padding-left: 0;
}

.vm-card li {
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
}

.vm-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 2px;
  background: var(--gold);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.value-card {
  text-align: center;
  padding: 32px 20px;
  border: 1px solid rgba(0,0,0,0.06);
  background: var(--white);
}

.value-card .value-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  background: var(--cream);
  border-radius: 50%;
}

.value-card h5 {
  font-size: 0.95rem;
  margin-bottom: 8px;
  font-family: var(--font-heading);
}

.value-card p {
  font-size: 0.82rem;
  color: var(--text-medium);
}

/* ===== NEWS / BLOG ===== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.news-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
  transition: var(--transition);
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.news-card-image {
  height: 200px;
  background: var(--light-grey);
  overflow: hidden;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-card-image img {
  transform: scale(1.05);
}

.news-card-body {
  padding: 28px;
}

.news-card-date {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.news-card-body h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  line-height: 1.4;
}

.news-card-body p {
  font-size: 0.88rem;
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 16px;
}

.news-read-more {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.news-read-more:hover {
  gap: 10px;
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--light-grey);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-item .gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: rgba(0,0,0,0.7);
  color: var(--white);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h5 {
  font-size: 0.9rem;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 4px;
}

.gallery-overlay p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(0,0,0,0.06);
  margin-bottom: 12px;
  background: var(--white);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 28px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 500;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--gold);
}

.faq-question .faq-icon {
  font-size: 1.2rem;
  color: var(--gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-question .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer-inner {
  padding: 0 28px 24px;
  font-size: 0.92rem;
  color: var(--text-medium);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* ===== PORTFOLIO ===== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.portfolio-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 36px;
  transition: var(--transition);
}

.portfolio-card:hover {
  box-shadow: var(--shadow-md);
}

.portfolio-card .case-type {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.portfolio-card h4 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.portfolio-card p {
  font-size: 0.88rem;
  color: var(--text-medium);
  line-height: 1.7;
}

.portfolio-card .result {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.06);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-dark);
}

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
}

/* ===== ADMIN STYLES ===== */
.admin-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-grey);
  padding-top: 80px;
}

.admin-login-box {
  background: var(--white);
  padding: 48px;
  max-width: 420px;
  width: 100%;
  border: 1px solid rgba(0,0,0,0.06);
  text-align: center;
}

.admin-login-box h2 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.admin-login-box p {
  font-size: 0.88rem;
  color: var(--text-medium);
  margin-bottom: 32px;
}

.admin-input-group {
  margin-bottom: 20px;
  text-align: left;
}

.admin-input-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.admin-input-group input,
.admin-input-group textarea,
.admin-input-group select {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  border: 1px solid rgba(0,0,0,0.12);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.admin-input-group input:focus,
.admin-input-group textarea:focus,
.admin-input-group select:focus {
  border-color: var(--gold);
}

.admin-input-group textarea {
  min-height: 120px;
  resize: vertical;
}

.admin-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.admin-btn-primary {
  background: var(--gold);
  color: var(--white);
}

.admin-btn-primary:hover {
  background: var(--gold-light);
}

.admin-btn-danger {
  background: #dc3545;
  color: var(--white);
}

.admin-btn-danger:hover {
  background: #c82333;
}

.admin-btn-secondary {
  background: var(--light-grey);
  color: var(--text-dark);
  border: 1px solid rgba(0,0,0,0.12);
}

.admin-btn-secondary:hover {
  background: var(--warm-grey);
}

.admin-panel {
  padding-top: 100px;
  min-height: 100vh;
  background: var(--light-grey);
}

.admin-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 32px;
  background: var(--white);
  padding: 6px;
  border: 1px solid rgba(0,0,0,0.06);
}

.admin-tab {
  flex: 1;
  padding: 12px 20px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-medium);
}

.admin-tab.active {
  background: var(--gold);
  color: var(--white);
}

.admin-content {
  background: var(--white);
  padding: 36px;
  border: 1px solid rgba(0,0,0,0.06);
  margin-bottom: 32px;
}

.admin-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(0,0,0,0.06);
  margin-bottom: 12px;
  background: var(--off-white);
}

.admin-item img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  flex-shrink: 0;
}

.admin-item-info {
  flex: 1;
}

.admin-item-info h5 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.admin-item-info p {
  font-size: 0.8rem;
  color: var(--text-medium);
}

.admin-item-actions {
  display: flex;
  gap: 8px;
}

.admin-item-actions button {
  padding: 6px 14px;
  font-size: 0.75rem;
}

.admin-form {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.admin-form h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
}

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

.admin-error {
  color: #dc3545;
  font-size: 0.82rem;
  margin-top: 8px;
}

.admin-success {
  color: #28a745;
  font-size: 0.82rem;
  margin-top: 8px;
}

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

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

/* ===== NAV DROPDOWN ===== */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  cursor: pointer;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  transform: translateX(-50%) translateY(10px);
  padding: 8px 0;
  z-index: 100;
}

.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.85rem;
  color: var(--text-medium);
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  background: var(--cream);
  color: var(--gold);
}

.nav-dropdown-menu a::after {
  display: none;
}

/* ===== MOBILE NAV OVERLAY ===== */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-dark);
  padding: 8px 0;
}

.mobile-nav a:hover {
  color: var(--gold);
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 900;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--gold-dark);
  transform: translateY(-3px);
}

/* ===== NEWS DETAIL ===== */
.news-detail {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px;
}

.news-detail h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.news-detail .news-meta {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 32px;
}

.news-detail .news-body {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-medium);
}

.news-detail .news-body p {
  margin-bottom: 16px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero h1 { font-size: 3rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

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

  .hero h1 { font-size: 2.4rem; }
  .hero-subtitle { margin: 0 auto 40px; }
  .hero-image { flex: 0 0 auto; }
  .hero-image img { width: 220px; height: 220px; }

  .founder-grid {
    flex-direction: column;
    gap: 40px;
  }
  .founder-image-wrapper { flex: 0 0 auto; width: 100%; max-width: 350px; margin: 0 auto; }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .vision-mission-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: 1fr; }

  .section { padding: 64px 0; }
  .section-title { font-size: 2rem; }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .admin-form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}
