/* ============================================================
   PRO-SERVICES NORDIK INC. — Main Stylesheet
   ============================================================ */

/* 1. DESIGN TOKENS */
:root {
  --primary:       #0B2265;
  --primary-light: #1A3A8F;
  --secondary:     #1B6CA8;
  --accent:        #2B9FD4;
  --accent-light:  #63C0E8;
  --white:         #FFFFFF;
  --off-white:     #F4F8FC;
  --gray-100:      #EEF2F7;
  --gray-200:      #D9E3EE;
  --gray-400:      #8FA3BA;
  --gray-600:      #4A5E73;
  --text:          #1E2D3D;
  --text-light:    #5A6E82;
  --success:       #27AE60;
  --danger:        #E74C3C;

  --shadow-sm:     0 2px 8px rgba(11,34,101,.08);
  --shadow-md:     0 6px 24px rgba(11,34,101,.13);
  --shadow-lg:     0 16px 48px rgba(11,34,101,.18);
  --radius:        10px;
  --radius-lg:     18px;
  --transition:    .3s ease;

  --font-head:     'Poppins', 'Segoe UI', sans-serif;
  --font-body:     'Open Sans', 'Segoe UI', sans-serif;

  --max-width:     1180px;
  --header-height: 80px;
}

/* 2. RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); }

/* 3. TYPOGRAPHY */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); line-height: 1.25; color: var(--primary); }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.65rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
.lead { font-size: 1.15rem; color: var(--text-light); line-height: 1.75; }

/* 4. LAYOUT */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-lg { padding: 7rem 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.text-center { text-align: center; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 3.5rem; }
.section-header .eyebrow {
  display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--accent); background: rgba(43,159,212,.1);
  border-radius: 30px; padding: .3rem 1rem; margin-bottom: 1rem;
}
.section-header h2 { margin-bottom: 1rem; }
.section-header p { color: var(--text-light); font-size: 1.05rem; }
.divider {
  width: 60px; height: 4px; background: linear-gradient(90deg, var(--accent), var(--accent-light));
  border-radius: 2px; margin: 1rem auto 0;
}

/* 5. BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-head); font-weight: 600; font-size: .95rem;
  padding: .85rem 2rem; border-radius: 50px; transition: var(--transition);
  letter-spacing: .02em; white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
  color: var(--white); box-shadow: 0 6px 20px rgba(27,108,168,.35);
}
.btn-primary:hover {
  transform: translateY(-2px); box-shadow: 0 10px 30px rgba(27,108,168,.45);
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
}
.btn-outline {
  border: 2px solid var(--white); color: var(--white);
  background: transparent;
}
.btn-outline:hover { background: var(--white); color: var(--primary); transform: translateY(-2px); }
.btn-dark { background: var(--primary); color: var(--white); box-shadow: var(--shadow-md); }
.btn-dark:hover { background: var(--primary-light); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-lg { font-size: 1.05rem; padding: 1.05rem 2.5rem; }
.btn-sm { font-size: .85rem; padding: .55rem 1.25rem; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* 6. HEADER */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-height);
  background: rgba(11,34,101,.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: var(--transition);
}
#header.scrolled { background: rgba(11,34,101,1); box-shadow: var(--shadow-lg); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-height); }
.logo { display: flex; align-items: center; gap: .85rem; }
.logo img { height: 48px; width: auto; }
.logo-text { display: flex; flex-direction: column; }
.logo-text .name { font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; color: var(--white); line-height: 1; }
.logo-text .tagline { font-size: .65rem; color: var(--accent-light); letter-spacing: .08em; text-transform: uppercase; margin-top: 2px; }
nav { display: flex; align-items: center; gap: 2rem; }
nav a { font-size: .88rem; font-weight: 600; color: rgba(255,255,255,.82); transition: var(--transition); position: relative; }
nav a::after { content:''; position: absolute; bottom: -4px; left: 0; right: 0; height: 2px; background: var(--accent); border-radius: 1px; transform: scaleX(0); transition: var(--transition); }
nav a:hover, nav a.active { color: var(--white); }
nav a:hover::after, nav a.active::after { transform: scaleX(1); }
.nav-cta { background: var(--accent); color: var(--white) !important; padding: .5rem 1.25rem; border-radius: 50px; font-size: .85rem !important; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--accent-light) !important; transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: .5rem; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.mobile-nav {
  display: none; position: fixed; top: var(--header-height); left: 0; right: 0;
  background: var(--primary); padding: 1.5rem; z-index: 999;
  border-top: 1px solid rgba(255,255,255,.1); box-shadow: var(--shadow-lg);
}
.mobile-nav a { display: block; color: rgba(255,255,255,.85); font-weight: 600; padding: .85rem 0; border-bottom: 1px solid rgba(255,255,255,.08); font-size: .95rem; }
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav.open { display: block; }

/* 7. HERO */
.hero {
  min-height: 100vh; padding-top: var(--header-height);
  background: linear-gradient(135deg, var(--primary) 0%, #0e3a8c 40%, #1b5fa0 100%);
  position: relative; display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  opacity: .15;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,34,101,.95) 0%, rgba(27,95,160,.85) 100%);
}
.hero-pattern {
  position: absolute; inset: 0; opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { position: relative; z-index: 1; max-width: 680px; }
.hero-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 4rem; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(43,159,212,.2); border: 1px solid rgba(43,159,212,.4);
  border-radius: 50px; padding: .4rem 1.1rem; margin-bottom: 1.5rem;
  font-size: .78rem; font-weight: 600; color: var(--accent-light); letter-spacing: .08em; text-transform: uppercase;
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 span { color: var(--accent-light); }
.hero .lead { color: rgba(255,255,255,.8); margin-bottom: 2rem; font-size: 1.1rem; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 2.5rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.15); }
.hero-stat .num { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--white); line-height: 1; }
.hero-stat .num span { color: var(--accent-light); }
.hero-stat .lbl { font-size: .78rem; color: rgba(255,255,255,.6); margin-top: .25rem; }
.hero-image { position: relative; }
.hero-card {
  background: rgba(255,255,255,.07); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius-lg);
  overflow: hidden;
}
.hero-card img { width: 100%; height: 420px; object-fit: cover; opacity: .85; }
.hero-trust {
  padding: 1.25rem; display: flex; align-items: center; gap: 1rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-trust .trust-text { font-size: .82rem; color: rgba(255,255,255,.7); line-height: 1.4; }
.hero-trust .trust-text strong { color: var(--white); display: block; }
.trust-badge-img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.stars { color: #F5C518; font-size: 1rem; letter-spacing: 1px; }
.scroll-indicator {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 1; display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.5); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  animation: bounce 2s infinite;
}
.scroll-indicator svg { width: 20px; height: 20px; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* 8. TRUST BAR */
.trust-bar { background: var(--primary); padding: 1.25rem 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.trust-bar-inner { display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: .65rem; color: rgba(255,255,255,.75); font-size: .82rem; font-weight: 600; }
.trust-item svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; }

/* 9. SERVICES */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.service-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200);
  transition: var(--transition); display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(43,159,212,.3); }
.service-card-img { position: relative; height: 220px; overflow: hidden; background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%); }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-icon-overlay {
  position: absolute; top: 1rem; left: 1rem;
  width: 52px; height: 52px; border-radius: var(--radius);
  background: rgba(255,255,255,.15); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.25);
}
.service-icon-overlay svg { width: 26px; height: 26px; color: var(--white); }
.service-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.service-card-body h3 { font-size: 1.15rem; margin-bottom: .6rem; }
.service-card-body p { color: var(--text-light); font-size: .9rem; flex: 1; margin-bottom: 1.25rem; }
.service-link {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .88rem; font-weight: 700; color: var(--accent);
  transition: var(--transition);
}
.service-link:hover { gap: .75rem; }
.service-link svg { width: 16px; height: 16px; }

/* 10. WHY US */
.why-us { background: var(--off-white); }
.why-us-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.why-us-img { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.why-us-img img { width: 100%; height: 520px; object-fit: cover; border-radius: var(--radius-lg); }
.why-us-img-placeholder {
  width: 100%; height: 520px; border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
  display: flex; align-items: center; justify-content: center;
}
.cert-badge {
  position: absolute; bottom: 2rem; left: 2rem;
  background: var(--white); border-radius: var(--radius); padding: 1rem 1.25rem;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: .75rem;
}
.cert-badge svg { width: 36px; height: 36px; color: var(--accent); flex-shrink: 0; }
.cert-badge .label { font-size: .7rem; color: var(--text-light); text-transform: uppercase; letter-spacing: .08em; }
.cert-badge .value { font-family: var(--font-head); font-weight: 700; font-size: .9rem; color: var(--primary); }
.features-list { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.feature-item { display: flex; gap: 1rem; }
.feature-icon {
  width: 48px; height: 48px; border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(43,159,212,.15) 0%, rgba(27,108,168,.15) 100%);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  border: 1px solid rgba(43,159,212,.2);
}
.feature-icon svg { width: 22px; height: 22px; color: var(--accent); }
.feature-text h4 { margin-bottom: .3rem; font-size: 1rem; }
.feature-text p { color: var(--text-light); font-size: .88rem; margin: 0; }

/* 11. STATS */
.stats { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); padding: 4rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.stat-item { text-align: center; padding: 1.5rem; }
.stat-num { font-family: var(--font-head); font-size: 3rem; font-weight: 800; color: var(--white); line-height: 1; }
.stat-num span { color: var(--accent-light); }
.stat-label { font-size: .85rem; color: rgba(255,255,255,.7); margin-top: .5rem; font-weight: 500; }
.stat-divider { width: 40px; height: 3px; background: var(--accent); border-radius: 2px; margin: .75rem auto 0; }

/* 12. TESTIMONIALS */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 2rem;
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); position: relative;
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.quote-icon {
  position: absolute; top: 1.5rem; right: 1.5rem;
  font-size: 3rem; color: var(--gray-100); font-family: Georgia, serif; line-height: 1;
}
.testimonial-text { font-size: .92rem; color: var(--text-light); line-height: 1.75; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.author-avatar {
  width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
  display: flex; align-items: center; justify-content: center; color: var(--white);
  font-family: var(--font-head); font-weight: 700; font-size: 1rem; flex-shrink: 0;
}
.author-info .name { font-weight: 700; font-size: .9rem; color: var(--primary); }
.author-info .company { font-size: .78rem; color: var(--text-light); }
.testimonial-stars { color: #F5C518; font-size: .9rem; margin-bottom: .3rem; }

/* 13. SERVICE AREAS */
.areas { background: var(--off-white); }
.areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.area-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 2rem 1.5rem;
  text-align: center; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.area-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.area-icon {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
  display: flex; align-items: center; justify-content: center;
}
.area-icon svg { width: 30px; height: 30px; color: var(--white); }
.area-card h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.area-card p { color: var(--text-light); font-size: .88rem; margin: 0; }

/* 14. BLOG */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.blog-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); transition: var(--transition);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-card-img { height: 200px; overflow: hidden; position: relative; background: linear-gradient(135deg, var(--primary), var(--secondary)); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.08); }
.blog-tag {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--accent); color: var(--white);
  font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: .25rem .75rem; border-radius: 50px;
}
.blog-card-body { padding: 1.5rem; }
.blog-meta { display: flex; gap: 1rem; align-items: center; margin-bottom: .75rem; }
.blog-meta span { font-size: .75rem; color: var(--text-light); display: flex; align-items: center; gap: .3rem; }
.blog-meta svg { width: 13px; height: 13px; }
.blog-card-body h3 { font-size: 1rem; margin-bottom: .6rem; color: var(--primary); transition: var(--transition); }
.blog-card:hover .blog-card-body h3 { color: var(--accent); }
.blog-card-body p { font-size: .85rem; color: var(--text-light); margin-bottom: 1rem; }
.read-more { font-size: .82rem; font-weight: 700; color: var(--accent); display: flex; align-items: center; gap: .35rem; transition: var(--transition); }
.read-more:hover { gap: .65rem; }
.read-more svg { width: 14px; height: 14px; }

/* 15. CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, #0e3a8c 60%, var(--secondary) 100%);
  position: relative; overflow: hidden; padding: 6rem 0;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-inner { position: relative; z-index: 1; text-align: center; }
.cta-inner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-inner p { color: rgba(255,255,255,.75); font-size: 1.1rem; max-width: 580px; margin: 0 auto 2.5rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* 16. CONTACT SECTION */
.contact-section { background: var(--off-white); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.3fr; gap: 4rem; align-items: start; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-info .lead { margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; gap: 1rem; }
.contact-item-icon {
  width: 48px; height: 48px; border-radius: var(--radius); flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
  display: flex; align-items: center; justify-content: center;
}
.contact-item-icon svg { width: 22px; height: 22px; color: var(--white); }
.contact-item-text label { font-size: .75rem; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: .08em; display: block; margin-bottom: .2rem; }
.contact-item-text a, .contact-item-text span { font-size: .95rem; color: var(--primary); font-weight: 600; }
.contact-item-text a:hover { color: var(--accent); }
.response-badge {
  display: inline-flex; align-items: center; gap: .5rem; margin-top: 2rem;
  background: rgba(39,174,96,.1); border: 1px solid rgba(39,174,96,.3);
  border-radius: 50px; padding: .5rem 1.25rem; color: var(--success); font-size: .82rem; font-weight: 600;
}
.response-badge svg { width: 16px; height: 16px; }

/* 17. FORM */
.contact-form-wrap { background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow-md); border: 1px solid var(--gray-200); }
.contact-form-wrap h3 { margin-bottom: .5rem; }
.contact-form-wrap .sub { color: var(--text-light); font-size: .88rem; margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .82rem; font-weight: 700; color: var(--text); margin-bottom: .4rem; letter-spacing: .03em; }
.form-group label .req { color: var(--accent); margin-left: 2px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: .85rem 1.1rem; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius); font-size: .92rem; color: var(--text);
  background: var(--white); transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px rgba(43,159,212,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; font-size: 1rem; padding: 1rem; }
.form-note { text-align: center; font-size: .78rem; color: var(--text-light); margin-top: .75rem; }
.form-success {
  display: none; background: rgba(39,174,96,.1); border: 1.5px solid rgba(39,174,96,.3);
  border-radius: var(--radius); padding: 1rem 1.25rem; color: var(--success);
  font-size: .9rem; font-weight: 600; margin-top: 1rem; align-items: center; gap: .5rem;
}
.form-success.show { display: flex; }
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; }

/* 18. FOOTER */
footer {
  background: #080f1e; color: rgba(255,255,255,.7);
  padding: 4rem 0 0;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 3rem; }
.footer-brand .logo { margin-bottom: 1.25rem; }
.footer-brand .logo .logo-text .name { font-size: .95rem; }
.footer-desc { font-size: .85rem; line-height: 1.75; color: rgba(255,255,255,.55); margin-bottom: 1.5rem; }
.social-links { display: flex; gap: .75rem; }
.social-link {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); transition: var(--transition);
}
.social-link:hover { background: var(--accent); border-color: var(--accent); color: var(--white); }
.social-link svg { width: 16px; height: 16px; }
.footer-col h4 { color: var(--white); font-size: .88rem; font-weight: 700; margin-bottom: 1.25rem; letter-spacing: .06em; text-transform: uppercase; }
.footer-links { display: flex; flex-direction: column; gap: .6rem; }
.footer-links a { font-size: .83rem; color: rgba(255,255,255,.55); transition: var(--transition); display: flex; align-items: center; gap: .4rem; }
.footer-links a::before { content: '›'; color: var(--accent); font-size: 1.1rem; }
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-contact-list { display: flex; flex-direction: column; gap: .85rem; }
.footer-contact-item { display: flex; gap: .75rem; align-items: flex-start; }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span, .footer-contact-item a { font-size: .82rem; color: rgba(255,255,255,.6); transition: var(--transition); }
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); margin-top: 3rem; padding: 1.5rem 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.4); }
.footer-bottom a { color: var(--accent-light); }

/* 19. PAGE HERO (inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 60%, var(--secondary) 100%);
  padding: calc(var(--header-height) + 4rem) 0 4rem;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0; opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-content { position: relative; z-index: 1; text-align: center; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero .lead { color: rgba(255,255,255,.8); max-width: 620px; margin: 0 auto 1.5rem; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: .5rem; font-size: .82rem; color: rgba(255,255,255,.55); margin-bottom: 1.25rem; }
.breadcrumb a { color: rgba(255,255,255,.7); transition: var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,.35); }

/* 20. SERVICE PAGE DETAIL */
.service-detail { padding: 5rem 0; }
.service-detail-inner { display: grid; grid-template-columns: 1fr .35fr; gap: 3rem; align-items: start; }
.service-detail-content h2 { margin-bottom: 1rem; }
.service-detail-content .lead { margin-bottom: 2rem; }
.service-features-list { margin: 2rem 0; }
.service-features-list li {
  display: flex; gap: .75rem; align-items: flex-start; padding: .75rem 0;
  border-bottom: 1px solid var(--gray-100);
}
.service-features-list li:last-child { border-bottom: none; }
.service-features-list .check { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.service-features-list .check svg { width: 18px; height: 18px; }
.service-features-list .item-text h4 { font-size: .95rem; margin-bottom: .2rem; }
.service-features-list .item-text p { font-size: .85rem; color: var(--text-light); margin: 0; }
.service-sidebar { position: sticky; top: calc(var(--header-height) + 1.5rem); }
.sidebar-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 2rem;
  box-shadow: var(--shadow-md); border: 1px solid var(--gray-200); margin-bottom: 1.5rem;
}
.sidebar-card h4 { margin-bottom: 1rem; font-size: 1rem; }
.sidebar-services { display: flex; flex-direction: column; gap: .5rem; }
.sidebar-services a {
  display: flex; align-items: center; justify-content: space-between;
  padding: .75rem 1rem; border-radius: var(--radius); font-size: .88rem; font-weight: 600;
  color: var(--text); border: 1.5px solid transparent; transition: var(--transition);
}
.sidebar-services a:hover, .sidebar-services a.active {
  background: rgba(43,159,212,.08); border-color: rgba(43,159,212,.3); color: var(--accent);
}
.sidebar-services a svg { width: 14px; height: 14px; }
.quote-sidebar {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: var(--radius-lg); padding: 2rem; color: var(--white); text-align: center;
}
.quote-sidebar h4 { color: var(--white); margin-bottom: .5rem; }
.quote-sidebar p { font-size: .85rem; color: rgba(255,255,255,.75); margin-bottom: 1.5rem; }
.quote-sidebar .btn { width: 100%; justify-content: center; background: rgba(255,255,255,.15); border: 1.5px solid rgba(255,255,255,.3); color: var(--white); }
.quote-sidebar .btn:hover { background: var(--white); color: var(--primary); }

/* 21. BLOG ARTICLE */
.article-body { font-size: 1rem; line-height: 1.85; }
.article-body h2 { font-size: 1.65rem; margin: 2.5rem 0 1rem; padding-top: 2rem; border-top: 1px solid var(--gray-100); }
.article-body h3 { font-size: 1.2rem; margin: 2rem 0 .75rem; color: var(--secondary); }
.article-body p { margin-bottom: 1.25rem; }
.article-body ul, .article-body ol { margin: 1rem 0 1.5rem 1.5rem; }
.article-body li { margin-bottom: .5rem; }
.article-body ul li { list-style: disc; }
.article-body ol li { list-style: decimal; }
.article-body strong { color: var(--primary); }
.article-body .highlight-box {
  background: rgba(43,159,212,.08); border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0; padding: 1.25rem 1.5rem;
  margin: 1.5rem 0; font-size: .95rem;
}
.article-header { margin-bottom: 3rem; }
.article-header h1 { margin-bottom: 1rem; font-size: clamp(1.6rem, 4vw, 2.5rem); }
.article-meta { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; margin-bottom: 1.5rem; }
.article-meta span { font-size: .82rem; color: var(--text-light); display: flex; align-items: center; gap: .4rem; }
.article-meta svg { width: 14px; height: 14px; }
.article-tag { background: rgba(43,159,212,.1); color: var(--accent); font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .25rem .85rem; border-radius: 50px; }
.article-hero-img { border-radius: var(--radius-lg); margin: 2rem 0; overflow: hidden; }
.article-hero-img img { width: 100%; height: 400px; object-fit: cover; }
.blog-layout { display: grid; grid-template-columns: 1fr .35fr; gap: 3rem; align-items: start; padding: 4rem 0; }
.blog-listing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.sidebar-recent a { display: block; font-size: .85rem; color: var(--text); padding: .6rem 0; border-bottom: 1px solid var(--gray-100); transition: var(--transition); }
.sidebar-recent a:hover { color: var(--accent); padding-left: 4px; }
.sidebar-recent a:last-child { border-bottom: none; }

/* 22. ABOUT PAGE */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.team-card { text-align: center; }
.team-avatar { width: 100px; height: 100px; border-radius: 50%; margin: 0 auto 1rem; background: linear-gradient(135deg, var(--accent), var(--primary)); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--white); }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.value-card { background: var(--white); border-radius: var(--radius-lg); padding: 1.75rem; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); }
.value-icon { width: 52px; height: 52px; border-radius: var(--radius); background: rgba(43,159,212,.1); border: 1px solid rgba(43,159,212,.2); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.value-icon svg { width: 24px; height: 24px; color: var(--accent); }
.value-card h4 { margin-bottom: .5rem; }
.value-card p { font-size: .88rem; color: var(--text-light); margin: 0; }

/* 23. UTILITY CLASSES */
.bg-light { background: var(--off-white); }
.bg-dark { background: var(--primary); }
.text-accent { color: var(--accent); }
.text-primary { color: var(--primary); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0 !important; }
.hidden { display: none !important; }

/* 24. FLOATING CONTACT BUTTON */
.float-contact {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 900;
  background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
  color: var(--white); border-radius: 50px; padding: .85rem 1.5rem;
  display: flex; align-items: center; gap: .5rem; font-weight: 700; font-size: .88rem;
  box-shadow: 0 8px 30px rgba(27,108,168,.5); transition: var(--transition);
  animation: pulse 3s infinite;
}
.float-contact:hover { transform: scale(1.05); box-shadow: 0 12px 40px rgba(27,108,168,.6); }
.float-contact svg { width: 18px; height: 18px; }
@keyframes pulse { 0%,100%{box-shadow:0 8px 30px rgba(27,108,168,.5)} 50%{box-shadow:0 8px 40px rgba(43,159,212,.7)} }

/* 25. RESPONSIVE */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .hero { min-height: 85vh; }
  .grid-4, .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-detail-inner { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .blog-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  :root { --header-height: 68px; }
  nav { display: none; }
  .hamburger { display: flex; }
  .services-grid, .testimonials-grid, .areas-grid, .blog-grid { grid-template-columns: 1fr; }
  .grid-2, .why-us-inner, .contact-inner { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .trust-bar-inner { gap: 1.25rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .blog-listing-grid { grid-template-columns: 1fr; }
  .float-contact span { display: none; }
  .float-contact { padding: 1rem; border-radius: 50%; }
  .section { padding: 3.5rem 0; }
  h2 { font-size: 1.75rem; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .cta-btns { flex-direction: column; align-items: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
}
