/* ===== PROFESSIONAL LAW FIRM WEBSITE STYLES ===== */

/* Import Professional Fonts */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700;900&family=Open+Sans:wght@300;400;600;700&family=Playfair+Display:wght@400;700;900&display=swap');

/* ===== GLOBAL STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: #2c3e50;
  line-height: 1.7;
  font-size: 16px;
  background-color: #fafbfc;
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
  color: #1d3557;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: #1d3557;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
  position: relative;
}

/* Golden line only for homepage hero title */
.index-page .hero-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #bfa14c 0%, #a7893b 100%);
  border-radius: 2px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1d3557;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

/* Removed section-title golden line - only homepage should have it */

.hero-subtitle {
  font-size: 1.3rem;
  color: #6c757d;
  margin-bottom: 2rem;
  font-weight: 400;
  line-height: 1.6;
}

/* ===== NAVBAR ENHANCEMENTS ===== */
.navbar {
  background: linear-gradient(135deg, #1b1f2b 0%, #2c3e50 100%);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  padding: 1rem 0;
}

.navbar-brand {
  font-family: 'Merriweather', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #bfa14c !important;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
}

.navbar-brand:hover {
  color: #fff !important;
  transform: scale(1.02);
}

.brand-logo {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(191, 161, 76, 0.1);
  border-radius: 50%;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.navbar-brand:hover .brand-logo {
  background: rgba(191, 161, 76, 0.2);
  transform: rotate(5deg);
}

.brand-name {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
}

.brand-subtitle {
  font-size: 0.7rem;
  color: #bfa14c;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.8;
}

.navbar-nav .nav-link {
  color: #fff !important;
  font-weight: 600;
  font-size: 1rem;
  margin: 0 0.5rem;
  padding: 0.75rem 1rem !important;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #bfa14c 0%, #a7893b 100%);
  transition: all 0.3s ease;
  z-index: -1;
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
  left: 0;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #fff !important;
  transform: translateY(-2px);
}

/* ===== BUTTON ENHANCEMENTS ===== */
.cta-btn {
  background: linear-gradient(135deg, #bfa14c 0%, #a7893b 100%);
  border: none;
  border-radius: 50px;
  padding: 15px 35px;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  box-shadow: 0 8px 25px rgba(191, 161, 76, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #a7893b 0%, #8f6f2a 100%);
  transition: all 0.3s ease;
  z-index: -1;
}

.cta-btn:hover::before {
  left: 0;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(191, 161, 76, 0.4);
  color: #fff;
}

.cta-btn:active {
  transform: translateY(-1px);
}

/* ===== CARD ENHANCEMENTS ===== */
.card {
  border: none;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
  background: #fff;
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #bfa14c 0%, #a7893b 100%);
  transform: scaleX(0);
  transition: all 0.3s ease;
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-title {
  color: #1d3557;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.card-text {
  color: #6c757d;
  line-height: 1.7;
  font-size: 1rem;
}

/* ===== ICON PLACEHOLDER ENHANCEMENTS ===== */
.icon-placeholder {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #bfa14c 0%, #a7893b 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 25px rgba(191, 161, 76, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.icon-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #a7893b 0%, #8f6f2a 100%);
  opacity: 0;
  transition: all 0.3s ease;
}

.icon-placeholder:hover::before {
  opacity: 1;
}

.icon-placeholder:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(191, 161, 76, 0.4);
}

.icon-placeholder img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.icon-placeholder:hover img {
  transform: scale(1.1);
}

/* ===== IMAGE PLACEHOLDER ENHANCEMENTS ===== */
.img-placeholder {
  width: 100%;
  height: 350px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}

.img-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(191, 161, 76, 0.1) 0%, rgba(167, 137, 59, 0.1) 100%);
  opacity: 0;
  transition: all 0.3s ease;
}

.img-placeholder:hover::before {
  opacity: 1;
}

.img-placeholder:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  transition: all 0.3s ease;
  filter: brightness(1) contrast(1.05) saturate(1.1);
}

.img-placeholder:hover img {
  transform: scale(1.05);
  filter: brightness(1.05) contrast(1.1) saturate(1.2);
}

/* ===== PROFESSIONAL IMAGE STYLING ===== */
.professional-image {
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  filter: brightness(1) contrast(1.05) saturate(1.1);
}

.professional-image:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
  filter: brightness(1.05) contrast(1.1) saturate(1.2);
}

/* ===== LEGAL ICON ENHANCEMENTS ===== */
.legal-icon {
  color: #bfa14c;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(191, 161, 76, 0.3));
}

.legal-icon:hover {
  color: #a7893b;
  transform: scale(1.1);
  filter: drop-shadow(0 4px 8px rgba(191, 161, 76, 0.4));
}

/* ===== PROFESSIONAL BADGE STYLING ===== */
.professional-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #bfa14c 0%, #a7893b 100%);
  color: white;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(191, 161, 76, 0.3);
  transition: all 0.3s ease;
}

.professional-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(191, 161, 76, 0.4);
}

.professional-badge i {
  margin-right: 0.5rem;
  font-size: 1rem;
}

/* ===== SECTION STYLING ===== */
.hero-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(29,53,87,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(29,53,87,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(29,53,87,0.03)"/><circle cx="10" cy="60" r="0.5" fill="rgba(29,53,87,0.03)"/><circle cx="90" cy="40" r="0.5" fill="rgba(29,53,87,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.5;
}

.intro-section {
  background: #fff;
  position: relative;
}

.intro-text {
  max-width: 800px;
  font-size: 1.2rem;
  color: #6c757d;
  line-height: 1.8;
  text-align: center;
  margin: 0 auto;
}

.practice-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.page-banner {
  background: linear-gradient(135deg, #1d3557 0%, #2c5282 50%, #3182ce 100%);
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

/* ===== CTA FOOTER ENHANCEMENTS ===== */
.cta-footer {
  background: linear-gradient(135deg, #1b1f2b 0%, #2c3e50 100%);
  position: relative;
  overflow: hidden;
}

.cta-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(191,161,76,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(191,161,76,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(191,161,76,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(191,161,76,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(191,161,76,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.5;
}

.cta-footer h2,
.cta-footer h3 {
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

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

.fade-in-left {
  animation: fadeInLeft 0.8s ease-out;
}

.fade-in-right {
  animation: fadeInRight 0.8s ease-out;
}

.pulse-animation {
  animation: pulse 2s infinite;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .brand-name {
    font-size: 1rem;
  }
  
  .brand-subtitle {
    font-size: 0.65rem;
  }
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .navbar-nav .nav-link {
    margin: 0.25rem 0;
    text-align: center;
    padding: 0.75rem 1rem !important;
  }
  
  .navbar-brand {
    font-size: 1rem;
  }
  
  .brand-logo {
    width: 35px;
    height: 35px;
    font-size: 1.3rem;
  }
  
  .brand-name {
    font-size: 0.95rem;
  }
  
  .brand-subtitle {
    font-size: 0.6rem;
  }
  
  .testimonial-card,
  .award-card {
    margin-bottom: 2rem;
  }
  
  .certification-item {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
  }
  
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .intro-text {
    font-size: 1.1rem;
  }
  
  .cta-btn {
    width: 100%;
    padding: 18px 30px;
    font-size: 1rem;
  }
  
  .icon-placeholder {
    width: 80px;
    height: 80px;
  }
  
  .icon-placeholder img {
    width: 50px;
    height: 50px;
  }
  
  .navbar-brand {
    font-size: 0.9rem;
  }
  
  .brand-logo {
    width: 30px;
    height: 30px;
    font-size: 1.1rem;
  }
  
  .brand-name {
    font-size: 0.85rem;
  }
  
  .brand-subtitle {
    font-size: 0.55rem;
  }
  
  .navbar-nav .nav-link {
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem !important;
  }
  
  .navbar-nav .nav-link i {
    font-size: 0.8rem;
  }
  
  .testimonial-text {
    font-size: 0.95rem;
  }
  
  .testimonial-text::before {
    font-size: 2.5rem;
    top: -8px;
    left: -8px;
  }
  
  .cert-icon i {
    font-size: 2.5rem !important;
  }
  
  .award-icon i {
    font-size: 2.5rem !important;
  }
  
  .card-body {
    padding: 1.5rem;
  }
  
  .page-banner {
    padding: 3rem 0 !important;
  }
  
  .hero-section {
    padding: 3rem 0 !important;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  
  .section-title {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }
  
  .navbar-brand {
    font-size: 0.8rem;
  }
  
  .brand-logo {
    width: 25px;
    height: 25px;
    font-size: 1rem;
  }
  
  .brand-name {
    font-size: 0.75rem;
  }
  
  .brand-subtitle {
    font-size: 0.5rem;
  }
  
  .navbar-nav .nav-link {
    font-size: 0.85rem;
    padding: 0.4rem 0.5rem !important;
  }
  
  .navbar-nav .nav-link i {
    font-size: 0.7rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .intro-text {
    font-size: 1rem;
  }
  
  .cta-btn {
    padding: 15px 25px;
    font-size: 0.9rem;
  }
  
  .icon-placeholder {
    width: 70px;
    height: 70px;
  }
  
  .icon-placeholder img {
    width: 45px;
    height: 45px;
  }
  
  .testimonial-text {
    font-size: 0.9rem;
  }
  
  .testimonial-text::before {
    font-size: 2rem;
    top: -6px;
    left: -6px;
  }
  
  .cert-icon i {
    font-size: 2rem !important;
  }
  
  .award-icon i {
    font-size: 2rem !important;
  }
  
  .card-body {
    padding: 1.25rem;
  }
  
  .page-banner {
    padding: 2.5rem 0 !important;
  }
  
  .hero-section {
    padding: 2.5rem 0 !important;
  }
  
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .row {
    margin-left: -10px;
    margin-right: -10px;
  }
  
  .col-md-6,
  .col-md-4,
  .col-md-3 {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.6rem;
  }
  
  .section-title {
    font-size: 1.4rem;
  }
  
  .navbar-brand {
    font-size: 0.75rem;
  }
  
  .brand-logo {
    width: 22px;
    height: 22px;
    font-size: 0.9rem;
  }
  
  .brand-name {
    font-size: 0.7rem;
  }
  
  .brand-subtitle {
    font-size: 0.45rem;
  }
  
  .navbar-nav .nav-link {
    font-size: 0.8rem;
    padding: 0.35rem 0.4rem !important;
  }
  
  .navbar-nav .nav-link i {
    font-size: 0.65rem;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
  }
  
  .intro-text {
    font-size: 0.95rem;
  }
  
  .cta-btn {
    padding: 12px 20px;
    font-size: 0.85rem;
  }
  
  .icon-placeholder {
    width: 60px;
    height: 60px;
  }
  
  .icon-placeholder img {
    width: 40px;
    height: 40px;
  }
  
  .testimonial-text {
    font-size: 0.85rem;
  }
  
  .cert-icon i {
    font-size: 1.8rem !important;
  }
  
  .award-icon i {
    font-size: 1.8rem !important;
  }
  
  .card-body {
    padding: 1rem;
  }
  
  .page-banner {
    padding: 2rem 0 !important;
  }
  
  .hero-section {
    padding: 2rem 0 !important;
  }
}

/* ===== LANDSCAPE ORIENTATION ===== */
@media (max-height: 500px) and (orientation: landscape) {
  .hero-section {
    padding: 2rem 0 !important;
  }
  
  .page-banner {
    padding: 2rem 0 !important;
  }
  
  .hero-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  
  .section-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
}

/* ===== HIGH DPI DISPLAYS ===== */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .brand-logo,
  .icon-placeholder,
  .cert-icon,
  .award-icon {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

/* ===== PRINT OPTIMIZATION ===== */
@media print {
  .navbar,
  .cta-footer,
  .cta-btn,
  .testimonials-section,
  .awards-section {
    display: none !important;
  }
  
  .hero-section,
  .page-banner {
    background: none !important;
    color: #000 !important;
  }
  
  .hero-title,
  .section-title {
    color: #000 !important;
  }
  
  .card {
    border: 1px solid #ddd !important;
    box-shadow: none !important;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
    color: #000;
  }
  
  a {
    color: #000 !important;
    text-decoration: underline !important;
  }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.testimonial-card {
  border: none;
  border-radius: 20px;
  transition: all 0.3s ease;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #bfa14c 0%, #a7893b 100%);
  transform: scaleX(0);
  transition: all 0.3s ease;
}

.testimonial-card:hover::before {
  transform: scaleX(1);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-rating {
  font-size: 1.2rem;
}

.testimonial-text {
  font-style: italic;
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial-text::before {
  content: '"';
  font-size: 3rem;
  color: #bfa14c;
  position: absolute;
  top: -10px;
  left: -10px;
  font-family: serif;
}

.testimonial-author h6 {
  color: #1d3557;
  font-weight: 700;
}

/* ===== CERTIFICATIONS SECTION ===== */
.certifications-section {
  background: #fff;
}

.certification-item {
  transition: all 0.3s ease;
  padding: 1rem;
  border-radius: 15px;
}

.certification-item:hover {
  transform: translateY(-5px);
  background: rgba(191, 161, 76, 0.05);
}

.cert-icon {
  transition: all 0.3s ease;
}

.certification-item:hover .cert-icon {
  transform: scale(1.1);
}

.certification-item h6 {
  color: #1d3557;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* ===== AWARDS SECTION ===== */
.awards-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.award-card {
  border: none;
  border-radius: 20px;
  transition: all 0.3s ease;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.award-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #bfa14c 0%, #a7893b 100%);
  transform: scaleX(0);
  transition: all 0.3s ease;
}

.award-card:hover::before {
  transform: scaleX(1);
}

.award-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.award-icon {
  transition: all 0.3s ease;
}

.award-card:hover .award-icon {
  transform: scale(1.1) rotate(5deg);
}

.award-card .card-title {
  color: #1d3557;
  font-weight: 700;
  margin-bottom: 1rem;
}

.award-card .card-text {
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* ===== ANIMATION ENHANCEMENTS ===== */
.testimonial-card,
.certification-item,
.award-card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }

.certification-item:nth-child(1) { animation-delay: 0.1s; }
.certification-item:nth-child(2) { animation-delay: 0.2s; }
.certification-item:nth-child(3) { animation-delay: 0.3s; }
.certification-item:nth-child(4) { animation-delay: 0.4s; }

.award-card:nth-child(1) { animation-delay: 0.1s; }
.award-card:nth-child(2) { animation-delay: 0.2s; }
.award-card:nth-child(3) { animation-delay: 0.3s; }

/* ===== PRINT STYLES ===== */
@media print {
  .navbar,
  .cta-footer,
  .cta-btn {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
  }
  
  .hero-title,
  .section-title {
    color: #000 !important;
  }
}
