/*
* Template: Albion Build Co. LTD - Construction Company Website
* Based on: Furni by Untree.co (CC BY 3.0)
* Customized for: Albion Build Co. LTD
*/

@import url("https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800&display=swap");

/* ============================================
   CSS VARIABLES - Albion Brand
   ============================================ */
:root {
  --albion-black: #0f0f0f;
  --albion-dark: #1a1a1a;
  --albion-charcoal: #2a2a2a;
  --albion-yellow: #f5b700;
  --albion-yellow-hover: #ffc700;
  --albion-grey: #666666;
  --albion-light-grey: #a0a0a0;
  --albion-cream: #f8f6f1;
  --albion-white: #ffffff;
  --albion-border: rgba(255, 255, 255, 0.1);
  --albion-border-dark: rgba(0, 0, 0, 0.08);
  
  --font-display: 'Archivo', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --transition: cubic-bezier(0.77, 0, 0.175, 1);
}

/* ============================================
   GLOBAL RESET & BASE
   ============================================ */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body) !important;
  font-weight: 400;
  line-height: 1.7;
  color: var(--albion-dark) !important;
  font-size: 16px;
  background-color: var(--albion-cream) !important;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--albion-black);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 900;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  text-transform: uppercase;
}

a {
  color: var(--albion-black);
  text-decoration: none !important;
  transition: all 0.3s var(--transition);
}

a:hover {
  color: var(--albion-yellow);
}

/* ============================================
   PRELOADER
   ============================================ */
.albion-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--albion-black);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.albion-preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 3rem;
  color: var(--albion-yellow);
  letter-spacing: -0.03em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.preloader-logo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--albion-yellow);
  animation: loaderBar 1.5s ease-in-out infinite;
}

@keyframes loaderBar {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* ============================================
   CUSTOM CURSOR DOT (optional accent)
   ============================================ */
.cursor-accent {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--albion-yellow);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s ease;
  mix-blend-mode: difference;
  display: none;
}

@media (min-width: 992px) {
  .cursor-accent {
    display: block;
  }
}

/* ============================================
   NAVIGATION
   ============================================ */
/* Spacing between nav items */
.custom-navbar .custom-navbar-nav {
  gap: 0;
}

@media (min-width: 992px) {
  .custom-navbar .custom-navbar-nav .nav-item {
    margin: 0 14px;
  }
  .custom-navbar .custom-navbar-nav .nav-cta-wrapper {
    margin-left: 24px;
    margin-right: 0;
  }
}

@media (max-width: 991px) {
  .custom-navbar .custom-navbar-nav .nav-item {
    margin: 8px 0;
  }
  .custom-navbar .custom-navbar-nav .nav-cta-wrapper {
    margin-top: 16px;
  }
}

.custom-navbar .custom-navbar-nav li a.nav-link {
  font-family: var(--font-body);
  font-weight: 500 !important;
  font-size: 14px;
  color: var(--albion-white) !important;
  opacity: 0.7 !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  padding: 8px 2px !important;
}

.custom-navbar .custom-navbar-nav li a.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--albion-yellow);
  transition: width 0.3s var(--transition);
}

.custom-navbar .custom-navbar-nav li.active a.nav-link,
.custom-navbar .custom-navbar-nav li a.nav-link:hover {
  opacity: 1 !important;
  color: var(--albion-white) !important;
}

.custom-navbar .custom-navbar-nav li.active a.nav-link::after,
.custom-navbar .custom-navbar-nav li a.nav-link:hover::after {
  width: 100%;
}
.custom-navbar .navbar-brand {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  color: var(--albion-white) !important;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.custom-navbar .navbar-brand .brand-accent {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--albion-yellow);
  border-radius: 0;
  transform: rotate(45deg);
  margin-left: 2px;
  flex-shrink: 0;
}
/* Get a Quote CTA button - isolated from .nav-link rules */
.navbar-cta {
  background: var(--albion-yellow);
  color: var(--albion-black) !important;
  padding: 12px 24px !important;
  font-family: var(--font-body);
  font-weight: 700 !important;
  font-size: 13px !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none !important;
  border: none;
}

.navbar-cta:hover {
  background: var(--albion-white) !important;
  color: var(--albion-black) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245, 183, 0, 0.3);
}

.navbar-cta i {
  color: var(--albion-black) !important;
  transition: transform 0.3s ease;
}

.navbar-cta:hover i {
  transform: translateX(4px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  background: var(--albion-black);
  color: var(--albion-white);
  padding: 140px 0 120px;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(245, 183, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 183, 0, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 183, 0, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-30px, -30px); }
}

.hero .intro-excerpt {
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(245, 183, 0, 0.1);
  border: 1px solid rgba(245, 183, 0, 0.3);
  border-radius: 50px;
  color: var(--albion-yellow);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.hero-tag .dot {
  width: 8px;
  height: 8px;
  background: var(--albion-yellow);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
  color: var(--albion-white);
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 6.5vw, 5.8rem);
  line-height: 0.95;
}

.hero h1 .highlight {
  color: var(--albion-yellow);
  position: relative;
  display: inline-block;
}

.hero h1 .highlight::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 6px;
  background: var(--albion-yellow);
  opacity: 0.3;
}

.hero p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 32px;
}

.hero .btn-primary-custom {
  background: var(--albion-yellow);
  color: var(--albion-black);
  padding: 18px 36px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: none;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s var(--transition);
  position: relative;
  overflow: hidden;
}

.hero .btn-primary-custom::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--albion-white);
  transition: left 0.3s var(--transition);
  z-index: -1;
}

.hero .btn-primary-custom:hover::before {
  left: 0;
}

.hero .btn-primary-custom:hover {
  color: var(--albion-black);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(245, 183, 0, 0.3);
}

.hero .btn-outline-custom {
  background: transparent;
  color: var(--albion-white);
  padding: 18px 36px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0;
  margin-left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s var(--transition);
}

.hero .btn-outline-custom:hover {
  background: var(--albion-white);
  color: var(--albion-black);
  border-color: var(--albion-white);
}

/* Hero image */
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-visual img {
  border-radius: 0;
  filter: grayscale(10%) contrast(1.05);
  transition: all 0.6s ease;
  width: 100%;
}

.hero-visual-wrap {
  position: relative;
}

.hero-visual-wrap::before {
  content: '';
  position: absolute;
  top: 20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--albion-yellow);
  z-index: -1;
}

/* Stats bar in hero */
.hero-stats {
  position: relative;
  z-index: 2;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid var(--albion-border);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

@media (max-width: 768px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }
}

.stat-item {
  color: var(--albion-white);
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--albion-yellow);
  line-height: 1;
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.stat-number .plus {
  font-size: 0.6em;
  color: var(--albion-white);
}

.stat-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

/* ============================================
   SECTION GENERAL
   ============================================ */
section {
  padding: 120px 0;
  position: relative;
}

@media (max-width: 768px) {
  section {
    padding: 80px 0;
  }
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--albion-yellow);
  margin-bottom: 20px;
  position: relative;
}

.section-label::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--albion-yellow);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--albion-black);
  text-transform: uppercase;
  margin-bottom: 24px;
  line-height: 1;
}

.section-subtitle {
  color: var(--albion-grey);
  font-size: 17px;
  line-height: 1.7;
  max-width: 600px;
}

/* ============================================
   ABOUT SECTION / WHY CHOOSE US
   ============================================ */
.about-section {
  background: var(--albion-cream);
  position: relative;
}

.about-image-wrap {
  position: relative;
  overflow: hidden;
}

.about-image-wrap img {
  width: 100%;
  filter: grayscale(15%);
  transition: all 0.8s ease;
}

.about-image-wrap:hover img {
  filter: grayscale(0%);
  transform: scale(1.03);
}

.about-experience-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: var(--albion-yellow);
  padding: 24px 30px;
  z-index: 2;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.about-experience-badge .years {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--albion-black);
  line-height: 1;
}

.about-experience-badge .label {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--albion-black);
  margin-top: 8px;
}

.feature-item {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
  padding: 24px;
  background: var(--albion-white);
  border-left: 3px solid var(--albion-yellow);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateX(8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--albion-black);
  color: var(--albion-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.feature-content h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.feature-content p {
  color: var(--albion-grey);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
  background: var(--albion-black);
  color: var(--albion-white);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.services-section .section-title {
  color: var(--albion-white);
}

.services-section .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.service-card {
  background: var(--albion-charcoal);
  padding: 40px 30px;
  height: 100%;
  position: relative;
  transition: all 0.4s var(--transition);
  border: 1px solid var(--albion-border);
  overflow: hidden;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--albion-yellow);
  transition: height 0.4s var(--transition);
  z-index: 0;
}

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

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--albion-yellow);
}

.service-card:hover .service-icon,
.service-card:hover h3,
.service-card:hover p,
.service-card:hover .service-number,
.service-card:hover .service-arrow {
  color: var(--albion-black);
}

.service-number {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--albion-yellow);
  margin-bottom: 16px;
  display: block;
  letter-spacing: 0.1em;
  transition: color 0.4s ease;
}

.service-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--albion-yellow);
  margin-bottom: 24px;
  transition: all 0.4s ease;
}

.service-card h3 {
  color: var(--albion-white);
  font-size: 1.3rem;
  margin-bottom: 12px;
  text-transform: uppercase;
  transition: color 0.4s ease;
}

.service-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  transition: color 0.4s ease;
}

.service-arrow {
  font-size: 14px;
  font-weight: 600;
  color: var(--albion-yellow);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.4s ease;
}

.service-card:hover .service-arrow {
  gap: 14px;
}

/* ============================================
   PROJECTS / PORTFOLIO
   ============================================ */
.projects-section {
  background: var(--albion-cream);
  position: relative;
}

.project-card {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  cursor: pointer;
  background: var(--albion-black);
}

.project-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: all 0.8s var(--transition);
  filter: grayscale(20%);
}

.project-card:hover img {
  transform: scale(1.08);
  filter: grayscale(0%);
}

.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(to top, rgba(15, 15, 15, 0.95) 0%, transparent 100%);
  transform: translateY(40px);
  transition: transform 0.5s var(--transition);
}

.project-card:hover .project-overlay {
  transform: translateY(0);
}

.project-category {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--albion-yellow);
  margin-bottom: 8px;
}

.project-title {
  color: var(--albion-white);
  font-size: 1.5rem;
  text-transform: uppercase;
  margin: 0;
  font-weight: 800;
}

/* ============================================
   TESTIMONIAL SECTION
   ============================================ */
.testimonial-section {
  background: var(--albion-white);
  padding: 120px 0;
}

.testimonial-card {
  background: var(--albion-cream);
  padding: 40px 35px;
  border-left: 4px solid var(--albion-yellow);
  height: 100%;
  position: relative;
  transition: all 0.3s ease;
}

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

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--albion-yellow);
  line-height: 1;
  margin-bottom: 10px;
  font-weight: 900;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--albion-dark);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid var(--albion-border-dark);
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--albion-yellow);
}

.testimonial-author-info h5 {
  font-size: 15px;
  margin: 0 0 2px 0;
  text-transform: uppercase;
  font-weight: 800;
}

.testimonial-author-info span {
  font-size: 12px;
  color: var(--albion-grey);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: var(--albion-yellow);
  color: var(--albion-black);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: 'ALBION';
  position: absolute;
  top: 50%;
  right: -50px;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 20rem;
  font-weight: 900;
  color: rgba(15, 15, 15, 0.04);
  letter-spacing: -0.05em;
  line-height: 1;
  pointer-events: none;
}

.cta-section h2 {
  color: var(--albion-black);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 600px;
  position: relative;
  z-index: 2;
}

.btn-cta {
  background: var(--albion-black);
  color: var(--albion-yellow);
  padding: 20px 40px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  z-index: 2;
}

.btn-cta:hover {
  background: var(--albion-white);
  color: var(--albion-black);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--albion-black);
  color: rgba(255, 255, 255, 0.6);
  padding: 100px 0 30px;
  position: relative;
}

.site-footer h3 {
  color: var(--albion-white);
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 24px;
  letter-spacing: 0.1em;
  position: relative;
  padding-bottom: 12px;
}

.site-footer h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--albion-yellow);
}

.site-footer .footer-brand {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--albion-white);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-brand .brand-accent {
  width: 12px;
  height: 12px;
  background: var(--albion-yellow);
  transform: rotate(45deg);
}

.site-footer p {
  font-size: 14px;
  line-height: 1.7;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.site-footer ul li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.site-footer ul li a:hover {
  color: var(--albion-yellow);
  padding-left: 6px;
}

.footer-contact {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact i {
  color: var(--albion-yellow);
  margin-top: 4px;
  font-size: 16px;
}

.footer-contact span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--albion-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--albion-white);
  font-size: 14px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--albion-yellow);
  border-color: var(--albion-yellow);
  color: var(--albion-black);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid var(--albion-border);
  padding-top: 30px;
  margin-top: 60px;
  text-align: center;
  font-size: 13px;
}

.footer-bottom a {
  color: var(--albion-yellow);
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--albion-yellow);
  color: var(--albion-black);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  border: none;
  font-size: 16px;
}

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

.back-to-top:hover {
  background: var(--albion-black);
  color: var(--albion-yellow);
  transform: translateY(-5px);
}

/* ============================================
   AOS CUSTOM OVERRIDES
   ============================================ */
[data-aos="fade-up"] {
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* ============================================
   PAGE HEADER (for internal pages)
   ============================================ */
.page-header {
  background: var(--albion-black);
  color: var(--albion-white);
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(245, 183, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 183, 0, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.page-header h1 {
  color: var(--albion-white);
  margin-bottom: 16px;
}

.page-header .breadcrumbs {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.page-header .breadcrumbs a {
  color: var(--albion-yellow);
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid var(--albion-border-dark);
  background: var(--albion-white);
  font-family: var(--font-body);
  font-size: 15px;
  transition: all 0.3s ease;
  border-radius: 0;
  margin-bottom: 20px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--albion-yellow);
  box-shadow: 0 0 0 3px rgba(245, 183, 0, 0.15);
}

.contact-form label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  display: block;
  color: var(--albion-dark);
}

.contact-info-card {
  background: var(--albion-black);
  color: var(--albion-white);
  padding: 50px 40px;
  height: 100%;
}

.contact-info-card h3 {
  color: var(--albion-white);
  margin-bottom: 30px;
  text-transform: uppercase;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.contact-info-item .icon {
  width: 44px;
  height: 44px;
  background: var(--albion-yellow);
  color: var(--albion-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-info-item .label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--albion-yellow);
  margin-bottom: 4px;
  display: block;
}

.contact-info-item .value {
  font-size: 15px;
  color: var(--albion-white);
  font-weight: 500;
}

.contact-info-item a {
  color: var(--albion-white);
}

.contact-info-item a:hover {
  color: var(--albion-yellow);
}

/* ============================================
   BLOG
   ============================================ */
.blog-card {
  background: var(--albion-white);
  transition: all 0.3s ease;
  height: 100%;
  overflow: hidden;
}

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

.blog-card-image {
  overflow: hidden;
  height: 240px;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.08);
}

.blog-card-content {
  padding: 30px;
}

.blog-meta {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--albion-yellow);
  font-weight: 700;
  margin-bottom: 12px;
}

.blog-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.blog-card p {
  color: var(--albion-grey);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* ============================================
   RESPONSIVE FIXES
   ============================================ */
@media (max-width: 991px) {
  .hero {
    padding: 120px 0 80px;
    min-height: auto;
  }
  
  .hero-visual {
    margin-top: 60px;
  }
  
  .custom-navbar {
    padding: 15px 0 !important;
  }
  
  .cta-section::before {
    font-size: 10rem;
  }
}

@media (max-width: 576px) {
  .hero .btn-outline-custom {
    margin-left: 0;
    margin-top: 12px;
  }
  
  .about-experience-badge {
    bottom: 20px;
    left: 20px;
    padding: 16px 20px;
  }
  
  .about-experience-badge .years {
    font-size: 2.5rem;
  }
}

/* ============================================
   UTILITIES
   ============================================ */
.text-yellow {
  color: var(--albion-yellow) !important;
}

.bg-black {
  background: var(--albion-black) !important;
}

.text-uppercase-tight {
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

/* Service icon using dashes - industrial feel */
.icon-dash::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 3px;
  background: currentColor;
  margin-right: 8px;
  vertical-align: middle;
}
