/*!
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: 4.5.2
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: 70px;
  width: auto;
  max-width: 100%;
}

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: 40px 0 0;
  position: relative;
}

.footer-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 35px 0 25px;
  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: 18px;
}

.footer-section h3 {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: var(--white);
  margin: 0;
  padding-bottom: 10px;
  position: relative;
  font-weight: 700;
  letter-spacing: 0.3px;
}

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

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

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

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

.contact-icon {
  font-size: 1.3rem;
  min-width: 28px;
  text-align: center;
  flex-shrink: 0;
}

.contact-details {
  flex: 1;
}

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

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

.contact-details a {
  text-decoration: none;
  transition: color 0.25s ease, text-shadow 0.25s ease;
  position: relative;
}

.contact-details a:hover {
  color: var(--secondary-gold);
  text-shadow: 0 0 8px rgba(201, 162, 77, 0.3);
}

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

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

.footer-links li a {
  color: #adb5bd;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: inline-block;
}

.footer-links li a::before {
  content: '›';
  position: absolute;
  left: -12px;
  opacity: 0;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--secondary-gold);
}

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

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

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

.social-link-item {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  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: left 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.social-link-item:hover {
  transform: scale(1.08) translateY(-2px);
}

.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.1rem;
  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: 20px 0;
  background-color: rgba(0, 0, 0, 0.2);
}

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

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

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

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

.footer-bottom-link {
  color: #adb5bd;
  text-decoration: none;
  font-size: 0.8rem;
  transition: all 0.25s ease;
  position: relative;
}

.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;
    justify-content: space-between;
    padding: 10px 0;
  }

  .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 {
    display: none; /* Hide actions on mobile to save space, or move them into the menu */
  }

  .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: 60px;
  }

  .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;
  }
}


/* =============================================
   SERVICE DETAIL PAGES
   ============================================= */
.service-card-text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
  color: var(--primary-blue);
  font-weight: 700;
}

.service-card-text-link:hover {
  color: var(--secondary-gold);
}

.services-grid--detailed {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: stretch;
}

.service-card--detailed {
  display: flex;
  flex-direction: column;
  text-align: left;
  border: 1px solid #dfe6ef;
  padding: 32px;
  box-shadow: 0 8px 24px rgba(11, 45, 92, 0.06);
}

.service-card--detailed .service-icon {
  margin: 0 0 20px;
}

.service-card--detailed h2 {
  font-size: 1.35rem;
  margin-bottom: 14px;
}

.service-card-features {
  list-style: none;
  margin: 8px 0 28px;
  padding: 0;
}

.service-card-features li {
  color: #526170;
  font-size: 0.92rem;
  margin: 8px 0;
  padding-left: 22px;
  position: relative;
}

.service-card-features li::before {
  content: '✓';
  color: var(--secondary-gold);
  font-weight: 800;
  left: 0;
  position: absolute;
}

.service-card-link {
  margin-top: auto;
  width: 100%;
}

.service-detail-hero {
  background: linear-gradient(135deg, #0b2d5c 0%, #1a4d7a 100%);
  color: var(--white);
  padding: clamp(60px, 10vw, 110px) 0;
}

.service-back-link {
  color: rgba(255, 255, 255, 0.84);
  display: inline-block;
  font-size: 0.94rem;
  font-weight: 600;
  margin-bottom: 36px;
}

.service-back-link:hover {
  color: var(--secondary-gold);
}

.service-detail-hero-content {
  align-items: flex-start;
  display: grid;
  gap: 30px;
  grid-template-columns: auto minmax(0, 1fr);
  max-width: 960px;
}

.service-detail-icon {
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  display: flex;
  font-size: 3.2rem;
  height: 98px;
  justify-content: center;
  width: 98px;
}

.service-detail-eyebrow {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.4px;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.service-detail-eyebrow--dark {
  color: #9a772c;
}

.service-detail-hero h1,
.service-detail-hero h2 {
  color: var(--white);
  margin-bottom: 18px;
}

.service-detail-lead {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 760px;
}

.service-detail-two-column {
  align-items: center;
  display: grid;
  gap: clamp(35px, 7vw, 90px);
  grid-template-columns: minmax(0, 1.05fr) minmax(290px, 0.95fr);
}

.service-detail-panel {
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(11, 45, 92, 0.1);
  padding: clamp(25px, 4vw, 42px);
}

.service-detail-panel h3 {
  font-size: 1.35rem;
  margin-bottom: 22px;
}

.service-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-checklist li {
  border-bottom: 1px solid #e8edf3;
  color: #526170;
  line-height: 1.5;
  padding: 14px 0 14px 28px;
  position: relative;
}

.service-checklist li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.service-checklist li::before {
  content: '✓';
  color: var(--secondary-gold);
  font-weight: 800;
  left: 2px;
  position: absolute;
}

.service-detail-section-heading {
  margin-bottom: 36px;
  max-width: 680px;
}

.service-detail-section-heading h2 {
  margin-bottom: 0;
}

.service-process-grid,
.service-outcome-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-process-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(11, 45, 92, 0.05);
  padding: 28px 24px;
}

.service-process-number {
  color: var(--secondary-gold);
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.service-process-card p,
.service-outcome-card p {
  color: #526170;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.service-outcome-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-outcome-card {
  align-items: flex-start;
  background: #f8fafc;
  border: 1px solid #e4ebf2;
  border-radius: 12px;
  display: flex;
  gap: 13px;
  padding: 24px;
}

.service-outcome-card span {
  align-items: center;
  background: rgba(201, 162, 77, 0.16);
  border-radius: 50%;
  color: #9a772c;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 0.85rem;
  font-weight: 900;
  height: 23px;
  justify-content: center;
  margin-top: 2px;
  width: 23px;
}

.service-detail-cta {
  background: linear-gradient(135deg, #071f41 0%, #0b2d5c 100%);
  color: var(--white);
  padding: clamp(45px, 8vw, 72px) 0;
}

.service-detail-cta .container {
  align-items: center;
  display: flex;
  gap: 30px;
  justify-content: space-between;
}

.service-detail-cta h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.service-detail-cta > .container > div > p:not(.service-detail-eyebrow) {
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

@media (max-width: 992px) {
  .service-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .service-detail-hero-content,
  .service-detail-two-column,
  .service-outcome-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-hero-content {
    gap: 22px;
  }

  .service-detail-icon {
    font-size: 2.5rem;
    height: 78px;
    width: 78px;
  }

  .service-detail-cta .container {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .service-process-grid {
    grid-template-columns: 1fr;
  }

  .service-card--detailed {
    padding: 25px 20px;
  }
}


/* =============================================
   HOMEPAGE SERVICES — ANIMATED EXPERIENCE
   ============================================= */
.homepage-services {
  background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
  overflow: hidden;
  position: relative;
}

.homepage-services::before,
.homepage-services::after {
  border-radius: 50%;
  content: '';
  filter: blur(1px);
  pointer-events: none;
  position: absolute;
}

.homepage-services::before {
  animation: serviceAmbientFloat 12s ease-in-out infinite;
  background: radial-gradient(circle, rgba(201, 162, 77, 0.16) 0%, rgba(201, 162, 77, 0) 68%);
  height: 440px;
  right: -190px;
  top: 30px;
  width: 440px;
}

.homepage-services::after {
  animation: serviceAmbientFloat 15s ease-in-out infinite reverse;
  background: radial-gradient(circle, rgba(11, 45, 92, 0.1) 0%, rgba(11, 45, 92, 0) 68%);
  bottom: -250px;
  height: 520px;
  left: -250px;
  width: 520px;
}

.homepage-services .container {
  position: relative;
  z-index: 1;
}

.homepage-services-intro {
  margin: 0 auto 52px;
  max-width: 690px;
  opacity: 0;
  text-align: center;
  transform: translateY(24px);
}

.homepage-services-intro.is-visible {
  animation: serviceIntroReveal 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.homepage-services-eyebrow {
  color: #9a772c;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 11px;
  text-transform: uppercase;
}

.homepage-services-intro h2 {
  margin-bottom: 16px;
}

.homepage-services-intro > p:last-child {
  color: #5d6a78;
  margin: 0;
}

.homepage-services-grid {
  gap: 26px;
  margin-top: 0;
}

.homepage-service-card {
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(11, 45, 92, 0.12);
  box-shadow: 0 12px 32px rgba(11, 45, 92, 0.06);
  isolation: isolate;
  min-height: 252px;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  text-align: left;
  transform: translateY(38px) scale(0.96);
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.homepage-service-card.is-visible {
  animation: serviceCardReveal 0.72s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(var(--service-index) * 90ms);
}

.homepage-service-card:hover,
.homepage-service-card:focus-within {
  border-color: rgba(201, 162, 77, 0.72);
  box-shadow: 0 22px 44px rgba(11, 45, 92, 0.15);
  transform: translateY(-10px) scale(1.01);
}

.service-card-content {
  height: 100%;
  padding: 30px;
  position: relative;
  z-index: 2;
}

.homepage-service-card .service-icon {
  background: linear-gradient(135deg, #eef4fb, #ffffff);
  border: 1px solid rgba(11, 45, 92, 0.07);
  box-shadow: 0 8px 18px rgba(11, 45, 92, 0.08);
  margin: 0 0 20px;
  position: relative;
  transition: background 0.35s ease, box-shadow 0.35s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.homepage-service-card:hover .service-icon,
.homepage-service-card:focus-within .service-icon {
  animation: serviceIconFloat 1.8s ease-in-out infinite;
  background: linear-gradient(135deg, #fff8e8, #ffffff);
  box-shadow: 0 12px 22px rgba(201, 162, 77, 0.2);
}

.homepage-service-card h3 {
  margin-bottom: 11px;
  transition: color 0.3s ease;
}

.homepage-service-card:hover h3,
.homepage-service-card:focus-within h3 {
  color: #9a772c;
}

.homepage-service-card p {
  line-height: 1.65;
  margin-bottom: 20px;
}

.homepage-service-card .service-card-text-link {
  align-items: center;
  display: inline-flex;
  gap: 8px;
  margin-top: auto;
  position: relative;
}

.homepage-service-card .service-card-text-link span {
  display: inline-block;
  transition: transform 0.3s ease;
}

.homepage-service-card:hover .service-card-text-link span,
.homepage-service-card:focus-within .service-card-text-link span {
  transform: translateX(6px);
}

.service-card-glow {
  background: radial-gradient(circle, rgba(201, 162, 77, 0.2) 0%, rgba(201, 162, 77, 0) 68%);
  border-radius: 50%;
  height: 180px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  right: -80px;
  top: -80px;
  transition: opacity 0.4s ease, transform 0.6s ease;
  transform: scale(0.7);
  width: 180px;
  z-index: 0;
}

.homepage-service-card:hover .service-card-glow,
.homepage-service-card:focus-within .service-card-glow {
  opacity: 1;
  transform: scale(1.25);
}

.service-card-orbit {
  border: 1px solid rgba(11, 45, 92, 0.11);
  border-radius: 50%;
  bottom: -92px;
  height: 150px;
  pointer-events: none;
  position: absolute;
  right: -72px;
  transition: border-color 0.35s ease;
  width: 150px;
  z-index: 1;
}

.homepage-service-card:hover .service-card-orbit,
.homepage-service-card:focus-within .service-card-orbit {
  animation: serviceOrbitSpin 8s linear infinite;
  border-color: rgba(201, 162, 77, 0.45);
}

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

@keyframes serviceCardReveal {
  from {
    opacity: 0;
    transform: translateY(38px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes serviceIconFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-7px) rotate(4deg);
  }
}

@keyframes serviceOrbitSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes serviceAmbientFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-18px, 20px, 0) scale(1.08);
  }
}

@media (max-width: 768px) {
  .homepage-services-intro {
    margin-bottom: 36px;
  }

  .homepage-service-card {
    min-height: 0;
  }

  .service-card-content {
    padding: 26px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .homepage-services::before,
  .homepage-services::after,
  .homepage-service-card,
  .homepage-service-card.is-visible,
  .homepage-services-intro,
  .homepage-services-intro.is-visible,
  .homepage-service-card:hover .service-icon,
  .homepage-service-card:focus-within .service-icon,
  .homepage-service-card:hover .service-card-orbit,
  .homepage-service-card:focus-within .service-card-orbit {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}


/* =============================================
   FEATURED WEB DEVELOPMENT VISUAL CARD
   ============================================= */
.homepage-service-card--featured {
  grid-column: span 2;
  min-height: 350px;
}

.homepage-service-card--featured .service-card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 56%;
  padding: 42px;
}

.homepage-service-card--featured .service-card-content h3 {
  font-size: clamp(1.45rem, 2.1vw, 2rem);
}

.homepage-service-card--featured .service-card-content p {
  max-width: 360px;
}

.service-visual {
  background: #07122c;
  inset: 0 0 0 auto;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  width: 58%;
  z-index: 1;
}

.service-visual::before {
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.95) 5%, rgba(255, 255, 255, 0.12) 39%, rgba(3, 11, 37, 0.08) 100%);
  content: '';
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 2;
}

.service-visual::after {
  background: linear-gradient(180deg, rgba(0, 5, 20, 0) 50%, rgba(1, 6, 26, 0.6) 100%);
  content: '';
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 2;
}

.service-visual-media {
  display: block;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1) translate3d(var(--visual-parallax-x, 0px), var(--visual-parallax-y, 0px), 0);
  transition: filter 0.65s ease, transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.homepage-service-card--featured.is-visible .service-visual-media {
  animation: visualImageReveal 1.3s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: calc((var(--service-index) * 90ms) + 130ms);
}

.homepage-service-card--featured:hover .service-visual-media,
.homepage-service-card--featured:focus-within .service-visual-media {
  filter: saturate(1.18) contrast(1.05);
  transform: scale(1.2) translate3d(var(--visual-parallax-x, 0px), var(--visual-parallax-y, 0px), 0);
}

.service-visual-shine {
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.42) 49%, transparent 68%);
  height: 180%;
  left: -160%;
  opacity: 0;
  position: absolute;
  top: -42%;
  transform: rotate(8deg);
  transition: opacity 0.3s ease;
  width: 70%;
  z-index: 3;
}

.homepage-service-card--featured:hover .service-visual-shine,
.homepage-service-card--featured:focus-within .service-visual-shine {
  animation: visualShineSweep 1.15s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  opacity: 1;
}

.service-visual-scanline {
  background: linear-gradient(90deg, transparent 0%, rgba(35, 218, 255, 0.12) 25%, rgba(156, 102, 255, 0.7) 50%, rgba(35, 218, 255, 0.12) 75%, transparent 100%);
  box-shadow: 0 0 18px rgba(120, 126, 255, 0.65);
  height: 2px;
  left: 6%;
  opacity: 0;
  position: absolute;
  top: 10%;
  width: 90%;
  z-index: 4;
}

.homepage-service-card--featured.is-visible .service-visual-scanline {
  animation: visualScan 3.9s ease-in-out 1.1s infinite;
}

.service-visual-badge {
  align-items: center;
  background: rgba(6, 18, 55, 0.62);
  border: 1px solid rgba(103, 195, 255, 0.55);
  border-radius: 50%;
  bottom: 24px;
  box-shadow: 0 0 24px rgba(78, 164, 255, 0.34), inset 0 0 18px rgba(114, 72, 255, 0.18);
  color: #e8f7ff;
  display: flex;
  font-size: 0.72rem;
  font-weight: 800;
  height: 48px;
  justify-content: center;
  letter-spacing: 0.08em;
  position: absolute;
  right: 28px;
  text-transform: uppercase;
  transform: translateY(10px);
  width: 48px;
  z-index: 4;
}

.homepage-service-card--featured.is-visible .service-visual-badge {
  animation: visualBadgeFloat 3.2s ease-in-out 0.9s infinite;
}

.homepage-service-card--seo .service-visual-scanline {
  background: linear-gradient(90deg, transparent 0%, rgba(72, 255, 158, 0.13) 25%, rgba(74, 226, 150, 0.8) 50%, rgba(72, 255, 158, 0.13) 75%, transparent 100%);
  box-shadow: 0 0 18px rgba(74, 226, 150, 0.58);
}

.homepage-service-card--seo .service-visual-badge {
  border-color: rgba(74, 226, 150, 0.62);
  box-shadow: 0 0 24px rgba(74, 226, 150, 0.28), inset 0 0 18px rgba(74, 226, 150, 0.12);
}

@keyframes visualImageReveal {
  from {
    clip-path: inset(0 100% 0 0);
    opacity: 0.25;
    transform: scale(1.25);
  }
  to {
    clip-path: inset(0 0 0 0);
    opacity: 1;
    transform: scale(1.1) translate3d(var(--visual-parallax-x, 0px), var(--visual-parallax-y, 0px), 0);
  }
}

@keyframes visualShineSweep {
  from {
    left: -160%;
  }
  to {
    left: 150%;
  }
}

@keyframes visualScan {
  0%, 100% {
    opacity: 0;
    top: 12%;
  }
  12%, 72% {
    opacity: 0.95;
  }
  82% {
    opacity: 0;
    top: 88%;
  }
}

@keyframes visualBadgeFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 768px) {
  .homepage-service-card--featured {
    display: flex;
    flex-direction: column;
    grid-column: span 1;
  }

  .service-visual {
    height: 215px;
    inset: auto;
    order: 1;
    position: relative;
    width: 100%;
  }

  .service-visual::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 25%, rgba(255, 255, 255, 0.9) 100%);
  }

  .homepage-service-card--featured .service-card-content {
    max-width: none;
    order: 2;
    padding: 28px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .homepage-service-card--featured.is-visible .service-visual-media,
  .homepage-service-card--featured:hover .service-visual-shine,
  .homepage-service-card--featured:focus-within .service-visual-shine,
  .homepage-service-card--featured.is-visible .service-visual-scanline,
  .homepage-service-card--featured.is-visible .service-visual-badge {
    animation: none !important;
  }

  .service-visual-shine,
  .service-visual-scanline {
    display: none;
  }
}


/* =============================================
   PRO PROCESS EXPERIENCE UPGRADE
   ============================================= */

.process-section-refined {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 9vw, 120px) 0 clamp(64px, 8vw, 104px);
  color: #ffffff;
  background:
    radial-gradient(circle at 8% 18%, rgba(201, 162, 77, 0.18), transparent 30%),
    radial-gradient(circle at 92% 82%, rgba(0, 208, 132, 0.12), transparent 28%),
    linear-gradient(135deg, #071d3d 0%, #0b2d5c 48%, #06172f 100%);
  isolation: isolate;
}

.process-section-refined::before,
.process-section-refined::after {
  position: absolute;
  content: '';
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  z-index: -1;
}

.process-section-refined::before {
  width: 480px;
  height: 480px;
  top: -260px;
  right: -150px;
  box-shadow: 0 0 100px rgba(201, 162, 77, 0.12);
}

.process-section-refined::after {
  width: 360px;
  height: 360px;
  bottom: -230px;
  left: -140px;
  box-shadow: 0 0 100px rgba(0, 208, 132, 0.1);
}

.process-header {
  position: relative;
  max-width: 780px;
  margin: 0 auto clamp(48px, 6vw, 72px);
  text-align: center;
}

.process-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: #d9b86a;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.process-eyebrow::before,
.process-eyebrow::after {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: '';
  opacity: 0.75;
}

.process-title {
  margin-bottom: 18px;
  color: #ffffff;
  font-size: clamp(2rem, 4.8vw, 3.6rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.process-subtitle {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.96rem, 1.5vw, 1.08rem);
  line-height: 1.75;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: clamp(48px, 6vw, 72px);
}

.process-grid::before {
  position: absolute;
  top: 43px;
  right: 12%;
  left: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 162, 77, 0.7), rgba(255, 255, 255, 0.22), rgba(201, 162, 77, 0.7), transparent);
  content: '';
  opacity: 0.8;
}

.process-card {
  position: relative;
  z-index: 1;
  min-height: 100%;
  padding: 30px 28px 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(34px) scale(0.97);
  transition: opacity 0.7s cubic-bezier(0.2, 0.75, 0.25, 1), transform 0.7s cubic-bezier(0.2, 0.75, 0.25, 1), border-color 0.35s ease, box-shadow 0.35s ease;
  transition-delay: calc(var(--process-index, 0) * 90ms);
}

.process-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.process-card::before {
  position: absolute;
  top: -65px;
  right: -50px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(201, 162, 77, 0.16);
  content: '';
  filter: blur(6px);
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.process-card:hover {
  border-color: rgba(201, 162, 77, 0.64);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.28), 0 0 34px rgba(201, 162, 77, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  transform: translateY(-10px) scale(1.015);
}

.process-card:hover::before {
  opacity: 0.8;
  transform: scale(1.4);
}

.process-section-refined .card-header {
  position: relative;
  z-index: 1;
  justify-content: space-between;
  margin-bottom: 28px;
}

.process-section-refined .icon-box {
  position: relative;
  width: 56px;
  height: 56px;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 77, 0.58);
  border-radius: 16px;
  background: linear-gradient(135deg, #c9a24d, #8e6c22);
  box-shadow: 0 10px 24px rgba(201, 162, 77, 0.2);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.process-section-refined .icon-box::after {
  position: absolute;
  inset: -40% 35% -40% auto;
  width: 18px;
  background: rgba(255, 255, 255, 0.4);
  content: '';
  transform: rotate(28deg) translateX(-34px);
  transition: transform 0.5s ease;
}

.process-card:hover .icon-box {
  box-shadow: 0 14px 30px rgba(201, 162, 77, 0.36);
  transform: translateY(-3px) rotate(-4deg);
}

.process-card:hover .icon-box::after {
  transform: rotate(28deg) translateX(70px);
}

.process-section-refined .icon-box svg {
  position: relative;
  z-index: 1;
  width: 26px;
  height: 26px;
}

.process-section-refined .step-num {
  color: rgba(255, 255, 255, 0.24);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 1;
  transition: color 0.35s ease;
}

.process-card:hover .step-num {
  color: rgba(201, 162, 77, 0.78);
}

.process-section-refined .card-title {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  color: #ffffff;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
}

.process-section-refined .card-desc {
  position: relative;
  z-index: 1;
  min-height: 78px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.68;
}

.process-section-refined .card-divider {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  background: linear-gradient(90deg, rgba(201, 162, 77, 0.72), rgba(255, 255, 255, 0.08));
}

.process-section-refined .card-list {
  position: relative;
  z-index: 1;
}

.process-section-refined .card-list li {
  color: rgba(255, 255, 255, 0.82);
}

.process-section-refined .card-list li::before {
  width: 7px;
  height: 7px;
  top: 6px;
  border-radius: 50%;
  background: #d9b86a;
  box-shadow: 0 0 0 4px rgba(201, 162, 77, 0.12);
}

.process-section-refined .stats-bar {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 77, 0.34);
  border-radius: 22px;
  background: linear-gradient(110deg, rgba(201, 162, 77, 0.17), rgba(255, 255, 255, 0.06), rgba(0, 208, 132, 0.08));
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.process-section-refined .stat-box {
  border-right-color: rgba(255, 255, 255, 0.16);
}

.process-section-refined .stat-val {
  text-shadow: 0 0 24px rgba(201, 162, 77, 0.32);
}

@media (max-width: 900px) {
  .process-grid {
    gap: 18px;
  }

  .process-card {
    padding: 26px 22px 24px;
  }
}

@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid::before {
    display: none;
  }

  .process-section-refined .card-desc {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-card {
    padding: 26px 24px 24px;
  }

  .process-section-refined .stats-bar {
    border-radius: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .process-card,
  .process-section-refined .icon-box,
  .process-card::before,
  .process-section-refined .icon-box::after {
    transition: none;
  }

  .process-card {
    opacity: 1;
    transform: none;
  }
}

/* End pro process experience upgrade */



/* =============================================
   ABOUT US PAGE EXPERIENCE
   ============================================= */

.about-page {
  --about-navy: #071d3d;
  --about-blue: #0b2d5c;
  --about-gold: #c9a24d;
  --about-ink: #13233a;
  overflow: hidden;
}

.about-page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(82px, 12vw, 150px) 0 clamp(88px, 12vw, 140px);
  color: #fff;
  background:
    radial-gradient(circle at 85% 18%, rgba(201, 162, 77, 0.2), transparent 30%),
    linear-gradient(130deg, #06172f, #0b2d5c 55%, #153f70);
}

.about-page-hero::after {
  position: absolute;
  right: -8%;
  bottom: -55%;
  width: 55vw;
  height: 55vw;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: '';
}

.about-page-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  align-items: center;
  gap: 54px;
}

.about-page-hero-copy {
  max-width: 720px;
}

.about-eyebrow,
.about-section-label {
  margin: 0 0 16px;
  color: var(--about-gold);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1.3;
  text-transform: uppercase;
}

.about-page-hero h1 {
  max-width: 780px;
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(2.4rem, 6vw, 5rem);
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.about-hero-lead {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.02rem, 1.8vw, 1.22rem);
  line-height: 1.75;
}

.about-hero-orbit {
  position: relative;
  width: min(100%, 400px);
  aspect-ratio: 1;
  margin: 0 auto;
}

.about-orbit-ring {
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(201, 162, 77, 0.56);
  border-radius: 50%;
  transform: rotate(-28deg) skewX(-12deg);
  animation: aboutOrbitFloat 8s ease-in-out infinite;
}

.about-orbit-ring--two {
  inset: 25% 4%;
  border-color: rgba(255, 255, 255, 0.24);
  transform: rotate(42deg) skewX(12deg);
  animation-delay: -2.5s;
}

.about-orbit-dot {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--about-gold);
  box-shadow: 0 0 0 10px rgba(201, 162, 77, 0.12), 0 0 30px rgba(201, 162, 77, 0.6);
  animation: aboutDotPulse 3s ease-in-out infinite;
}

.about-orbit-dot--one { top: 12%; right: 20%; }
.about-orbit-dot--two { right: 12%; bottom: 24%; width: 10px; height: 10px; animation-delay: -1.2s; }

.about-story-section,
.about-focus-section,
.about-cta-section {
  padding: clamp(72px, 9vw, 120px) 0;
}

.about-story-section { background: #fff; }

.about-story-grid,
.about-focus-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(42px, 7vw, 94px);
}

.about-story-media {
  position: relative;
  min-width: 0;
}

.about-story-media img,
.about-story-placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 26px;
  object-fit: cover;
  box-shadow: 0 24px 60px rgba(7, 29, 61, 0.18);
}

.about-story-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 390px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at 70% 22%, rgba(201, 162, 77, 0.58), transparent 25%),
    linear-gradient(145deg, #071d3d, #0b2d5c 58%, #c9a24d);
}

.about-placeholder-mark {
  color: #fff;
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1;
}

.about-placeholder-label {
  margin-top: 16px;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-story-badge {
  position: absolute;
  right: -22px;
  bottom: -22px;
  display: grid;
  min-width: 150px;
  padding: 20px 22px;
  border: 5px solid #fff;
  border-radius: 18px;
  color: #fff;
  background: var(--about-gold);
  box-shadow: 0 14px 30px rgba(7, 29, 61, 0.2);
}

.about-story-badge strong { font-size: 2.1rem; line-height: 1; }
.about-story-badge span { margin-top: 7px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }

.about-story-copy h2,
.about-section-heading h2,
.about-focus-copy h2,
.about-reach-inner h2,
.about-cta-card h2 {
  margin: 0 0 22px;
  color: var(--about-navy);
  font-size: clamp(2rem, 4vw, 3.25rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.about-story-copy p,
.about-focus-copy p,
.about-section-heading > p:last-child,
.about-reach-inner p,
.about-cta-card p {
  color: #596579;
  font-size: 1.02rem;
  line-height: 1.8;
}

.about-story-copy p { margin: 0 0 20px; }
.about-story-copy .btn { margin-top: 14px; }

.about-approach-section,
.about-reach-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #071d3d, #0b2d5c);
}

.about-approach-section { padding: clamp(72px, 9vw, 116px) 0; }

.about-section-heading {
  max-width: 740px;
  margin-bottom: 48px;
}

.about-section-heading h2,
.about-reach-inner h2 { color: #fff; }
.about-section-label--light { color: #d9b86a; }
.about-section-heading > p:last-child { max-width: 650px; margin-bottom: 0; color: rgba(255, 255, 255, 0.7); }

.about-approach-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.about-approach-card {
  padding: 30px 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.about-approach-card:hover { border-color: rgba(201, 162, 77, 0.65); background: rgba(255, 255, 255, 0.11); transform: translateY(-8px); }
.about-card-number { display: block; margin-bottom: 32px; color: #d9b86a; font-size: 2.6rem; font-weight: 800; letter-spacing: -0.08em; }
.about-approach-card h3 { margin: 0 0 12px; color: #fff; font-size: 1.25rem; }
.about-approach-card p { margin: 0; color: rgba(255, 255, 255, 0.68); line-height: 1.7; }

.about-focus-section { background: #f6f8fb; }
.about-focus-list { display: grid; gap: 14px; }
.about-focus-item { display: grid; grid-template-columns: 44px 1fr; column-gap: 18px; padding: 20px 0; border-bottom: 1px solid rgba(7, 29, 61, 0.12); }
.about-focus-item > span { grid-row: span 2; color: var(--about-gold); font-size: 1.2rem; font-weight: 800; }
.about-focus-item strong { color: var(--about-navy); font-size: 1.14rem; }
.about-focus-item p { margin: 5px 0 0; color: #667387; font-size: 0.94rem; line-height: 1.55; }

.about-reach-section { padding: clamp(62px, 8vw, 92px) 0; background: linear-gradient(115deg, #0b2d5c, #071d3d); }
.about-reach-inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; }
.about-reach-inner h2 { max-width: 650px; }
.about-reach-inner p { max-width: 680px; margin: 0; color: rgba(255, 255, 255, 0.7); }
.about-market-list { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; max-width: 240px; }
.about-market-list span { display: grid; place-items: center; width: 58px; height: 58px; border: 1px solid rgba(201, 162, 77, 0.56); border-radius: 50%; color: #fff; font-size: 0.72rem; font-weight: 800; }

.about-cta-section { background: #fff; }
.about-cta-card { display: flex; align-items: center; justify-content: space-between; gap: 34px; padding: clamp(30px, 5vw, 56px); border: 1px solid rgba(7, 29, 61, 0.1); border-radius: 24px; background: linear-gradient(125deg, #f6f8fb, #fff); box-shadow: 0 18px 48px rgba(7, 29, 61, 0.08); }
.about-cta-card h2 { margin-bottom: 12px; }
.about-cta-card p { max-width: 620px; margin: 0; }
.about-cta-card .btn { flex-shrink: 0; }

[data-about-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.75s ease, transform 0.75s ease; }
[data-about-reveal].is-visible { opacity: 1; transform: translateY(0); }

@keyframes aboutOrbitFloat { 0%, 100% { transform: rotate(-28deg) skewX(-12deg) translateY(0); } 50% { transform: rotate(-20deg) skewX(-12deg) translateY(-12px); } }
@keyframes aboutDotPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.28); } }

@media (max-width: 800px) {
  .about-page-hero-inner,
  .about-story-grid,
  .about-focus-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-hero-orbit { width: min(72vw, 330px); order: -1; }
  .about-page-hero-copy { text-align: center; margin: 0 auto; }
  .about-page-hero-copy .about-eyebrow { justify-content: center; }
  .about-story-badge { right: 16px; bottom: -18px; }
  .about-approach-grid { grid-template-columns: 1fr; }
  .about-reach-inner { grid-template-columns: 1fr; }
  .about-market-list { justify-content: flex-start; max-width: none; }
}

@media (max-width: 560px) {
  .about-page-hero { padding-top: 70px; }
  .about-page-hero h1 { font-size: clamp(2.25rem, 12vw, 3.5rem); }
  .about-hero-lead { font-size: 0.98rem; }
  .about-story-placeholder { min-height: 270px; }
  .about-story-badge { right: 10px; min-width: 130px; padding: 15px 16px; }
  .about-story-badge strong { font-size: 1.8rem; }
  .about-cta-card { align-items: flex-start; flex-direction: column; }
  .about-cta-card .btn { width: 100%; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  .about-orbit-ring,
  .about-orbit-dot,
  [data-about-reveal] { animation: none; transition: none; }
  [data-about-reveal] { opacity: 1; transform: none; }
}

/* End About Us page experience */


/* =============================================
   ABOUT US REFINEMENT: COMPACT HERO + MARKET FLAGS
   ============================================= */

.about-page-hero {
  padding: clamp(54px, 7vw, 82px) 0 clamp(60px, 8vw, 88px);
}

.about-page-hero-inner {
  grid-template-columns: minmax(0, 1.2fr) minmax(210px, 0.8fr);
  gap: 34px;
}

.about-page-hero h1 {
  max-width: 680px;
  font-size: clamp(2.05rem, 4.6vw, 3.65rem);
}

.about-hero-lead {
  max-width: 610px;
  font-size: clamp(0.96rem, 1.5vw, 1.08rem);
}

.about-hero-orbit {
  width: min(100%, 290px);
}

.about-market-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(104px, 1fr));
  gap: 10px;
  max-width: 250px;
}

.about-market-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: auto;
  height: auto;
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid rgba(201, 162, 77, 0.55);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
}

.about-market-list span b {
  font-size: 1.18rem;
  line-height: 1;
}

@media (max-width: 800px) {
  .about-page-hero {
    padding: 54px 0 64px;
  }

  .about-hero-orbit {
    width: min(58vw, 240px);
  }

  .about-market-list {
    max-width: 340px;
  }
}

@media (max-width: 560px) {
  .about-page-hero {
    padding: 42px 0 52px;
  }

  .about-page-hero h1 {
    font-size: clamp(1.95rem, 10vw, 2.8rem);
  }

  .about-hero-orbit {
    width: min(55vw, 205px);
  }

  .about-market-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* End About Us refinement */


/* =============================================
   ABOUT US MOBILE HERO ANIMATION FIX
   ============================================= */

@media (max-width: 800px) {
  .about-page-hero-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .about-hero-orbit {
    order: -1;
    width: min(58vw, 218px);
    height: 138px;
    aspect-ratio: auto;
    margin: 0 auto;
  }

  .about-orbit-ring {
    inset: 10% 2%;
  }

  .about-orbit-ring--two {
    inset: 25% -3%;
  }

  .about-orbit-dot--one {
    top: 4%;
    right: 14%;
  }

  .about-orbit-dot--two {
    right: 5%;
    bottom: 14%;
  }

  .about-page-hero-copy {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .about-page-hero {
    padding: 34px 0 44px;
  }

  .about-page-hero-inner {
    gap: 16px;
  }

  .about-hero-orbit {
    width: min(64vw, 190px);
    height: 112px;
  }

  .about-page-hero h1 {
    max-width: 360px;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(1.86rem, 9.2vw, 2.55rem);
    line-height: 1.08;
  }

  .about-hero-lead {
    max-width: 350px;
    margin-right: auto;
    margin-left: auto;
    font-size: 0.94rem;
    line-height: 1.65;
  }

  .about-eyebrow {
    margin-bottom: 11px;
    font-size: 0.67rem;
  }
}

@media (max-width: 380px) {
  .about-hero-orbit {
    width: 166px;
    height: 98px;
  }

  .about-page-hero h1 {
    font-size: 1.78rem;
  }
}

/* End About Us mobile hero animation fix */


/* =============================================
   SERVICES PAGE PREMIUM EXPERIENCE
   ============================================= */

.services-page {
  --services-navy: #071d3d;
  --services-blue: #0b2d5c;
  --services-gold: #c9a24d;
  --services-ink: #13233a;
  overflow: hidden;
  background: #f6f8fb;
}

.services-page-hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  padding: clamp(84px, 10vw, 136px) 0;
  color: #fff;
  background: radial-gradient(circle at 78% 25%, rgba(201, 162, 77, 0.22), transparent 28%), linear-gradient(132deg, #06172f 0%, #0b2d5c 60%, #17497b 100%);
}

.services-hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.services-page-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  align-items: center;
  gap: clamp(40px, 7vw, 92px);
}

.services-page-hero-copy { max-width: 700px; }
.services-eyebrow,
.services-section-label { margin: 0 0 16px; color: var(--services-gold); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; }
.services-page-hero h1 { max-width: 700px; margin: 0 0 24px; color: #fff; font-size: clamp(2.5rem, 5.4vw, 4.65rem); letter-spacing: -0.06em; line-height: 1.02; }
.services-page-hero-copy > p:not(.services-eyebrow) { max-width: 630px; margin: 0; color: rgba(255,255,255,0.76); font-size: clamp(1rem, 1.7vw, 1.18rem); line-height: 1.75; }
.services-hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 24px; margin-top: 32px; }
.services-text-link { color: rgba(255,255,255,0.84); font-size: 0.92rem; font-weight: 700; text-decoration: none; }
.services-text-link span { display: inline-block; margin-left: 6px; color: var(--services-gold); transition: transform 0.25s ease; }
.services-text-link:hover span { transform: translateY(4px); }

.services-hero-visual { position: relative; width: min(100%, 450px); aspect-ratio: 1; margin: 0 auto; }
.services-hero-orb { position: absolute; border: 1px solid rgba(201,162,77,0.55); border-radius: 50%; transform: rotate(-28deg) skewX(-12deg); animation: servicesOrbFloat 8s ease-in-out infinite; }
.services-hero-orb--one { inset: 9%; }
.services-hero-orb--two { inset: 22% -1%; border-color: rgba(255,255,255,0.22); transform: rotate(38deg) skewX(12deg); animation-delay: -2s; }
.services-hero-panel { position: absolute; top: 28%; right: 5%; left: 5%; display: flex; flex-direction: column; justify-content: space-between; min-height: 190px; padding: 28px; border: 1px solid rgba(255,255,255,0.2); border-radius: 24px; background: linear-gradient(135deg, rgba(255,255,255,0.14), rgba(255,255,255,0.04)); box-shadow: 0 24px 60px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.16); backdrop-filter: blur(14px); transform: rotate(-4deg); }
.services-hero-panel-label { color: rgba(255,255,255,0.6); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.17em; text-transform: uppercase; }
.services-hero-panel strong { color: #fff; font-size: clamp(1.8rem, 4vw, 2.7rem); letter-spacing: -0.06em; line-height: 1.05; }
.services-hero-bars { display: flex; align-items: end; gap: 8px; height: 56px; }
.services-hero-bars i { display: block; width: 12%; height: 34%; border-radius: 99px 99px 4px 4px; background: var(--services-gold); box-shadow: 0 0 18px rgba(201,162,77,0.35); animation: servicesBarPulse 2.8s ease-in-out infinite; }
.services-hero-bars i:nth-child(2) { height: 62%; animation-delay: -0.3s; }
.services-hero-bars i:nth-child(3) { height: 45%; animation-delay: -0.6s; }
.services-hero-bars i:nth-child(4) { height: 82%; animation-delay: -0.9s; }
.services-hero-bars i:nth-child(5) { height: 100%; animation-delay: -1.2s; }

.services-proof-strip { position: relative; z-index: 2; margin-top: -1px; border-top: 1px solid rgba(255,255,255,0.13); color: #fff; background: var(--services-navy); }
.services-proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.services-proof-grid > div { display: flex; align-items: center; gap: 14px; min-height: 94px; padding: 16px 22px; border-right: 1px solid rgba(255,255,255,0.12); }
.services-proof-grid > div:first-child { border-left: 1px solid rgba(255,255,255,0.12); }
.services-proof-grid strong { color: var(--services-gold); font-size: 1.05rem; }
.services-proof-grid span { color: rgba(255,255,255,0.72); font-size: 0.78rem; line-height: 1.4; }

.services-featured-section,
.services-directory-section { padding: clamp(78px, 9vw, 122px) 0; }
.services-featured-section { background: #fff; }
.services-section-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr); align-items: end; gap: 40px; margin-bottom: 52px; }
.services-section-heading h2 { max-width: 700px; margin: 0; color: var(--services-navy); font-size: clamp(2rem, 4vw, 3.3rem); letter-spacing: -0.055em; line-height: 1.06; }
.services-section-heading > p { max-width: 520px; margin: 0; color: #647084; font-size: 1rem; line-height: 1.8; }
.services-featured-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.service-featured-card { display: grid; grid-template-columns: 0.88fr 1.12fr; min-width: 0; overflow: hidden; border: 1px solid rgba(7,29,61,0.11); border-radius: 24px; background: #fff; box-shadow: 0 16px 44px rgba(7,29,61,0.08); transition: transform 0.35s ease, box-shadow 0.35s ease; }
.service-featured-card:hover { transform: translateY(-9px); box-shadow: 0 24px 58px rgba(7,29,61,0.15); }
.service-featured-media { position: relative; min-height: 360px; overflow: hidden; background: var(--services-navy); }
.service-featured-media video { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.service-featured-card:hover .service-featured-media video { transform: scale(1.08); }
.service-featured-media-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(7,29,61,0.18), rgba(7,29,61,0.78)); }
.service-featured-number { position: absolute; top: 20px; left: 20px; color: rgba(255,255,255,0.76); font-size: 1rem; font-weight: 800; letter-spacing: 0.08em; }
.service-featured-content { display: flex; flex-direction: column; align-items: flex-start; padding: 30px 26px; }
.service-featured-icon { display: grid; place-items: center; width: 46px; height: 46px; margin-bottom: 22px; border-radius: 14px; background: #eef3f8; font-size: 1.4rem; }
.service-featured-content h3 { margin: 0 0 13px; color: var(--services-navy); font-size: 1.45rem; }
.service-featured-content p { margin: 0 0 20px; color: #667387; font-size: 0.91rem; line-height: 1.7; }
.service-featured-content ul { display: grid; gap: 9px; margin: 0 0 24px; padding: 0; list-style: none; }
.service-featured-content li { display: flex; gap: 8px; color: #405069; font-size: 0.81rem; }
.service-featured-content li span { color: var(--services-gold); font-weight: 800; }
.service-arrow-link, .service-directory-link { margin-top: auto; color: var(--services-blue); font-size: 0.83rem; font-weight: 800; text-decoration: none; }
.service-arrow-link span, .service-directory-link span { display: inline-block; margin-left: 5px; color: var(--services-gold); transition: transform 0.25s ease; }
.service-arrow-link:hover span, .service-directory-link:hover span { transform: translate(4px, -3px); }

.services-directory-section { background: #f6f8fb; }
.services-section-heading--directory { margin-bottom: 44px; }
.services-directory-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.service-directory-card { overflow: hidden; border: 1px solid rgba(7,29,61,0.1); border-radius: 20px; background: #fff; box-shadow: 0 10px 30px rgba(7,29,61,0.05); transition: transform 0.35s ease, box-shadow 0.35s ease; }
.service-directory-card:hover { transform: translateY(-8px); box-shadow: 0 20px 42px rgba(7,29,61,0.12); }
.service-directory-media { position: relative; height: 145px; overflow: hidden; background: var(--services-navy); }
.service-directory-media video { width: 100%; height: 100%; object-fit: cover; opacity: 0.75; transition: transform 0.6s ease, opacity 0.35s ease; }
.service-directory-card:hover .service-directory-media video { opacity: 0.95; transform: scale(1.08); }
.service-directory-media::after { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(7,29,61,0.2), rgba(7,29,61,0.8)); content: ''; }
.service-directory-media > span { position: absolute; z-index: 1; top: 50%; left: 50%; display: grid; place-items: center; width: 58px; height: 58px; border: 1px solid rgba(255,255,255,0.38); border-radius: 50%; font-size: 1.6rem; transform: translate(-50%, -50%); }
.service-directory-content { padding: 22px 23px 24px; }
.service-directory-topline { display: flex; justify-content: space-between; margin-bottom: 18px; color: var(--services-gold); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.12em; }
.service-directory-topline span:last-child { color: #a7b1bf; }
.service-directory-content h3 { margin: 0 0 9px; color: var(--services-navy); font-size: 1.15rem; }
.service-directory-content p { min-height: 50px; margin: 0 0 17px; color: #687487; font-size: 0.86rem; line-height: 1.65; }
.service-directory-features { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 22px; }
.service-directory-features span { padding: 5px 8px; border-radius: 6px; color: #526176; background: #f0f3f7; font-size: 0.67rem; }

.services-cta-section { padding: 0 0 clamp(76px, 9vw, 120px); background: #f6f8fb; }
.services-cta-card { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 38px; overflow: hidden; padding: clamp(34px, 5vw, 60px); border-radius: 26px; color: #fff; background: linear-gradient(130deg, #071d3d, #0b2d5c); box-shadow: 0 22px 55px rgba(7,29,61,0.16); }
.services-cta-card::after { position: absolute; right: -12%; bottom: -70%; width: 55%; aspect-ratio: 1; border: 1px solid rgba(201,162,77,0.45); border-radius: 50%; content: ''; }
.services-cta-card > * { position: relative; z-index: 1; }
.services-section-label--light { color: #d9b86a; }
.services-cta-card h2 { max-width: 720px; margin: 0 0 14px; color: #fff; font-size: clamp(1.9rem, 4vw, 3rem); letter-spacing: -0.05em; line-height: 1.08; }
.services-cta-card p:not(.services-section-label) { max-width: 630px; margin: 0; color: rgba(255,255,255,0.7); line-height: 1.75; }
.services-cta-card .btn { flex-shrink: 0; }

[data-services-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.75s ease, transform 0.75s ease; }
[data-services-reveal].is-visible { opacity: 1; transform: translateY(0); transition-delay: var(--service-delay, 0ms); }

@keyframes servicesOrbFloat { 0%, 100% { transform: rotate(-28deg) skewX(-12deg) translateY(0); } 50% { transform: rotate(-20deg) skewX(-12deg) translateY(-14px); } }
@keyframes servicesBarPulse { 0%, 100% { opacity: 0.58; transform: scaleY(0.82); transform-origin: bottom; } 50% { opacity: 1; transform: scaleY(1); } }

@media (max-width: 980px) {
  .services-page-hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .services-page-hero-copy { max-width: 760px; margin: 0 auto; text-align: center; }
  .services-hero-actions { justify-content: center; }
  .services-hero-visual { width: min(70vw, 390px); }
  .services-section-heading { grid-template-columns: 1fr; gap: 18px; }
  .services-featured-grid { grid-template-columns: 1fr; max-width: 780px; margin: 0 auto; }
  .services-directory-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .services-page-hero { min-height: auto; padding: 66px 0 74px; }
  .services-page-hero h1 { font-size: clamp(2.3rem, 10vw, 3.4rem); }
  .services-hero-visual { width: min(76vw, 330px); }
  .services-proof-grid { grid-template-columns: repeat(2, 1fr); }
  .services-proof-grid > div { min-height: 78px; padding: 13px 16px; }
  .services-proof-grid > div:nth-child(odd) { border-left: 1px solid rgba(255,255,255,0.12); }
  .services-featured-card { grid-template-columns: 1fr; }
  .service-featured-media { min-height: 220px; max-height: 280px; }
  .services-directory-grid { grid-template-columns: 1fr; }
  .service-directory-content p { min-height: 0; }
  .services-cta-card { align-items: flex-start; flex-direction: column; }
  .services-cta-card .btn { width: 100%; text-align: center; }
}

@media (max-width: 420px) {
  .services-page-hero { padding: 48px 0 58px; }
  .services-hero-actions { align-items: stretch; flex-direction: column; gap: 16px; }
  .services-hero-actions .btn { width: 100%; text-align: center; }
  .services-text-link { text-align: center; }
  .services-hero-visual { width: min(86vw, 300px); }
  .services-hero-panel { top: 24%; right: 0; left: 0; min-height: 164px; padding: 22px; }
  .services-proof-grid > div { gap: 9px; }
  .services-proof-grid strong { font-size: 0.88rem; }
  .services-proof-grid span { font-size: 0.68rem; }
  .service-featured-content { padding: 25px 21px; }
}

@media (prefers-reduced-motion: reduce) {
  .services-hero-orb,
  .services-hero-bars i,
  [data-services-reveal],
  .service-featured-card,
  .service-directory-card,
  .service-featured-media video,
  .service-directory-media video { animation: none; transition: none; }
  [data-services-reveal] { opacity: 1; transform: none; }
}

/* End Services page premium experience */


/* =============================================
   PORTFOLIO PAGE — SELECTED REAL WORK
   ============================================= */

.portfolio-page { --portfolio-navy: #071d3d; --portfolio-blue: #0b2d5c; --portfolio-gold: #c9a24d; overflow: hidden; background: #f6f8fb; }
.portfolio-page-hero { position: relative; overflow: hidden; padding: clamp(84px, 10vw, 132px) 0; color: #fff; background: radial-gradient(circle at 82% 18%, rgba(201,162,77,0.2), transparent 28%), linear-gradient(132deg, #06172f 0%, #0b2d5c 62%, #17497b 100%); }
.portfolio-hero-grid { position: absolute; inset: 0; opacity: 0.18; background-image: linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px); background-size: 56px 56px; mask-image: linear-gradient(to bottom, black, transparent 90%); }
.portfolio-hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr) minmax(240px, 0.42fr); align-items: end; gap: 50px; }
.portfolio-hero-copy { max-width: 770px; }
.portfolio-eyebrow, .portfolio-section-label { margin: 0 0 16px; color: var(--portfolio-gold); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; }
.portfolio-page-hero h1 { max-width: 800px; margin: 0 0 22px; color: #fff; font-size: clamp(2.6rem, 5.7vw, 4.7rem); letter-spacing: -0.06em; line-height: 1.02; }
.portfolio-hero-copy > p:not(.portfolio-eyebrow) { max-width: 670px; margin: 0; color: rgba(255,255,255,0.74); font-size: 1.08rem; line-height: 1.75; }
.portfolio-hero-note { display: grid; gap: 9px; justify-self: end; width: min(100%, 260px); padding: 25px; border: 1px solid rgba(255,255,255,0.2); border-radius: 20px; background: rgba(255,255,255,0.08); box-shadow: inset 0 1px 0 rgba(255,255,255,0.15); backdrop-filter: blur(12px); }
.portfolio-hero-note-mark { color: var(--portfolio-gold); font-size: 1.6rem; font-weight: 800; }
.portfolio-hero-note strong { color: #fff; font-size: 1.1rem; }
.portfolio-hero-note > span:last-child { color: rgba(255,255,255,0.66); font-size: 0.82rem; }
.portfolio-featured-section { padding: clamp(74px, 9vw, 120px) 0; background: #fff; }
.portfolio-featured-card { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr); overflow: hidden; border: 1px solid rgba(7,29,61,0.1); border-radius: 26px; background: #fff; box-shadow: 0 22px 60px rgba(7,29,61,0.1); }
.portfolio-featured-image-wrap { position: relative; min-height: 560px; overflow: hidden; background: var(--portfolio-navy); }
.portfolio-featured-image { width: 100%; height: 100%; min-height: 560px; object-fit: cover; transition: transform 0.8s ease; }
.portfolio-featured-card:hover .portfolio-featured-image { transform: scale(1.045); }
.portfolio-image-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(7,29,61,0.08), rgba(7,29,61,0.7)); }
.portfolio-image-label { position: absolute; top: 24px; left: 24px; padding: 8px 12px; border: 1px solid rgba(255,255,255,0.36); border-radius: 7px; color: #fff; background: rgba(7,29,61,0.42); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; backdrop-filter: blur(8px); }
.portfolio-featured-content { display: flex; flex-direction: column; align-items: flex-start; padding: clamp(30px, 4.5vw, 60px); }
.portfolio-project-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-bottom: 25px; color: var(--portfolio-gold); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; }
.portfolio-project-meta span + span { padding-left: 18px; border-left: 1px solid #d7dde5; }
.portfolio-featured-content h2 { margin: 0 0 19px; color: var(--portfolio-navy); font-size: clamp(2rem, 3.6vw, 3.2rem); letter-spacing: -0.06em; line-height: 1.04; }
.portfolio-featured-content p { margin: 0 0 18px; color: #647084; font-size: 0.95rem; line-height: 1.78; }
.portfolio-featured-content .portfolio-project-lead { color: #263d5b; font-size: 1.06rem; line-height: 1.7; }
.portfolio-project-tags { display: flex; flex-wrap: wrap; gap: 7px; margin: 8px 0 29px; }
.portfolio-project-tags span { padding: 7px 9px; border-radius: 6px; color: #526176; background: #eef2f6; font-size: 0.68rem; font-weight: 700; }
.portfolio-project-link { margin-top: auto; color: var(--portfolio-blue); font-size: 0.87rem; font-weight: 800; text-decoration: none; }
.portfolio-project-link span { display: inline-block; margin-left: 5px; color: var(--portfolio-gold); transition: transform 0.25s ease; }
.portfolio-project-link:hover span { transform: translate(4px, -3px); }
.portfolio-story-section { padding: clamp(76px, 9vw, 120px) 0; background: #f6f8fb; }
.portfolio-story-grid { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr); gap: clamp(45px, 8vw, 120px); }
.portfolio-story-grid h2, .portfolio-section-heading h2 { max-width: 600px; margin: 0; color: var(--portfolio-navy); font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -0.055em; line-height: 1.06; }
.portfolio-story-copy { max-width: 640px; }
.portfolio-story-copy p { margin: 0 0 20px; color: #627086; font-size: 1rem; line-height: 1.85; }
.portfolio-scope-section { padding: clamp(76px, 9vw, 120px) 0; background: #fff; }
.portfolio-section-heading { margin-bottom: 42px; }
.portfolio-scope-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.portfolio-scope-card { min-height: 220px; padding: 28px; border: 1px solid rgba(7,29,61,0.1); border-radius: 18px; background: #f9fafc; transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; }
.portfolio-scope-card:hover { border-color: rgba(201,162,77,0.62); transform: translateY(-7px); box-shadow: 0 18px 40px rgba(7,29,61,0.08); }
.portfolio-scope-card > span { color: var(--portfolio-gold); font-size: 1rem; font-weight: 800; }
.portfolio-scope-card h3 { margin: 33px 0 10px; color: var(--portfolio-navy); font-size: 1.18rem; }
.portfolio-scope-card p { margin: 0; color: #69778b; font-size: 0.86rem; line-height: 1.7; }
.portfolio-transparency-section { padding: 0 0 clamp(76px, 9vw, 120px); background: #fff; }
.portfolio-transparency-card { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: clamp(34px, 5vw, 60px); border-radius: 24px; color: #fff; background: linear-gradient(132deg, #071d3d, #0b2d5c); box-shadow: 0 22px 52px rgba(7,29,61,0.16); }
.portfolio-transparency-card h2 { max-width: 700px; margin: 0 0 15px; color: #fff; font-size: clamp(1.9rem, 4vw, 3rem); letter-spacing: -0.05em; line-height: 1.08; }
.portfolio-transparency-card p:not(.portfolio-section-label) { max-width: 650px; margin: 0; color: rgba(255,255,255,0.7); line-height: 1.75; }
.portfolio-section-label--light { color: #d9b86a; }
.portfolio-transparency-card .btn { flex-shrink: 0; }
[data-portfolio-reveal] { opacity: 0; transform: translateY(22px); transition: opacity 0.75s ease, transform 0.75s ease; }
[data-portfolio-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .portfolio-hero-inner, .portfolio-story-grid { grid-template-columns: 1fr; gap: 38px; }
  .portfolio-hero-note { justify-self: start; }
  .portfolio-featured-card { grid-template-columns: 1fr; }
  .portfolio-featured-image-wrap, .portfolio-featured-image { min-height: 360px; max-height: 480px; }
  .portfolio-scope-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .portfolio-page-hero { padding: 66px 0 72px; }
  .portfolio-page-hero h1 { font-size: clamp(2.35rem, 10vw, 3.5rem); }
  .portfolio-hero-note { width: 100%; }
  .portfolio-featured-content { padding: 28px 22px; }
  .portfolio-featured-image-wrap, .portfolio-featured-image { min-height: 250px; max-height: 330px; }
  .portfolio-project-meta { gap: 8px 12px; }
  .portfolio-project-meta span + span { padding-left: 12px; }
  .portfolio-scope-grid { grid-template-columns: 1fr; }
  .portfolio-scope-card { min-height: 0; }
  .portfolio-transparency-card { align-items: flex-start; flex-direction: column; }
  .portfolio-transparency-card .btn { width: 100%; text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
  .portfolio-featured-image, .portfolio-scope-card, [data-portfolio-reveal] { transition: none; }
  [data-portfolio-reveal] { opacity: 1; transform: none; }
}

/* End Portfolio page */


/* =============================================
   CONTACT PAGE — LET'S TALK
   ============================================= */

.contact-page { --contact-navy: #071d3d; --contact-blue: #0b2d5c; --contact-gold: #c9a24d; overflow: hidden; background: #f6f8fb; }
.contact-page-hero { position: relative; overflow: hidden; padding: clamp(76px, 9vw, 118px) 0; color: #fff; background: radial-gradient(circle at 80% 20%, rgba(201,162,77,0.22), transparent 28%), linear-gradient(132deg, #06172f 0%, #0b2d5c 62%, #17497b 100%); }
.contact-hero-grid { position: absolute; inset: 0; opacity: 0.18; background-image: linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px); background-size: 56px 56px; mask-image: linear-gradient(to bottom, black, transparent 90%); }
.contact-hero-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 45px; }
.contact-hero-inner > div:first-child { max-width: 750px; }
.contact-eyebrow, .contact-section-label { margin: 0 0 16px; color: var(--contact-gold); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; }
.contact-page-hero h1 { margin: 0 0 20px; color: #fff; font-size: clamp(2.7rem, 6vw, 5rem); letter-spacing: -0.065em; line-height: 1.02; }
.contact-page-hero p:not(.contact-eyebrow) { max-width: 650px; margin: 0; color: rgba(255,255,255,0.76); font-size: 1.08rem; line-height: 1.75; }
.contact-hero-badge { position: relative; display: grid; place-items: center; width: 160px; height: 160px; flex-shrink: 0; border: 1px solid rgba(255,255,255,0.25); border-radius: 50%; color: #fff; background: rgba(255,255,255,0.08); text-align: center; backdrop-filter: blur(12px); }
.contact-hero-badge::before, .contact-hero-badge::after { position: absolute; content: ''; border: 1px solid rgba(201,162,77,0.58); border-radius: 50%; }
.contact-hero-badge::before { inset: -14px; }
.contact-hero-badge::after { inset: -29px; opacity: 0.35; }
.contact-hero-badge span { position: absolute; top: 21px; color: #d9b86a; font-size: 0.7rem; font-weight: 900; letter-spacing: 0.2em; }
.contact-hero-badge strong { font-size: 1.03rem; line-height: 1.25; }
.contact-hero-badge i { position: absolute; top: 3px; right: 13px; width: 8px; height: 8px; border-radius: 50%; background: #d9b86a; box-shadow: 0 0 14px #d9b86a; }
.contact-info-section { position: relative; z-index: 2; padding: 0 0 25px; background: #f6f8fb; }
.contact-info-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin-top: -35px; }
.contact-info-card { display: flex; min-height: 190px; flex-direction: column; align-items: flex-start; justify-content: center; padding: 28px; border: 1px solid rgba(7,29,61,0.08); border-bottom: 3px solid var(--contact-gold); border-radius: 16px; color: var(--contact-navy); background: #fff; box-shadow: 0 18px 42px rgba(7,29,61,0.1); text-decoration: none; transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; }
.contact-info-card:nth-child(2) { border-bottom-color: var(--contact-blue); }
.contact-info-card:hover { border-color: rgba(201,162,77,0.6); transform: translateY(-7px); box-shadow: 0 24px 50px rgba(7,29,61,0.14); }
.contact-info-icon { display: grid; width: 40px; height: 40px; place-items: center; margin-bottom: 21px; border-radius: 11px; color: var(--contact-gold); background: #f7f1e3; font-size: 1.25rem; font-weight: 800; }
.contact-info-label { margin-bottom: 7px; color: #718097; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; }
.contact-info-card strong { color: var(--contact-navy); font-size: 1rem; }
.contact-info-card small { margin-top: 7px; color: #8290a3; font-size: 0.76rem; }
.contact-form-section { padding: clamp(72px, 9vw, 120px) 0; background: #fff; }
.contact-form-layout { display: grid; grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr); align-items: start; gap: clamp(45px, 8vw, 120px); }
.contact-form-intro h2, .contact-map-card h2 { margin: 0 0 20px; color: var(--contact-navy); font-size: clamp(2rem, 4vw, 3.3rem); letter-spacing: -0.06em; line-height: 1.06; }
.contact-form-intro > p:not(.contact-section-label) { max-width: 430px; margin: 0; color: #66758a; font-size: 0.98rem; line-height: 1.85; }
.contact-response-note { display: flex; align-items: flex-start; gap: 13px; margin-top: 32px; padding: 17px; border-left: 3px solid var(--contact-gold); background: #f8f9fb; }
.contact-response-note > span { color: var(--contact-gold); font-size: 1.2rem; font-weight: 800; }
.contact-response-note p { margin: 0; color: #6a788b; font-size: 0.8rem; line-height: 1.65; }
.contact-response-note strong { color: var(--contact-navy); }
.contact-form-card { padding: clamp(25px, 4vw, 46px); border: 1px solid rgba(7,29,61,0.1); border-radius: 20px; background: #fbfcfe; box-shadow: 0 18px 52px rgba(7,29,61,0.08); }
.abr-contact-form { display: grid; gap: 20px; }
.contact-form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.abr-contact-form label { display: grid; gap: 8px; }
.abr-contact-form label > span { color: var(--contact-navy); font-size: 0.78rem; font-weight: 800; }
.abr-contact-form input, .abr-contact-form select, .abr-contact-form textarea { width: 100%; box-sizing: border-box; border: 1px solid #dce2e9; border-radius: 9px; outline: none; color: var(--contact-navy); background: #fff; font: inherit; font-size: 0.9rem; transition: border-color 0.2s ease, box-shadow 0.2s ease; }
.abr-contact-form input, .abr-contact-form select { min-height: 49px; padding: 0 14px; }
.abr-contact-form textarea { min-height: 140px; padding: 13px 14px; resize: vertical; }
.abr-contact-form input:focus, .abr-contact-form select:focus, .abr-contact-form textarea:focus { border-color: var(--contact-gold); box-shadow: 0 0 0 3px rgba(201,162,77,0.14); }
.abr-contact-form input::placeholder, .abr-contact-form textarea::placeholder { color: #a2acb9; }
.contact-submit { justify-self: start; margin-top: 3px; border: 0; cursor: pointer; }
.contact-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.contact-form-notice { margin-bottom: 20px; padding: 13px 15px; border-radius: 9px; font-size: 0.86rem; line-height: 1.5; }
.contact-form-notice--success { border: 1px solid #bde2c7; color: #23643a; background: #effaf2; }
.contact-form-notice--error { border: 1px solid #f0c1c1; color: #8c3030; background: #fff3f3; }
.contact-map-section { padding: 0 0 clamp(72px, 9vw, 120px); background: #fff; }
.contact-map-card { display: flex; align-items: center; justify-content: space-between; gap: 35px; padding: clamp(30px, 5vw, 58px); border-radius: 22px; background: #eef3f8; }
.contact-map-card h2 { max-width: 620px; margin-bottom: 0; font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
.contact-map-card .contact-section-label { margin-bottom: 14px; }
[data-contact-reveal] { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-contact-reveal].is-visible { opacity: 1; transform: translateY(0); }
@media (max-width: 900px) { .contact-hero-inner { align-items: flex-start; flex-direction: column; } .contact-hero-badge { margin-left: 29px; } .contact-form-layout { grid-template-columns: 1fr; gap: 42px; } }
@media (max-width: 680px) { .contact-page-hero { padding: 65px 0 76px; } .contact-page-hero h1 { font-size: clamp(2.35rem, 10vw, 3.5rem); } .contact-info-grid { grid-template-columns: 1fr; margin-top: -28px; } .contact-info-card { min-height: 0; } .contact-form-row { grid-template-columns: 1fr; } .contact-map-card { align-items: flex-start; flex-direction: column; } .contact-map-card .btn, .contact-submit { width: 100%; text-align: center; } }
@media (prefers-reduced-motion: reduce) { [data-contact-reveal], .contact-info-card { transition: none; } [data-contact-reveal] { opacity: 1; transform: none; } }

/* End Contact page */


/* Contact refinements: orbit motion, type scale, and embedded location map */
.contact-hero-badge { isolation: isolate; }
.contact-orbit { position: absolute; z-index: -1; display: block; border: 1px solid rgba(255,255,255,0.28); border-radius: 50%; pointer-events: none; }
.contact-orbit--one { inset: -18px; animation: abr-contact-orbit-one 12s linear infinite; border-color: rgba(201,162,77,0.7); }
.contact-orbit--two { inset: -34px; animation: abr-contact-orbit-two 17s linear infinite reverse; border-color: rgba(255,255,255,0.25); }
.contact-orbit--one::after, .contact-orbit--two::after { position: absolute; content: ''; width: 9px; height: 9px; border-radius: 50%; background: #d9b86a; box-shadow: 0 0 16px rgba(217,184,106,0.9); }
.contact-orbit--one::after { top: 10%; left: 4%; }
.contact-orbit--two::after { right: 9%; bottom: 9%; width: 6px; height: 6px; background: #fff; box-shadow: 0 0 14px rgba(255,255,255,0.9); }
@keyframes abr-contact-orbit-one { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes abr-contact-orbit-two { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.contact-form-intro h2 { font-size: clamp(2.25rem, 4.2vw, 3.5rem); }
.contact-form-intro > p:not(.contact-section-label) { font-size: 1rem; }
.contact-info-card strong { font-size: clamp(1rem, 1.4vw, 1.15rem); }
.contact-info-card small { font-size: 0.82rem; }
.contact-map-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 28px; padding: 0 clamp(20px, 4vw, 48px); }
.contact-map-heading h2 { margin: 0; }
.contact-map-frame { position: relative; min-height: 390px; overflow: hidden; border: 1px solid rgba(7,29,61,0.1); border-radius: 22px; background: #e9eef4; box-shadow: 0 18px 52px rgba(7,29,61,0.1); }
.contact-map-frame iframe { display: block; width: 100%; height: 390px; border: 0; }
@media (max-width: 680px) { .contact-hero-badge { width: 128px; height: 128px; margin-left: 28px; } .contact-orbit--one { inset: -14px; } .contact-orbit--two { inset: -26px; } .contact-map-heading { align-items: flex-start; flex-direction: column; padding: 0; } .contact-map-heading .btn { width: 100%; text-align: center; } .contact-map-frame, .contact-map-frame iframe { min-height: 300px; height: 300px; border-radius: 16px; } }
@media (prefers-reduced-motion: reduce) { .contact-orbit--one, .contact-orbit--two { animation: none; } }


/* Contact card icon refinement */
.contact-info-icon { position: relative; overflow: visible; }
.contact-info-icon svg { display: block; width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; transform-origin: center; }
.contact-info-icon--mail svg { animation: abr-mail-float 3.4s ease-in-out infinite; }
.contact-info-icon--phone svg { animation: abr-phone-ring 3.8s ease-in-out infinite; }
.contact-info-icon--location svg { animation: abr-location-pulse 3.2s ease-in-out infinite; }
.contact-info-card:hover .contact-info-icon svg { animation-play-state: paused; transform: scale(1.12); }
@keyframes abr-mail-float { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-3px) rotate(-3deg); } }
@keyframes abr-phone-ring { 0%, 78%, 100% { transform: rotate(0deg); } 82% { transform: rotate(-10deg); } 86% { transform: rotate(10deg); } 90% { transform: rotate(-7deg); } 94% { transform: rotate(5deg); } }
@keyframes abr-location-pulse { 0%, 100% { transform: translateY(0) scale(1); } 45% { transform: translateY(-3px) scale(1.04); } 60% { transform: translateY(0) scale(0.96); } }
@media (prefers-reduced-motion: reduce) { .contact-info-icon--mail svg, .contact-info-icon--phone svg, .contact-info-icon--location svg { animation: none; } }


/* =============================================
   BLOG — ABR JOURNAL
   ============================================= */
.blog-page { background: #f6f8fb; }
.blog-hero, .blog-single-hero { position: relative; overflow: hidden; color: #fff; background: radial-gradient(circle at 80% 20%, rgba(201,162,77,0.22), transparent 28%), linear-gradient(132deg, #06172f 0%, #0b2d5c 62%, #17497b 100%); }
.blog-hero { padding: clamp(80px, 11vw, 150px) 0; }
.blog-hero-grid { position: absolute; inset: 0; opacity: 0.17; background-image: linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px); background-size: 58px 58px; mask-image: linear-gradient(to bottom, black, transparent 90%); }
.blog-hero-inner { position: relative; z-index: 1; max-width: 850px; }
.blog-eyebrow, .blog-section-label { margin: 0 0 16px; color: #d9b86a; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; }
.blog-hero h1 { max-width: 820px; margin: 0 0 22px; color: #fff; font-size: clamp(2.8rem, 6vw, 5.2rem); letter-spacing: -0.07em; line-height: 1.01; }
.blog-hero-inner > p:last-child { max-width: 640px; margin: 0; color: rgba(255,255,255,0.78); font-size: 1.06rem; line-height: 1.8; }
.blog-content-section { padding: clamp(68px, 8vw, 110px) 0; }
.blog-section-heading { display: flex; align-items: end; justify-content: space-between; gap: 25px; margin-bottom: 38px; }
.blog-section-heading h2 { margin: 0; color: #071d3d; font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -0.06em; line-height: 1.06; }
.blog-count-label { color: #8190a2; font-size: 0.8rem; }
.blog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 25px; }
.blog-card { overflow: hidden; border: 1px solid rgba(7,29,61,0.08); border-radius: 17px; background: #fff; box-shadow: 0 14px 36px rgba(7,29,61,0.07); transition: transform 0.35s ease, box-shadow 0.35s ease; }
.blog-card:hover { transform: translateY(-8px); box-shadow: 0 24px 48px rgba(7,29,61,0.13); }
.blog-card-media { position: relative; display: block; height: 220px; overflow: hidden; background: #0b2d5c; }
.blog-card-media img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s ease; }
.blog-card:hover .blog-card-media img { transform: scale(1.06); }
.blog-card-placeholder { position: absolute; inset: 0; display: grid; place-items: center; overflow: hidden; color: #fff; background: radial-gradient(circle at 30% 20%, rgba(201,162,77,0.45), transparent 28%), linear-gradient(140deg, #071d3d, #17497b); }
.blog-card-placeholder b { position: relative; z-index: 1; color: #d9b86a; font-size: 1.8rem; letter-spacing: 0.18em; }
.blog-card-placeholder i { position: absolute; width: 190px; height: 190px; border: 1px solid rgba(255,255,255,0.23); border-radius: 50%; }
.blog-card-arrow { position: absolute; right: 17px; bottom: 16px; display: grid; width: 37px; height: 37px; place-items: center; border-radius: 50%; color: #071d3d; background: #fff; font-size: 1.1rem; transition: transform 0.3s ease; }
.blog-card:hover .blog-card-arrow { transform: rotate(45deg); }
.blog-card-body { padding: 25px; }
.blog-card-meta, .blog-single-meta { display: flex; flex-wrap: wrap; gap: 12px; color: #8b98a8; font-size: 0.72rem; }
.blog-card-meta span + span, .blog-single-meta span + span { padding-left: 12px; border-left: 1px solid #d7dde5; }
.blog-card-body h2 { margin: 14px 0 11px; font-size: 1.35rem; letter-spacing: -0.035em; line-height: 1.16; }
.blog-card-body h2 a { color: #071d3d; text-decoration: none; }
.blog-card-body > p { min-height: 68px; margin: 0 0 20px; color: #718095; font-size: 0.88rem; line-height: 1.65; }
.blog-read-link { color: #0b2d5c; font-size: 0.8rem; font-weight: 800; text-decoration: none; }
.blog-read-link span { display: inline-block; margin-left: 6px; transition: transform 0.25s ease; }
.blog-read-link:hover span { transform: translateX(4px); }
.blog-pagination { display: flex; justify-content: center; margin-top: 45px; }
.blog-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 39px; height: 39px; margin: 0 4px; padding: 0 12px; border: 1px solid #dce3eb; border-radius: 8px; color: #0b2d5c; background: #fff; text-decoration: none; }
.blog-pagination .page-numbers.current, .blog-pagination .page-numbers:hover { border-color: #0b2d5c; color: #fff; background: #0b2d5c; }
.blog-empty { padding: 70px 30px; border: 1px dashed #cfd8e4; border-radius: 17px; background: #fff; text-align: center; }
.blog-empty > span { color: #c9a24d; font-weight: 800; letter-spacing: 0.15em; }
.blog-empty h2 { margin: 14px 0 10px; color: #071d3d; }
.blog-empty p { margin: 0; color: #748397; }
.blog-cta-section { padding: 0 0 clamp(70px, 8vw, 110px); background: #f6f8fb; }
.blog-cta { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: clamp(30px, 5vw, 58px); border-radius: 21px; background: #eef3f8; }
.blog-cta h2 { margin: 0; color: #071d3d; font-size: clamp(1.8rem, 3.5vw, 2.8rem); letter-spacing: -0.06em; }
.blog-cta .blog-section-label { margin-bottom: 12px; }
[data-blog-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-blog-reveal].is-visible { opacity: 1; transform: translateY(0); }
.blog-single-hero { padding: clamp(70px, 9vw, 120px) 0; }
.blog-single-hero-inner { position: relative; z-index: 1; max-width: 900px; }
.blog-single-meta { margin-bottom: 20px; color: rgba(255,255,255,0.7); }
.blog-single-hero h1 { margin: 0; color: #fff; font-size: clamp(2.5rem, 6vw, 5.1rem); letter-spacing: -0.07em; line-height: 1.03; }
.blog-single-author { margin: 25px 0 0; color: rgba(255,255,255,0.72); }
.blog-single-featured { margin-top: -45px; position: relative; z-index: 2; }
.blog-single-featured img { display: block; width: 100%; max-height: 610px; border-radius: 19px; object-fit: cover; box-shadow: 0 24px 58px rgba(7,29,61,0.16); }
.blog-single-content-wrap { padding-top: clamp(58px, 8vw, 100px); }
.blog-single-content { max-width: 790px; margin: 0 auto; color: #43536a; font-size: 1.04rem; line-height: 1.9; }
.blog-single-content h2, .blog-single-content h3, .blog-single-content h4 { margin-top: 1.8em; color: #071d3d; line-height: 1.2; }
.blog-single-content img { max-width: 100%; height: auto; border-radius: 12px; }
.blog-single-content a { color: #0b2d5c; }
.blog-single-footer { max-width: 790px; padding-top: 35px; padding-bottom: 100px; }
.blog-single-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 35px; }
.blog-single-tags a { padding: 7px 12px; border-radius: 99px; color: #0b2d5c; background: #eef3f8; font-size: 0.75rem; text-decoration: none; }
.blog-post-navigation { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; padding-top: 25px; border-top: 1px solid #dce3eb; }
.blog-post-navigation > div:last-child { text-align: right; }
.blog-post-navigation a { color: #0b2d5c; font-weight: 700; text-decoration: none; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 680px) { .blog-hero { padding: 72px 0 85px; } .blog-hero h1 { font-size: clamp(2.35rem, 11vw, 3.6rem); } .blog-section-heading { align-items: flex-start; flex-direction: column; } .blog-grid { grid-template-columns: 1fr; } .blog-card-media { height: 205px; } .blog-cta { align-items: flex-start; flex-direction: column; } .blog-cta .btn { width: 100%; text-align: center; } .blog-single-featured { margin-top: -25px; } .blog-single-content { font-size: 0.98rem; } .blog-post-navigation { grid-template-columns: 1fr; } .blog-post-navigation > div:last-child { text-align: left; } }
@media (prefers-reduced-motion: reduce) { [data-blog-reveal], .blog-card, .blog-card-media img, .blog-card-arrow { transition: none; } [data-blog-reveal] { opacity: 1; transform: none; } }

/* End Blog */


/* Minimal copyright-only footer */
.site-footer.site-footer--minimal { padding: 22px 0; border-top: 1px solid rgba(255,255,255,0.12); background: #071d3d; }
.site-footer--minimal .container { display: flex; align-items: center; justify-content: center; min-height: 30px; }
.site-footer--minimal .footer-copyright { margin: 0; color: rgba(255,255,255,0.78); font-size: 0.82rem; line-height: 1.5; text-align: center; }
.site-footer--minimal .footer-copyright strong { color: #d9b86a; font-weight: 700; }
@media (max-width: 680px) { .site-footer.site-footer--minimal { padding: 19px 15px; } .site-footer--minimal .footer-copyright { font-size: 0.76rem; } }


/* Restored main footer with a simplified lower copyright row */
.footer-bottom--copyright-only .footer-bottom-content { display: flex; align-items: center; justify-content: center; width: 100%; }
.footer-bottom--copyright-only .footer-copyright { margin: 0; text-align: center; }
@media (max-width: 680px) { .footer-bottom--copyright-only .footer-bottom-content { justify-content: center; } }


/* Professional animated social icons */
.social-links-pro { display: flex; align-items: center; gap: 12px; }
.social-link-item { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,0.18); border-radius: 50%; color: #fff; background: rgba(255,255,255,0.08); text-decoration: none; transform: translateY(0); transition: transform 0.3s ease, color 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; animation: abr-social-in 0.7s both; }
.social-link-item:nth-child(2) { animation-delay: 0.1s; }
.social-link-item:nth-child(3) { animation-delay: 0.2s; }
.social-link-item svg { display: block; width: 20px; height: 20px; fill: currentColor; stroke: currentColor; stroke-width: 1.2; transition: transform 0.3s ease; }
.social-link-item.instagram svg { fill: none; stroke-width: 1.8; }
.social-link-item.instagram svg .icon-dot { fill: currentColor; stroke: none; }
.social-link-item:hover { color: #071d3d; background: #d9b86a; border-color: #d9b86a; box-shadow: 0 8px 20px rgba(217,184,106,0.28); transform: translateY(-5px); }
.social-link-item:hover svg { transform: scale(1.12) rotate(-4deg); }
@keyframes abr-social-in { from { opacity: 0; transform: translateY(10px) scale(0.9); } to { opacity: 1; transform: translateY(0) scale(1); } }
@media (prefers-reduced-motion: reduce) { .social-link-item { animation: none; transition: none; } }




/* =============================================
   HOMEPAGE HERO — VISUAL-ONLY PREMIUM UPGRADE
   Existing hero text remains unchanged.
   ============================================= */
.hero-premium { position: relative; overflow: hidden; isolation: isolate; min-height: 610px; color: #fff; background: radial-gradient(circle at 78% 42%, rgba(22,87,142,0.48), transparent 30%), radial-gradient(circle at 13% 100%, rgba(201,162,77,0.12), transparent 28%), linear-gradient(132deg, #06172f 0%, #0b2d5c 58%, #123f70 100%); }
.hero-premium .container { position: relative; z-index: 2; }
.hero-premium-grid { position: absolute; z-index: -1; inset: 0; opacity: 0.16; background-image: linear-gradient(rgba(255,255,255,0.11) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.11) 1px, transparent 1px); background-size: 62px 62px; mask-image: linear-gradient(to right, transparent 0%, black 35%, black 75%, transparent 100%); }
.hero-premium-glow { position: absolute; z-index: -1; width: 320px; height: 320px; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero-premium-glow--one { top: -130px; right: 9%; background: radial-gradient(circle, rgba(201,162,77,0.28), transparent 68%); animation: abr-hero-glow-one 9s ease-in-out infinite; }
.hero-premium-glow--two { bottom: -170px; left: 34%; background: radial-gradient(circle, rgba(55,184,177,0.18), transparent 68%); animation: abr-hero-glow-two 12s ease-in-out infinite; }
.hero-premium .hero-text { position: relative; z-index: 3; }
.hero-premium .hero-text h1 { color: #fff; text-shadow: 0 8px 30px rgba(0,0,0,0.2); }
.hero-premium .hero-text p { color: rgba(255,255,255,0.76); }
.hero-premium .btn-outline { border-color: rgba(255,255,255,0.54); color: #fff; background: rgba(255,255,255,0.06); }
.hero-premium .btn-outline:hover { border-color: #d9b86a; color: #071d3d; background: #d9b86a; }
.hero-premium .hero-images--premium { min-height: 400px; }
.hero-images--premium .hero-image-card { z-index: 2; border: 1px solid rgba(255,255,255,0.24); box-shadow: 0 26px 58px rgba(0,0,0,0.28), 0 0 0 8px rgba(255,255,255,0.025); transition: transform 0.45s ease, box-shadow 0.45s ease; }
.hero-images--premium .hero-image-card:first-of-type { animation: abr-hero-card-one 6s ease-in-out infinite; }
.hero-images--premium .hero-image-card:nth-of-type(2) { animation: abr-hero-card-two 7s ease-in-out infinite; }
.hero-images--premium .hero-image-card:hover { z-index: 5; box-shadow: 0 32px 70px rgba(0,0,0,0.38), 0 0 30px rgba(201,162,77,0.23); transform: translateY(-8px) scale(1.025) !important; }
.hero-orbit { position: absolute; z-index: 1; display: block; border: 1px solid rgba(255,255,255,0.16); border-radius: 50%; pointer-events: none; }
.hero-orbit--one { top: 2%; right: 4%; width: 330px; height: 330px; animation: abr-hero-orbit-one 15s linear infinite; }
.hero-orbit--two { top: 12%; right: -8%; width: 430px; height: 280px; transform: rotate(-22deg); border-color: rgba(201,162,77,0.32); animation: abr-hero-orbit-two 19s linear infinite reverse; }
.hero-orbit--one::after, .hero-orbit--two::after { position: absolute; content: ''; width: 8px; height: 8px; border-radius: 50%; background: #d9b86a; box-shadow: 0 0 18px rgba(217,184,106,0.95); }
.hero-orbit--one::after { top: 5%; left: 18%; }
.hero-orbit--two::after { right: 12%; bottom: 6%; width: 6px; height: 6px; background: #8de2db; box-shadow: 0 0 16px rgba(141,226,219,0.9); }
.hero-visual-badge { position: absolute; z-index: 4; display: inline-flex; align-items: center; gap: 8px; padding: 9px 13px; border: 1px solid rgba(255,255,255,0.21); border-radius: 99px; color: rgba(255,255,255,0.88); background: rgba(7,29,61,0.7); box-shadow: 0 12px 26px rgba(0,0,0,0.2); backdrop-filter: blur(10px); font-size: 0.66rem; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase; animation: abr-hero-badge-float 5s ease-in-out infinite; }
.hero-visual-badge i { display: block; width: 7px; height: 7px; border-radius: 50%; background: #d9b86a; box-shadow: 0 0 12px rgba(217,184,106,0.9); }
.hero-visual-badge--top { top: 16%; left: 0; }
.hero-visual-badge--bottom { right: 4%; bottom: 8%; animation-delay: -2.5s; }
@keyframes abr-hero-card-one { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-10px) rotate(1deg); } }
@keyframes abr-hero-card-two { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(10px) rotate(-1deg); } }
@keyframes abr-hero-badge-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes abr-hero-orbit-one { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes abr-hero-orbit-two { from { transform: rotate(-22deg); } to { transform: rotate(338deg); } }
@keyframes abr-hero-glow-one { 0%, 100% { transform: translate(0,0) scale(1); opacity: 0.72; } 50% { transform: translate(-24px,20px) scale(1.12); opacity: 1; } }
@keyframes abr-hero-glow-two { 0%, 100% { transform: translate(0,0); opacity: 0.45; } 50% { transform: translate(20px,-18px); opacity: 0.8; } }
@media (max-width: 800px) { .hero-premium { min-height: auto; padding: 76px 0 70px; } .hero-premium .hero-content { gap: 46px; } .hero-premium .hero-images--premium { min-height: 345px; } .hero-orbit--one { top: 3%; right: 8%; width: 255px; height: 255px; } .hero-orbit--two { top: 17%; right: -3%; width: 320px; height: 220px; } .hero-visual-badge--top { top: 8%; left: 4%; } .hero-visual-badge--bottom { right: 1%; bottom: 4%; } }
@media (max-width: 560px) { .hero-premium { padding-top: 60px; } .hero-premium .hero-images--premium { min-height: 285px; transform: scale(0.86); transform-origin: top center; margin-bottom: -34px; } .hero-orbit--one { width: 225px; height: 225px; right: 10%; } .hero-orbit--two { width: 285px; height: 190px; right: -2%; } .hero-visual-badge { padding: 7px 9px; font-size: 0.55rem; } .hero-visual-badge--top { left: 2%; } .hero-visual-badge--bottom { right: 0; } }
@media (prefers-reduced-motion: reduce) { .hero-premium-glow--one, .hero-premium-glow--two, .hero-images--premium .hero-image-card, .hero-orbit, .hero-visual-badge { animation: none; } }


/* Hero correction: card-specific labels and true mobile stacking */
.hero-images--premium .hero-image-card { position: absolute; }
.hero-images--premium .hero-image-card .hero-visual-badge { top: 12px; right: 12px; bottom: auto; left: auto; }
.hero-images--premium .hero-image-card--seo .hero-visual-badge { top: auto; right: auto; bottom: 12px; left: 12px; }
@media (max-width: 800px) {
  .hero-images--premium { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; min-height: 0 !important; padding: 24px 0 12px; }
  .hero-images--premium .hero-image-card,
  .hero-images--premium .hero-image-card:first-of-type,
  .hero-images--premium .hero-image-card:nth-of-type(2) { position: relative; inset: auto !important; top: auto !important; right: auto !important; bottom: auto !important; left: auto !important; flex: 0 0 auto; margin: 0 !important; transform: none; }
  .hero-images--premium .hero-image-card--web { width: min(88vw, 310px) !important; height: min(58vw, 220px) !important; align-self: center; }
  .hero-images--premium .hero-image-card--seo { width: min(76vw, 250px) !important; height: min(58vw, 200px) !important; align-self: center; }
  .hero-images--premium .hero-visual-badge { position: absolute; z-index: 5; white-space: nowrap; }
  .hero-orbit--one { top: 2%; right: 5%; }
  .hero-orbit--two { top: 38%; right: -8%; }
}
@media (max-width: 560px) {
  .hero-premium .hero-content { gap: 24px; }
  .hero-premium .hero-images--premium { padding-top: 16px; transform: none; margin-bottom: 0; }
  .hero-images--premium .hero-image-card--web { width: min(90vw, 300px) !important; height: 190px !important; }
  .hero-images--premium .hero-image-card--seo { width: min(78vw, 240px) !important; height: 175px !important; }
  .hero-images--premium .hero-visual-badge { padding: 7px 9px; font-size: 0.55rem; }
}


/* Hero composition v4.5: structured visual stage, sharp media, restored motion */
.hero-premium { background: #081c39; }
.hero-premium-grid { opacity: 0.08; background-size: 72px 72px; }
.hero-premium-glow { opacity: 0.42; filter: none; }
.hero-images--premium { position: relative; min-height: 430px; display: block; }
.hero-images--premium .hero-image-card { position: absolute; overflow: visible; border: 0; border-radius: 18px; background: #0d315d; box-shadow: 0 24px 48px rgba(0,0,0,0.32), 0 0 0 1px rgba(255,255,255,0.2); isolation: isolate; }
.hero-images--premium .hero-image-card::before { position: absolute; z-index: -1; content: ''; inset: 8px -8px -8px 8px; border: 1px solid rgba(217,184,106,0.32); border-radius: 18px; transform: rotate(3deg); pointer-events: none; }
.hero-images--premium .hero-image-card::after { position: absolute; content: ''; inset: 0; border-radius: inherit; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.14); pointer-events: none; }
.hero-images--premium .hero-image-card img { position: relative; z-index: 1; display: block; width: 100%; height: 100%; border-radius: inherit; object-fit: cover; opacity: 1; filter: none; transform: translateZ(0); }
.hero-images--premium .hero-image-card--web { top: 5% !important; right: 0 !important; left: auto !important; bottom: auto !important; animation: abr-hero-card-one 6s cubic-bezier(0.45,0,0.55,1) infinite; }
.hero-images--premium .hero-image-card--seo { right: auto !important; bottom: 4% !important; left: 9% !important; top: auto !important; animation: abr-hero-card-two 7s cubic-bezier(0.45,0,0.55,1) infinite; }
.hero-images--premium .hero-image-card:hover { z-index: 6; box-shadow: 0 30px 58px rgba(0,0,0,0.4), 0 0 0 1px rgba(217,184,106,0.6); }
.hero-images--premium .hero-visual-badge { z-index: 7; border: 1px solid rgba(217,184,106,0.56); border-radius: 7px; color: #fff; background: #0a2447; box-shadow: 0 8px 16px rgba(0,0,0,0.24); backdrop-filter: none; }
.hero-images--premium .hero-image-card--web .hero-visual-badge { top: -15px; right: 16px; bottom: auto; left: auto; }
.hero-images--premium .hero-image-card--seo .hero-visual-badge { right: auto; bottom: -15px; left: 16px; top: auto; }
.hero-stage-ring, .hero-stage-line, .hero-stage-core { position: absolute; pointer-events: none; }
.hero-stage-ring { top: 50%; left: 50%; border: 1px solid rgba(217,184,106,0.5); border-radius: 50%; transform: translate(-50%,-50%); }
.hero-stage-ring--outer { width: 310px; height: 310px; animation: abr-stage-spin 18s linear infinite; }
.hero-stage-ring--inner { width: 212px; height: 212px; border-color: rgba(120,220,210,0.35); border-style: dashed; animation: abr-stage-spin 13s linear infinite reverse; }
.hero-stage-core { top: 50%; left: 50%; z-index: 3; display: grid; place-content: center; width: 112px; height: 112px; border: 1px solid rgba(217,184,106,0.7); border-radius: 50%; color: #fff; background: #0b2d5c; box-shadow: 0 0 0 10px rgba(8,28,57,0.72), 0 0 34px rgba(217,184,106,0.22); text-align: center; transform: translate(-50%,-50%); animation: abr-stage-pulse 4.2s ease-in-out infinite; }
.hero-stage-core b { color: #d9b86a; font-size: 1.4rem; letter-spacing: 0.12em; line-height: 1; }
.hero-stage-core small { margin-top: 5px; color: rgba(255,255,255,0.65); font-size: 0.45rem; font-weight: 800; letter-spacing: 0.18em; }
.hero-stage-line { z-index: 2; top: 50%; left: 50%; height: 1px; width: 170px; background: linear-gradient(90deg, transparent, rgba(217,184,106,0.75), transparent); transform-origin: left center; }
.hero-stage-line--one { transform: rotate(-34deg); }
.hero-stage-line--two { transform: rotate(146deg); }
@keyframes abr-stage-spin { from { transform: translate(-50%,-50%) rotate(0deg); } to { transform: translate(-50%,-50%) rotate(360deg); } }
@keyframes abr-stage-pulse { 0%,100% { box-shadow: 0 0 0 10px rgba(8,28,57,0.72), 0 0 34px rgba(217,184,106,0.22); } 50% { box-shadow: 0 0 0 16px rgba(8,28,57,0.52), 0 0 48px rgba(217,184,106,0.38); } }
@media (max-width: 800px) {
  .hero-images--premium { min-height: 410px; width: min(100%, 440px); margin: 0 auto; }
  .hero-images--premium .hero-image-card--web { top: 5% !important; right: 3% !important; }
  .hero-images--premium .hero-image-card--seo { bottom: 5% !important; left: 3% !important; }
  .hero-stage-ring--outer { width: 280px; height: 280px; }
  .hero-stage-ring--inner { width: 190px; height: 190px; }
  .hero-stage-core { width: 94px; height: 94px; }
  .hero-stage-line { width: 125px; }
}
@media (max-width: 560px) {
  .hero-premium { padding-bottom: 52px; }
  .hero-images--premium { min-height: 350px; width: 100%; }
  .hero-images--premium .hero-image-card--web { top: 4% !important; right: 1% !important; width: min(76vw, 270px) !important; height: 180px !important; }
  .hero-images--premium .hero-image-card--seo { bottom: 4% !important; left: 1% !important; width: min(64vw, 220px) !important; height: 170px !important; }
  .hero-images--premium .hero-image-card::before { inset: 5px -5px -5px 5px; }
  .hero-images--premium .hero-visual-badge { font-size: 0.52rem; }
  .hero-stage-ring--outer { width: 218px; height: 218px; }
  .hero-stage-ring--inner { width: 148px; height: 148px; }
  .hero-stage-core { width: 78px; height: 78px; }
  .hero-stage-core b { font-size: 1.05rem; }
  .hero-stage-core small { font-size: 0.35rem; }
  .hero-stage-line { width: 91px; }
}
@media (prefers-reduced-motion: reduce) { .hero-images--premium .hero-image-card, .hero-stage-ring, .hero-stage-core { animation: none; } }


/* Hero orbit refinement: decorative background only, image labels removed */
.hero-images--premium { isolation: isolate; }
.hero-orbit-scene { position: absolute; z-index: 0; top: 50%; left: 50%; width: min(92%, 410px); aspect-ratio: 1; border-radius: 50%; pointer-events: none; transform: translate(-50%, -50%); }
.hero-orbit-ring { position: absolute; display: block; border: 1px solid rgba(217,184,106,0.42); border-radius: 50%; transform: translate(-50%,-50%); transform-origin: center; }
.hero-orbit-ring--outer { top: 50%; left: 50%; width: 100%; height: 44%; transform: translate(-50%,-50%) rotate(-28deg); animation: abr-orbit-outer 18s linear infinite; }
.hero-orbit-ring--middle { top: 50%; left: 50%; width: 82%; height: 66%; border-color: rgba(130,225,213,0.34); transform: translate(-50%,-50%) rotate(38deg); animation: abr-orbit-middle 14s linear infinite reverse; }
.hero-orbit-ring--inner { top: 50%; left: 50%; width: 62%; height: 88%; border-color: rgba(255,255,255,0.18); border-style: dashed; transform: translate(-50%,-50%) rotate(72deg); animation: abr-orbit-inner 22s linear infinite; }
.hero-orbit-dot { position: absolute; z-index: 1; display: block; width: 10px; height: 10px; border-radius: 50%; }
.hero-orbit-dot--gold { top: 20%; left: 19%; background: #d9b86a; box-shadow: 0 0 0 5px rgba(217,184,106,0.11), 0 0 20px rgba(217,184,106,0.8); animation: abr-orbit-dot-gold 5s ease-in-out infinite; }
.hero-orbit-dot--green { right: 13%; bottom: 17%; width: 7px; height: 7px; background: #82e1d5; box-shadow: 0 0 0 5px rgba(130,225,213,0.1), 0 0 16px rgba(130,225,213,0.75); animation: abr-orbit-dot-green 4.2s ease-in-out infinite -1.4s; }
.hero-images--premium .hero-image-card { z-index: 2; }
@keyframes abr-orbit-outer { from { transform: translate(-50%,-50%) rotate(-28deg); } to { transform: translate(-50%,-50%) rotate(332deg); } }
@keyframes abr-orbit-middle { from { transform: translate(-50%,-50%) rotate(38deg); } to { transform: translate(-50%,-50%) rotate(-322deg); } }
@keyframes abr-orbit-inner { from { transform: translate(-50%,-50%) rotate(72deg); } to { transform: translate(-50%,-50%) rotate(432deg); } }
@keyframes abr-orbit-dot-gold { 0%,100% { transform: translate(0,0); } 50% { transform: translate(8px, -7px); } }
@keyframes abr-orbit-dot-green { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-7px, 6px) scale(1.2); } }
@media (max-width: 800px) { .hero-orbit-scene { width: min(94%, 360px); } }
@media (max-width: 560px) { .hero-orbit-scene { width: min(100%, 310px); } .hero-orbit-dot--gold { width: 8px; height: 8px; } .hero-orbit-dot--green { width: 6px; height: 6px; } }
@media (prefers-reduced-motion: reduce) { .hero-orbit-ring, .hero-orbit-dot { animation: none; } }
