/* ===== CSS VARIABLES ===== */
:root {
  --primary-color: #1a365d;
  --secondary-color: #d4af37;
  --text-dark: #2d3748;
  --text-light: #718096;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
  overflow-x: hidden;
}

p {
  text-align: justify;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  line-height: 1.2;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  
}

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

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
}

/* ===== ACCESSIBILITY ===== */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary-color);
  color: white;
  padding: 8px;
  z-index: 100;
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  top: 0;
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--bg-white);
  box-shadow: var(--shadow-md);
  z-index: 1000;
  transition: var(--transition);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-section img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.logo-section img:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.logo-icon {
  font-size: 2rem;
  color: var(--secondary-color);
}

.brand-title {
  font-size: 1.25rem;
  color: var(--primary-color);
  margin-bottom: 0.125rem;
}

.brand-subtitle {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.registration-badge {
  background: var(--secondary-color);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 500;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--secondary-color);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--secondary-color);
}

.contact-cta {
  background: var(--primary-color);
  color: white !important;
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-md);
}

.contact-cta:hover {
  background: var(--secondary-color);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 0.5rem;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero-section {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.1);
  color: var(--secondary-color);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 500;
  transition: var(--transition);
}

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

.btn-primary:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
  background: var(--primary-color);
  color: white;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.hero-stats {
  display: flex;
  gap: 2rem;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
}

.stat-item i {
  color: var(--secondary-color);
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-icon-container {
  width: 300px;
  height: 300px;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow-lg);
}

.hero-icon {
  font-size: 8rem;
  color: white;
}

/* ===== SERVICES SECTION ===== */
.services-section {
  padding: 4rem 0;
  background: var(--bg-white);
}

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

.service-card {
  background: var(--bg-white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: var(--transition);
  border-top: 4px solid transparent;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--secondary-color);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: rgba(212, 175, 55, 0.1);
  color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1.5rem;
}

.service-icon i {
  font-size: 2rem;
}

.service-title {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.service-description {
  color: var(--text-light);
  text-align: justify;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 4rem 0;
  background: var(--bg-light);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-description {
  margin-bottom: 1.5rem;
  color: var(--text-light);
  text-align: justify;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-dark);
}

.feature-item i {
  color: var(--secondary-color);
}

.stats-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: var(--bg-white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  font-family: "Playfair Display", serif;
}

.stat-label {
  color: var(--text-light);
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
}

.company-details {
  background: var(--bg-white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  min-height: 280px;
}

.details-title {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
}

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

.detail-label {
  font-weight: 500;
  color: var(--text-dark);
}

.detail-value {
  color: var(--text-light);
  text-align: right;
}

/* ===== TEAM SECTION ===== */
.team-section {
  padding: 4rem 0;
  background: var(--bg-white);
}

.team-slider-section {
  margin-bottom: 2rem;
}

.team-swiper {
  width: 100%;
  margin: 0 auto;
  padding: 20px 0;
}

.team-swiper .swiper-slide {
  display: flex;
  justify-content: center;
}



/* Swiper Navigation Styles */
.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-color);
  background: rgba(255, 255, 255, 0.9);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 18px;
  font-weight: bold;
}

.swiper-pagination-bullet {
  background: var(--primary-color);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background: var(--secondary-color);
  opacity: 1;
}

/* Hide navigation on mobile for better UX */
@media (max-width: 768px) {
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}

/* Ensure pagination is visible */
.swiper-pagination {
  position: relative;
  margin-top: 20px;
  text-align: center;
}

.swiper-pagination-bullet {
  margin: 0 5px;
  width: 12px;
  height: 12px;
}

.team-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: var(--transition);
  height: 680px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

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

.team-photo {
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.photo-placeholder {
  width: 120px;
  height: 120px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  border: 4px solid var(--secondary-color);
  overflow: hidden;
}

.photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}

.initials {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  font-family: "Playfair Display", serif;
}

.team-name {
  font-size: 1.25rem;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.team-designation {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 0.75rem;
  text-align: center;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: rgba(212, 175, 55, 0.1);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-md);
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}

.team-expertise {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  min-height: 40px;
  align-items: center;
}

.expertise-tag {
  background: rgba(212, 175, 55, 0.1);
  color: var(--secondary-color);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
  margin: 2px;
}

.team-bio {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  text-align: justify;
  flex-grow: 1;
  line-height: 1.3;
  font-size: 0.85rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 12;
  -webkit-box-orient: vertical;
}

.team-contact {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
  padding: 1rem 0;
  min-height: 40px;
  border-top: 1px solid var(--border-color);
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
  flex-shrink: 0;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.contact-icon:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.contact-icon i {
  font-size: 16px;
  display: block;
  line-height: 1;
}

.team-cta {
  text-align: center;
}

/* ===== BLOG SECTION ===== */
.blog-section {
  padding: 4rem 0;
  background: var(--bg-light);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.blog-card {
  background: var(--bg-white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.blog-category {
  display: inline-block;
  background: var(--secondary-color);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.blog-title {
  font-size: 1.25rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.blog-excerpt {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  text-align: justify;
}

.blog-link {
  color: var(--secondary-color);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.blog-link:hover {
  gap: 0.75rem;
}

.blog-cta {
  text-align: center;
}

/* ===== NOTICES SECTION ===== */
.notices-section {
  padding: 4rem 0;
  background: var(--bg-white);
}

.notices-timeline {
  max-width: 800px;
  margin: 0 auto;
}

.notice-item {
  display: flex;
  gap: 1.5rem;
  padding: 2.5rem 2rem;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
  transition: var(--transition);
  min-height: 120px;
  align-items: center;
}

.notice-item:hover {
  box-shadow: var(--shadow-md);
}

.notice-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.notice-icon.important {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.notice-icon.update {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}

.notice-icon.alert {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}

.notice-title {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.notice-text {
  color: var(--text-light);
  margin-bottom: 1rem;
  text-align: justify;
}

.notice-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.notice-date {
  color: var(--text-light);
  font-size: 0.875rem;
}

.notice-type {
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 500;
}

.notice-type.important {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.notice-type.update {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}

.notice-type.alert {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}

.notices-download {
  text-align: center;
  margin-top: 2rem;
}

.download-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--secondary-color);
  font-weight: 500;
}

/* ===== CERTIFICATION SECTION ===== */
.certification-section {
  padding: 4rem 0;
  background: var(--bg-light);
}

.certification-card {
  max-width: 700px;
  margin: 0 auto;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.cert-header {
  background: var(--primary-color);
  color: white;
  padding: 2rem;
  text-align: center;
}

.cert-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.cert-number {
  color: var(--secondary-color);
  font-size: 1.125rem;
  font-weight: 600;
}

.cert-body {
  padding: 2rem;
}

.cert-detail {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
}

.cert-detail:last-child {
  border-bottom: none;
}

.cert-label {
  font-weight: 500;
  color: var(--text-dark);
}

.cert-value {
  color: var(--text-light);
  text-align: right;
}

.cert-footer {
  background: var(--bg-light);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cert-verification {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #10b981;
}

.cert-verification i {
  font-size: 1.25rem;
}

.cert-download {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 4rem 0;
  background: var(--bg-white);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-items {
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item i {
  width: 24px;
  color: var(--secondary-color);
  margin-top: 0.25rem;
}

.contact-text h3 {
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.contact-text a {
  color: var(--text-light);
  transition: var(--transition);
  text-align: justify;
}

.contact-text p {
  text-align: justify;
}

.contact-text a:hover {
  color: var(--secondary-color);
}

.emergency-contact {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.emergency-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ef4444;
  margin-bottom: 0.5rem;
}

.emergency-number a {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ef4444;
}

.map-placeholder {
  background: var(--bg-light);
  border: 2px dashed var(--border-color);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  color: var(--text-light);
}

.contact-form {
  background: var(--bg-light);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  min-height: 400px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-family: inherit;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.required {
  color: #ef4444;
}

.error-message {
  display: block;
  color: #ef4444;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--primary-color);
  color: white;
  padding: 3rem 0 1rem;
}

.footer .container {
  padding: 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand {
  max-width: 400px;
}

.footer-section .logo-section {
  margin-bottom: 1rem;
}

.footer-section .brand-title {
  color: white;
  font-size: 1.125rem;
}

.registration-details {
  margin-bottom: 1.5rem;
}

.registration-details p {
  font-size: 0.875rem;
  opacity: 0.9;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

.footer-title {
  color: white;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.9);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--secondary-color);
}

.footer-contact p {
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.footer-contact a {
  color: var(--secondary-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

/* ===== MOBILE NAVIGATION ===== */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-white);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 999;
}

.mobile-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.75rem 0.5rem;
  color: var(--text-light);
  transition: var(--transition);
}

.mobile-nav-item.active {
  color: var(--secondary-color);
}

.mobile-nav-item i {
  font-size: 1.25rem;
}

.mobile-nav-item span {
  font-size: 0.75rem;
}

/* ===== FLOATING BUTTONS ===== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  z-index: 998;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  z-index: 997;
  opacity: 0;
  visibility: hidden;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

/* ===== TOAST NOTIFICATION ===== */
.toast {
  position: fixed;
  top: 2rem;
  right: 2rem;
  background: white;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-lg);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 9999;
  transform: translateX(400px);
  transition: var(--transition);
}

.toast.show {
  transform: translateX(0);
}

.toast-icon {
  color: #10b981;
  font-size: 1.25rem;
}

.toast-message {
  color: var(--text-dark);
  font-weight: 500;
}

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

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

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

  .logo-section img {
    width: 80px;
    height: 80px;
  }

  .brand-title {
    font-size: 1rem;
  }

  .brand-subtitle {
    font-size: 0.65rem;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--bg-white);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu.active ~ .mobile-menu-toggle .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-menu.active ~ .mobile-menu-toggle .hamburger-line:nth-child(2) {
    opacity: 0;
  }

  .nav-menu.active ~ .mobile-menu-toggle .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

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

  .about-features {
    grid-template-columns: 1fr;
  }

  .stats-container {
    grid-template-columns: 1fr 1fr;
  }

  .services-grid,
  .team-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  body {
    padding-bottom: 70px;
  }

  .section-title {
    font-size: 2rem;
  }

  .whatsapp-float {
    bottom: 5rem;
  }

  .team-card {
    height: auto;
    min-height: 600px;
  }

  .team-bio {
    font-size: 0.8rem;
    line-height: 1.3;
    -webkit-line-clamp: 10;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero-container {
    padding: 0 1rem;
  }

  .logo-section img {
    width: 70px;
    height: 70px;
  }

  .brand-title {
    font-size: 0.9rem;
  }

  .brand-subtitle {
    font-size: 0.6rem;
  }

  .service-card,
  .blog-card,
  .team-card,
  .contact-form {
    padding: 1.5rem 1rem;
    min-height: auto;
  }

  .notice-item {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  .cert-header,
  .cert-body,
  .cert-footer {
    padding: 1.5rem;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .notice-meta {
    justify-content: center;
  }
}
