/*!
Theme Name: ABR IT Group Pro
Theme URI: https://abritgroup.com
Author: ABR IT Group
Author URI: https://abritgroup.com
Description: Professional IT Solutions Theme - Your Digital Growth Partner (Pro Version)
Version: 2.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: abr-it-group
Domain Path: /languages
Requires at least: 5.0
Requires PHP: 7.4
*/

/* =============================================
   GLOBAL STYLES
   ============================================= */

:root {
  --primary-blue: #0B2D5C;
  --secondary-gold: #C9A24D;
  --white: #FFFFFF;
  --light-grey: #F5F7FA;
  --dark-text: #1a1a1a;
  --accent-green: #00D084;
  --accent-red: #FF4444;
  --border-color: #e0e0e0;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html, body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--dark-text);
  background-color: var(--white);
  line-height: 1.6;
}

body {
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(1.75rem, 5vw, 3.5rem);
  color: var(--primary-blue);
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--primary-blue);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--primary-blue);
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #555;
}

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

a:hover {
  color: var(--secondary-gold);
}

/* =============================================
   BUTTONS
   ============================================= */

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
  font-size: 1rem;
  text-align: center;
}

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

.btn-primary:hover {
  background-color: var(--secondary-gold);
  color: var(--primary-blue);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(11, 45, 92, 0.3);
}

.btn-secondary {
  background-color: var(--secondary-gold);
  color: var(--primary-blue);
}

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

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

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

/* =============================================
   CONTAINER & LAYOUT
   ============================================= */

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

.section {
  padding: clamp(40px, 10vw, 80px) 0;
}

.section-light {
  background-color: var(--light-grey);
}

.section-dark {
  background-color: var(--primary-blue);
  color: var(--white);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

/* =============================================
   HEADER & NAVIGATION
   ============================================= */

header {
  background-color: var(--white);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 50px;
  width: auto;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
}

nav a {
  color: var(--dark-text);
  font-weight: 500;
  position: relative;
}

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

nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}

.search-icon {
  cursor: pointer;
  font-size: 1.2rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  background: none;
  border: none;
  padding: 10px;
  margin-right: 10px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--primary-blue);
  border-radius: 2px;
  transition: var(--transition);
}

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

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

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

/* =============================================
   HERO SECTION - MOBILE FRIENDLY
   ============================================= */

.hero {
  background: linear-gradient(135deg, var(--light-grey) 0%, var(--white) 100%);
  padding: clamp(40px, 10vw, 100px) 0;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(1.75rem, 6vw, 3.5rem);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-text p {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  margin-bottom: 30px;
  color: #666;
}

.hero-cta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-images {
  position: relative;
  height: auto;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-image-card {
  position: relative;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.hero-image-card:first-child {
  width: 280px;
  height: 220px;
  margin-bottom: 20px;
}

.hero-image-card:last-child {
  width: 240px;
  height: 220px;
  align-self: flex-end;
  margin-left: 20px;
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-decoration {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

/* =============================================
   CONTACT PAGE STYLES
   ============================================= */

.contact-card {
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1) !important;
}

.custom-contact-form input:focus,
.custom-contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-blue) !important;
  box-shadow: 0 0 0 3px rgba(11, 45, 92, 0.1);
}

.social-links a:hover {
  background-color: var(--primary-blue) !important;
  color: var(--white) !important;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  
  .form-group {
    grid-template-columns: 1fr !important;
  }
}

/* =============================================
   SERVICES GRID
   ============================================= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background-color: var(--white);
  border: 2px dashed var(--primary-blue);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.service-card:hover {
  border-color: var(--secondary-gold);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(11, 45, 92, 0.15);
}

.service-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background-color: var(--light-grey);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 0.95rem;
  color: #666;
}

/* =============================================
   REFINED PROCESS SECTION
   ============================================= */

.process-section-refined {
  padding: clamp(40px, 10vw, 100px) 0;
  background-color: #ffffff;
}

.process-header {
  text-align: center;
  margin-bottom: 60px;
}

.process-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0B2D5C;
  margin-bottom: 20px;
}

.process-subtitle {
  font-size: 1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.process-card {
  background: #ffffff;
  border: 1px solid #f0f0f0;
  padding: 40px 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.03);
  transition: var(--transition);
  border-radius: 8px;
}

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.icon-box {
  width: 50px;
  height: 50px;
  background: #0B2D5C;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  flex-shrink: 0;
}

.icon-box svg {
  width: 24px;
  height: 24px;
}

.step-num {
  font-size: 2rem;
  font-weight: 700;
  color: #C9A24D;
  opacity: 0.8;
}

.card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0B2D5C;
  margin-bottom: 15px;
}

.card-desc {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
}

.card-divider {
  height: 1px;
  background: #eeeeee;
  margin-bottom: 20px;
}

.card-list {
  list-style: none;
  padding: 0;
}

.card-list li {
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 10px;
  padding-left: 15px;
  position: relative;
}

.card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  background: #C9A24D;
  border-radius: 1px;
}

/* Stats Bar */
.stats-bar {
  background: #0B2D5C;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 50px 20px;
  border-radius: 8px;
  gap: 20px;
}

.stat-box {
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.stat-box:last-child {
  border-right: none;
}

.stat-val {
  font-size: 2.5rem;
  font-weight: 800;
  color: #C9A24D;
  margin-bottom: 10px;
}

.stat-lbl {
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 1px;
}

/* =============================================
   EXPERTISE SECTION
   ============================================= */

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.expertise-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.expertise-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(11, 45, 92, 0.15);
}

.expertise-icon {
  width: 60px;
  height: 60px;
  background-color: var(--light-grey);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.expertise-content h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.expertise-content p {
  font-size: 0.95rem;
  color: #666;
}

/* =============================================
   FOOTER STYLES - PRO VERSION
   ============================================= */

.site-footer {
  background: linear-gradient(135deg, #0B2D5C 0%, #05162e 100%);
  color: var(--white);
  padding: 80px 0 0;
  position: relative;
}

.footer-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  padding: 60px 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Section */
.footer-section {
  animation: slideInUp 0.6s ease-out;
}

.footer-section-header {
  margin-bottom: 30px;
}

.footer-section h3 {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--white);
  margin: 0;
  padding-bottom: 15px;
  position: relative;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary-gold), transparent);
  border-radius: 2px;
}

.footer-section-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Contact Items */
.contact-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 12px 0;
  transition: var(--transition);
}

.contact-item:hover {
  transform: translateX(5px);
}

.contact-icon {
  font-size: 1.5rem;
  min-width: 30px;
  text-align: center;
}

.contact-details {
  flex: 1;
}

.contact-details strong {
  display: block;
  color: var(--secondary-gold);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.contact-details a,
.contact-details p {
  color: #adb5bd;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.contact-details a {
  text-decoration: none;
  transition: var(--transition);
}

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

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
  padding-left: 0;
}

.footer-links li a {
  color: #adb5bd;
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
  display: inline-block;
}

.footer-links li a::before {
  content: '›';
  position: absolute;
  left: -15px;
  opacity: 0;
  transition: var(--transition);
  color: var(--secondary-gold);
}

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

.footer-links li a:hover::before {
  opacity: 1;
  left: -20px;
}

/* Social Links Pro */
.social-links-pro {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.social-link-item {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.social-link-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--secondary-gold);
  z-index: -1;
  transition: var(--transition);
}

.social-link-item:hover::before {
  left: 0;
}

.social-link-item.facebook {
  background-color: rgba(59, 89, 152, 0.2);
  border: 2px solid #3b5998;
  color: #3b5998;
}

.social-link-item.facebook:hover {
  border-color: var(--secondary-gold);
  color: var(--primary-blue);
}

.social-link-item.linkedin {
  background-color: rgba(0, 119, 181, 0.2);
  border: 2px solid #0077b5;
  color: #0077b5;
}

.social-link-item.linkedin:hover {
  border-color: var(--secondary-gold);
  color: var(--primary-blue);
}

.social-link-item.twitter {
  background-color: rgba(29, 161, 242, 0.2);
  border: 2px solid #1da1f2;
  color: #1da1f2;
}

.social-link-item.twitter:hover {
  border-color: var(--secondary-gold);
  color: var(--primary-blue);
}

.social-link-item.instagram {
  background-color: rgba(217, 51, 89, 0.2);
  border: 2px solid #d93159;
  color: #d93159;
}

.social-link-item.instagram:hover {
  border-color: var(--secondary-gold);
  color: var(--primary-blue);
}

.social-icon-bg {
  font-size: 1.2rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

/* Footer Divider */
.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  margin: 0;
}

/* Footer Bottom */
.footer-bottom {
  padding: 30px 0;
  background-color: rgba(0, 0, 0, 0.2);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copyright {
  margin: 0;
  color: #adb5bd;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-copyright strong {
  color: var(--secondary-gold);
}

.footer-bottom-links {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom-link {
  color: #adb5bd;
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-bottom-link:hover {
  color: var(--secondary-gold);
}

.divider {
  color: rgba(255, 255, 255, 0.2);
}

/* Legacy footer classes for compatibility */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-widget h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-widget h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--secondary-gold);
}

.footer-widget ul {
  list-style: none;
}

.footer-widget ul li {
  margin-bottom: 12px;
}

.footer-widget ul li a {
  color: #adb5bd;
}

.footer-widget ul li a:hover {
  color: var(--secondary-gold);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  gap: 10px;
  color: #adb5bd;
}

.social-links {
  display: flex;
  gap: 15px;
}

/* =============================================
   RESPONSIVE DESIGN - TABLET
   ============================================= */

@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-images {
    min-height: 250px;
  }

  .hero-image-card:first-child {
    width: 250px;
    height: 200px;
  }

  .hero-image-card:last-child {
    width: 200px;
    height: 200px;
    margin-left: 15px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-box {
    border-right: none !important;
  }

  nav ul {
    gap: 20px;
  }
}

/* =============================================
   RESPONSIVE DESIGN - MOBILE
   ============================================= */

@media (max-width: 768px) {
  .header-wrapper {
    flex-wrap: wrap;
    gap: 10px;
  }

  .menu-toggle {
    display: flex;
  }

  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  nav.active {
    display: flex;
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  nav a {
    display: block;
    padding: 10px 0;
  }

  .header-actions {
    width: 100%;
    justify-content: flex-end;
    gap: 10px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 0.95rem;
  }

  .hero-cta {
    flex-direction: column;
    gap: 10px;
  }

  .hero-cta .btn {
    width: 100%;
    padding: 14px 20px;
  }

  .hero-images {
    min-height: 280px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .hero-image-card {
    position: relative;
    margin: 0 !important;
  }

  .hero-image-card:first-child {
    width: 100%;
    max-width: 280px;
    height: 220px;
  }

  .hero-image-card:last-child {
    width: 100%;
    max-width: 240px;
    height: 220px;
    align-self: center;
    margin-left: 0 !important;
  }

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

  .process-card {
    padding: 30px 20px;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    padding: 30px 15px;
  }

  .stat-val {
    font-size: 1.8rem;
  }

  .stat-lbl {
    font-size: 0.75rem;
  }

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

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

  .btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  .section {
    padding: clamp(30px, 8vw, 60px) 0;
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  p {
    font-size: 0.95rem;
  }
}

/* =============================================
   RESPONSIVE DESIGN - SMALL MOBILE
   ============================================= */

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

  .header-wrapper {
    padding: 10px 0;
  }

  .logo {
    font-size: 1.2rem;
  }

  .logo img {
    height: 40px;
  }

  .hero-text h1 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .hero-text p {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .hero-cta {
    gap: 8px;
  }

  .hero-image-card:first-child {
    max-width: 100%;
    height: 200px;
  }

  .hero-image-card:last-child {
    max-width: 100%;
    height: 200px;
  }

  .process-title {
    font-size: 1.5rem;
  }

  .process-subtitle {
    font-size: 0.9rem;
  }

  .process-card {
    padding: 20px 15px;
  }

  .card-title {
    font-size: 1.1rem;
  }

  .card-desc {
    font-size: 0.85rem;
  }

  .card-list li {
    font-size: 0.8rem;
  }

  .stats-bar {
    grid-template-columns: 1fr;
    padding: 20px 15px;
    gap: 15px;
  }

  .stat-val {
    font-size: 1.5rem;
  }

  .stat-lbl {
    font-size: 0.7rem;
  }

  .service-card {
    padding: 20px;
  }

  .service-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .service-card h3 {
    font-size: 1.1rem;
  }

  .service-card p {
    font-size: 0.85rem;
  }

  .btn {
    padding: 10px 16px;
    font-size: 0.9rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 0 30px;
  }

  .footer-bottom-content {
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }

  .footer-grid {
    gap: 30px;
  }

  .footer-widget h3 {
    font-size: 1rem;
  }

  .footer-widget ul li {
    font-size: 0.9rem;
  }

  .social-links-pro {
    justify-content: center;
  }

  .contact-item {
    padding: 10px 0;
  }

  .footer-section h3 {
    font-size: 1.1rem;
  }
}

/* =============================================
   ANIMATIONS
   ============================================= */

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animate-on-scroll {
  animation: slideInUp 0.6s ease-out;
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
button:focus,
a:focus {
  outline: 2px solid var(--secondary-gold);
  outline-offset: 2px;
}

/* Print styles */
@media print {
  header,
  .site-footer {
    display: none;
  }
}
