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

html {
  scroll-behavior: smooth;
}

:root {
  --bg: #f7f7f7;
  --bg-alt: #ffffff;
  --text: #222222;
  --text-muted: #555555;
  --accent: #0d6efd;
  --accent-soft: rgba(13, 110, 253, 0.1);
  --border: #e5e5e5;
  --shadow-soft: 0 10px 30px rgba(0,0,0,0.06);
}

body[data-theme="dark"] {
  --bg: #0f172a;
  --bg-alt: #020617;
  --text: #e5e7eb;
  --text-muted: #9ca3af;
  --accent: #38bdf8;
  --accent-soft: rgba(56, 189, 248, 0.15);
  --border: #1f2937;
  --shadow-soft: 0 10px 30px rgba(0,0,0,0.6);
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: radial-gradient(circle at top left, rgba(13,110,253,0.08), transparent 55%), var(--bg);
}

/* Layout */
.wrapper {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px 48px;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: color-mix(in srgb, var(--bg-alt) 82%, transparent);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  height: 52px;
  width: auto;
}

/* Nav */
nav ul {
  list-style: none;
  display: flex;
  gap: 18px;
  align-items: center;
}

nav a {
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
}

nav a:hover {
  color: var(--accent);
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-btn {
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  padding: 6px 12px;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  cursor: pointer;
}

.icon-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.lang-toggle a {
  font-size: 0.8rem;
}

/* Hero */
.hero {
  padding: 40px 0 32px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 32px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.1rem, 3vw + 1rem, 2.8rem);
  line-height: 1.15;
  margin-bottom: 12px;
}

.hero p {
  color: var(--text-muted);
  margin-bottom: 10px;
  max-width: 600px;
}

.hero-cta {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-card {
  border-radius: 18px;
  background: radial-gradient(circle at top left, var(--accent-soft), var(--bg-alt));
  box-shadow: var(--shadow-soft);
  padding: 18px 18px;
  border: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Sections */
section {
  margin-bottom: 40px;
}

section h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

section h3 {
  font-size: 1.05rem;
  margin-top: 16px;
  margin-bottom: 6px;
}

.section-intro {
  color: var(--text-muted);
  margin-bottom: 10px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.card {
  background: var(--bg-alt);
  border-radius: 14px;
  padding: 16px 16px 14px;
  border: 1px solid var(--border);
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
  font-size: 0.92rem;
}

.card strong {
  display: block;
  margin-bottom: 4px;
}

ul, ol {
  padding-left: 20px;
}

li {
  margin-bottom: 4px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-size: 0.95rem;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
}

.btn:hover {
  filter: brightness(1.05);
}

/* Contact form */
form {
  max-width: 520px;
}

label {
  display: block;
  margin-bottom: 4px;
  font-weight: 500;
}

input, textarea, select {
  width: 100%;
  padding: 8px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  color: var(--text);
  font: inherit;
}

textarea {
  min-height: 120px;
}

/* Footer */
footer {
  text-align: center;
  font-size: 0.85rem;
  padding: 16px;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
  margin-top: 40px;
  color: var(--text-muted);
}

.footer-canada {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  margin-bottom: 6px;
}

.footer-canada img.flag-img {
  height: 14px;
  width: auto;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 16px;
  }
  nav ul {
    gap: 10px;
  }
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-card {
    margin-top: 8px;
  }
}

/* Outdoor advertising gallery */
.adv-photo-grid {
  margin: 20px 0 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.adv-photo-grid img {
  width: 100%;
  height: 260px; /* sets consistent display height */
  object-fit: cover; /* crops nicely while maintaining proportions */
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
}
/* Services graphic */
.services-graphic {
  text-align: center;
  margin: 40px 0 20px;
}

/* Services graphic as a card */
.services-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.services-img-card {
  width: 100%;
  max-width: 180px; /* adjust smaller/larger as needed */
  height: auto;
}
.contact-card .contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0;
  line-height: 1.4;
}

.contact-card .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #00b4ff, #0061ff); /* logo-like blue gradient */
  color: #ffffff;
  flex-shrink: 0;
}

.contact-card svg {
  width: 18px;
  height: 18px;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: currentColor;
}

