/* ROOT VARIABLES */
:root {
  --bg: #0f172a;
  --bg-alt: #111827;
  --card-bg: #020617;
  --accent: #f97316;
  --accent-soft: rgba(249, 115, 22, 0.12);
  --text: #e5e7eb;
  --muted: #9ca3af;
  --border: #1f2937;
  --radius: 10px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.45);
  --max-width: 1120px;
  --transition: 180ms ease-out;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* GLOBAL RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: radial-gradient(circle at top, #1f2937 0, #020617 55%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}
A
img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.7));
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.logo span {
  color: var(--accent);
}

.nav {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  font-size: 0.9rem;
}

.nav a {
  color: var(--muted);
  padding: 0.25rem 0;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav a:hover::after {
  width: 100%;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #111827;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: 0 14px 35px rgba(249, 115, 22, 0.35);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 45px rgba(249, 115, 22, 0.45);
  background: #fb923c;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  box-shadow: none;
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: none;
}

.btn-full {
  width: 100%;
}

/* HERO SECTION */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-image: url("images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  justify-content: center;   /* centers horizontally */
  align-items: center;       /* centers vertically */
  text-align: center;        /* centers text */
  padding: 4rem 2rem;
}

/* DARK OVERLAY */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0;
}

/* HERO CONTENT */
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}
.hero * {
  position: relative;
  z-index: 2;
}
/* BIGGER HEADLINE */
.hero h1 {
  font-size: 3.2rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

/* BIGGER SUBTEXT */
.hero p {
  font-size: 1.4rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

/* BUTTONS CENTERED */
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

/* STATS CENTERED */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 2rem;
}

.stat-number {
  font-size: 2rem;
  font-weight: bold;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.85;
}

/* SECTIONS */
.section {
  padding: 3.5rem 0;
}

.section-alt {
  background: radial-gradient(circle at top, #020617 0, #020617 40%, #020617 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 2.2rem;
}

.section-header h2 {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}

.section-header p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* GRID */
.grid {
  display: grid;
  gap: 1.5rem;
}

/* SERVICES SECTION */
.services {
  padding: 5rem 2rem;
  background: #0f172a;
  color: #fff;
  text-align: center;
}

.services h2 {
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
}

.services-subtitle {
  font-size: 1.2rem;
  opacity: 0.85;
  margin-bottom: 3rem;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

/* CARD */
.service-card {
  background: #1e293b;
  border-radius: 12px;
  overflow: hidden;
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
}

/* IMAGE */
.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* TEXT */
.service-card h3 {
  font-size: 1.4rem;
  margin: 1rem 1.2rem 0.5rem;
}

.service-card p {
  margin: 0 1.2rem 1.5rem;
  opacity: 0.9;
  line-height: 1.5;
}

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.projects-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.testimonials-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* ABOUT SECTION */
.about {
  padding: 6rem 2rem;
  background: #0f172a;
  color: #fff;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* IMAGE SIDE */
.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

/* BADGE */
.about-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #facc15;
  color: #000;
  padding: 1.2rem 1.6rem;
  border-radius: 12px;
  text-align: center;
  font-weight: bold;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.badge-number {
  font-size: 2.4rem;
  display: block;
  line-height: 1;
}

.badge-text {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* TEXT SIDE */
.about-text h2 {
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
}

.about-text h3 {
  font-size: 1.6rem;
  font-weight: 400;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 1.2rem;
  line-height: 1.6;
  opacity: 0.9;
}

.about-list {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.about-list li {
  margin-bottom: 0.6rem;
  padding-left: 1.2rem;
  position: relative;
}

.about-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #facc15;
  font-weight: bold;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-inner {
    grid-template-columns: 1fr;
  }

  .about-badge {
    bottom: -15px;
    left: 15px;
  }
}

/* CARDS */
.card {
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.9));
  border-radius: var(--radius);
  border: 1px solid rgba(148, 163, 184, 0.18);
  padding: 1.3rem 1.4rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.7);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.9);
  border-color: rgba(249, 115, 22, 0.4);
}

/* PROJECTS SECTION */
.projects {
  padding: 5rem 2rem;
  background: #0f172a;
  color: #fff;
  text-align: center;
}

.projects h2 {
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
}

.projects-subtitle {
  font-size: 1.2rem;
  opacity: 0.85;
  margin-bottom: 3rem;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.project-card {
  background: #1e293b;
  border-radius: 12px;
  overflow: hidden;
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.2s ease;
}

.project-card:hover {
  transform: translateY(-4px);
}

.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.project-card h3 {
  font-size: 1.4rem;
  margin: 1rem 1.2rem 0.5rem;
}

.project-card p {
  margin: 0 1.2rem 1.5rem;
  opacity: 0.9;
  line-height: 1.5;
}

/* CONTACT SECTION — NEW STYLE */

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 5rem 2rem;
  background: #0f172a;
  color: #fff;
}

.contact-left h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.contact-left p {
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.contact-info p {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

/* RIGHT SIDE FORM */
.contact-right {
  background: #1e293b;
  padding: 2rem;
  border-radius: 12px;
}

.contact-right h3 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.contact-right form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-right input,
.contact-right select,
.contact-right textarea {
  width: 100%;
  padding: 0.8rem;
  border-radius: 8px;
  border: none;
  background: #0f172a;
  color: #fff;
}

.contact-right textarea {
  height: 120px;
  resize: none;
}

.contact-btn {
  background: #3b82f6;
  color: #fff;
  padding: 0.9rem;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.contact-btn:hover {
  background: #2563eb;
}

/* MOBILE */
@media (max-width: 900px) {
  .contact-section {
    grid-template-columns: 1fr;
  }
}

.site-footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 4rem 2rem 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col h3,
.footer-col h4 {
  color: #fff;
  margin-bottom: 1rem;
}

.footer-col p,
.footer-col li {
  opacity: 0.85;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 0.5rem;
}

/* FOOTNOTES */

.footer-links {
  margin-top: 0.5rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #fff;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.footer-col {
  padding: 0 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

/* Remove the line on the last column */
.footer-col:last-child {
  border-right: none;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.footer-col {
  padding: 0 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

/* Remove the line on the last column */
.footer-col:last-child {
  border-right: none;
}
.section-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin: 3rem 0 2rem;
}
.section-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 3rem 0 2rem;
  background-color: #1e293b;
}
.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1rem;
  font-size: 0.9rem;
  color: #cbd5e1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* PORTFOLIO GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-soft);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 6, 23, 0.9) 0%, transparent 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h3 {
  margin: 0;
  color: #fff;
  font-size: 1.2rem;
}

.gallery-overlay p {
  margin: 0.2rem 0 0;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
}
/* Link Wrapper Styles */
.gallery-link {
  text-decoration: none; /* Removes underlines */
  display: block;        /* Makes the entire area clickable */
  color: inherit;        /* Keeps your text colors the same */
}

.gallery-link:hover {
  text-decoration: none;
}

/* Ensure the gallery item handles the layout */
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-soft);
  background-color: var(--card-bg);
}

/* PROJECT DETAIL PAGE STYLES */
.project-detail-header {
  padding-top: 8rem;
}

.project-info h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.project-location {
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.project-description {
  max-width: 800px;
  line-height: 1.8;
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 3rem;
}

/* Modifier to remove the hover overlay effect on detail pages */
.gallery-item.no-hover:hover img {
  transform: none;
}

/* Before Tag */
.label-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: bold;
  text-transform: uppercase;
}
/* Makes the project cards clickable without changing their look */
.project-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.3s ease;
}

.project-card-link:hover {
  transform: translateY(-5px); /* Adds a nice "lift" effect when hovered */
}

/* Ensure the cards inside the links still look right */
.project-card {
  cursor: pointer;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--card-bg);
  border: 1px solid var(--border);
}
/* THANK YOU PAGE STYLES */
.thanks-content {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
  text-align: center;
}

.thanks-card {
  background: var(--card-bg);
  padding: 3rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  max-width: 600px;
  box-shadow: var(--shadow-soft);
}

.check-icon {
  width: 60px;
  height: 60px;
  background: var(--accent);
  color: #fff;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
}

.thanks-card h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.thanks-card p {
  color: var(--muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* This completely hides the honeypot line while keeping it visible to bots */
.v-field {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  opacity: 0;
}