/* ==================================================
   FONTS
================================================== */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap");

/* ==================================================
   ROOT
================================================== */

:root {
  /* Colors */

  --clr-bg: #f7f5f2;
  --clr-surface: #f0ede8;
  --clr-text: #111111;
  --clr-grey-100: #f5f5f5;
  --clr-grey-200: #e8e8e8;
  --clr-grey-300: #d7d7d7;
  --clr-grey-400: #b5b5b5;
  --clr-grey-500: #7a7a7a;
  --clr-grey-600: #5c5c5c;
  --clr-border: #dddddd;
  /* Typography */
  --font-primary: "Inter", sans-serif;
  /* Containers */
  --container-width: 1600px;
  --container-padding: 6vw;
  /* Transitions */
  --transition: 300ms ease;
}

/* ==================================================
   RESET
================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

/* ==================================================
   HTML
================================================== */

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
/* ==================================================
   BODY
================================================== */

body {
  font-family: var(--font-primary);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  transition:
    background-color 0.8s ease,
    color 0.8s ease;
}

body.dark-section {
  background-color: #0b0b0b;
  color: #ffffff;
}

/* ==================================================
   MEDIA
================================================== */

img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
}

/* ==================================================
   FORMS
================================================== */

input,
button,
textarea,
select {
  font: inherit;
}

/* ==================================================
   LINKS
================================================== */

a {
  color: inherit;
  text-decoration: none;
}

/* ==================================================
   LISTS
================================================== */

ul,
ol {
  list-style: none;
}

/* ==================================================
   SECTIONS
================================================== */

section {
  padding: 10rem var(--container-padding);
}

/* ==================================================
   CONTAINER
================================================== */

.container {
  width: 100%;
  max-width: var(--container-width);
  margin-inline: auto;
}

/* ==================================================
   TYPOGRAPHY
================================================== */

h1 {
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: 0.92;
  font-weight: 500;
  letter-spacing: -0.06em;
}

h2 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.04em;
}

h3 {
  font-size: 1.5rem;
  font-weight: 500;
}

p {
  font-size: 1rem;
  color: var(--clr-grey-600);
  line-height: 1.8;
}

/* ==================================================
   SECTION LABEL
================================================== */

.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--clr-grey-500);
}

/* ================================================= Styles Start =============================================== */

/* ========================================== NAVBAR ========================================== */

.header {
  position: fixed;
  top: 1.5rem;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding-inline: 1rem;
}

.navbar {
  max-width: 1600px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0.6rem 1rem;
  border-radius: 25px; /* tighter radius for modern look */
  background-color: rgba(87, 87, 87, 0.3); /* transparent base */
  backdrop-filter: blur(12px); /* blur effect */
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 12px rgba(184, 184, 184, 0.08); /* soft shadow */
}

/* ==========================================
   LOGO
========================================== */

.logo {
  justify-self: start;
  display: flex;
  align-items: center;
  color: white;
  text-decoration: none;
}

.logo img {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo:hover {
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

/* ==========================================
   NAV LINKS
========================================== */

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  position: relative;
  font-size: 0.9rem;
  font-weight: 500;
  color: white;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--clr-text);
}

/* ==========================================
   CTA
========================================== */

.nav-cta {
  justify-self: end;
  padding: 0.85rem 1.3rem;
  border-radius: 25px;
  background: var(--clr-text);
  color: white;
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
}

.nav-cta:hover {
  transform: translateY(-2px);
}

/* ==========================================
   TABLET
========================================== */

@media (max-width: 900px) {
  .navbar {
    grid-template-columns: 1fr auto;
  }
  .nav-links {
    display: none;
  }
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 600px) {
  .header {
    padding-inline: 1rem;
  }
  .navbar {
    padding: 0.8rem 0.9rem;
  }
  .logo {
    font-size: 0.9rem;
  }
  .nav-cta {
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
  }
}

/* ========================================== OVERLAY ========================================== */

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: 0.35s ease;
  z-index: 1500;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ==========================================
   PANEL (DARK FLOATING)
========================================== */

.contact-panel {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 620px;
  max-width: calc(100% - 3rem);
  background: #0f0f10;
  border-radius: 25px;
  transform: translateX(120%);
  transition: 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
  z-index: 2000;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.contact-panel.active {
  transform: translateX(0);
}

/* ==========================================
   CONTENT
========================================== */

.panel-content {
  padding: 5rem 3rem;
  color: #f2f2f2;
}

.panel-content h2 {
  font-size: 2.8rem;
  line-height: 1.05;
  margin-bottom: 3rem;
  letter-spacing: -0.04em;
  color: #ffffff;
}

/* ==========================================
   CLOSE BUTTON
========================================== */

.close-panel {
  position: absolute;
  top: 2rem;
  right: 2rem;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s ease;
}

.close-panel:hover {
  color: #fff;
}

/* ==========================================
   FORM (GRID)
========================================== */

form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem 1.5rem;
}

/* full width fields */
.form-group:nth-child(3),
.form-group:nth-child(4),
.form-group:nth-child(5),
.service-options,
.submit-btn {
  grid-column: 1 / -1;
}

/* ==========================================
   INPUTS (PLACEHOLDER STYLE ONLY)
========================================== */

.form-group input,
.form-group textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  padding: 1rem 0;
  outline: none;
  font-size: 1rem;
  color: #fff;
  transition: 0.3s ease;
}

/* placeholder styling */
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

/* focus */
.form-group input:focus,
.form-group textarea:focus {
  border-bottom: 1px solid #ffffff;
}

/* textarea */
.form-group textarea {
  min-height: 70px;
  padding: 0.8rem 0;
  line-height: 1.4;
}

/* ==========================================
   SERVICES OPTIONS (DARK MINIMAL)
========================================== */

.service-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.service-options label {
  font-size: 0.85rem;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: 0.3s ease;
}

.service-options label:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

/* ==========================================
   SUBMIT BUTTON
========================================== */

.submit-btn {
  margin-top: 1rem;
  background: #ffffff;
  color: #0f0f10;
  border: none;
  border-radius: 999px;
  padding: 1rem;
  cursor: pointer;
  transition: 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* ==========================================
   RESPONSIVE
========================================== */

/* Tablet */
@media (max-width: 900px) {
  .contact-panel {
    width: 100%;
    right: 0;
    left: 0;
    top: auto;
    bottom: 0;
    height: 85vh;
    border-radius: 25px 25px 0 0;
    transform: translateY(120%);
  }

  .contact-panel.active {
    transform: translateY(0);
  }

  form {
    grid-template-columns: 1fr;
  }

  .form-group:nth-child(3),
  .form-group:nth-child(4),
  .form-group:nth-child(5),
  .service-options,
  .submit-btn {
    grid-column: auto;
  }
}

/* MOBILE: centered modal */
@media (max-width: 600px) {
  .contact-panel {
    top: 50%;
    left: 50%;
    bottom: auto;
    right: auto;
    height: auto;
    transform: translate(-50%, 120%);
  }

  .contact-panel.active {
    transform: translate(-50%, -50%);
  }

  .panel-content {
    padding: 3rem 1.5rem;
  }

  .panel-content h2 {
    font-size: 2rem;
  }
}

/* ========================================== HERO ========================================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  background: var(--clr-text);
  padding: 8rem 1.5rem 6rem;
}

.hero .container {
  max-width: 1400px;
  width: 100%;
  margin-inline: auto;
}

/* ==========================================
   META
========================================== */

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-meta span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.45);
}

/* ==========================================
   HEADING
========================================== */

.hero h1 {
  max-width: 1100px;
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.06em;
  color: #ffffff;
  margin-bottom: 2rem;
}
/* ==========================================
   DESCRIPTION
========================================== */
.hero-description {
  max-width: 550px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
}

.hero-visual {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.hero-visual img {
  width: 500px;
  opacity: 0.3;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* ==========================================
   TABLET
========================================== */

@media (max-width: 900px) {
  .hero h1 {
    font-size: clamp(3.5rem, 10vw, 6rem);
  }
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 600px) {
  .hero {
    padding: 7rem 1.25rem;
    min-height: 90vh;
  }
  .hero h1 {
    font-size: clamp(3rem, 12vw, 4.5rem);
    line-height: 1;
  }
  .hero-description {
    font-size: 1rem;
    line-height: 1.7;
  }
  .hero-meta {
    gap: 0.75rem;
  }
}

/*======================================== Services Section ================================================*/

.services {
  padding: 8rem 1.5rem;
  background: var(--clr-bg);
}

.section-heading {
  max-width: 700px;
  margin-bottom: 4rem;
}

.section-heading span {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--clr-grey-600);
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

/* ==========================================
   GRID
========================================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

/* ==========================================
   CARD
========================================== */

.service-card {
  position: relative;
  height: 500px;
  padding: 2rem;
  border-radius: 25px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.4s ease;
}

/* ==========================================
   BACKGROUNDS
========================================== */

/* Web Design */
.service-card:nth-child(1) {
  background-image: url("../images/1.jpg");
}

/* Web Development */
.service-card:nth-child(2) {
  background-image: url("../images/2.jpg");
}

/* Business Applications */
.service-card:nth-child(3) {
  background-image: url("../images/3.jpg");
}

/* Digital Consulting */
.service-card:nth-child(4) {
  background-image: url("../images/4.jpg");
}

/* Brand Identity */
.service-card:nth-child(5) {
  background-image: url("../images/5.jpg");
}

/* ==========================================
   OVERLAY
========================================== */

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.2));
}

/* ==========================================
   TITLE
========================================== */

.service-card h3 {
  position: relative;
  color: white;
  font-size: 2rem;
  line-height: 1.1;
  z-index: 2;
  transition: 0.4s ease;
}

/* ==========================================
   TAGS
========================================== */

.service-tags {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.4s ease;
  z-index: 2;
}

.service-tags span {
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  color: white;
  font-size: 0.85rem;
  line-height: 1;
}

/* ==========================================
   HOVER
========================================== */

.service-card:hover {
  transform: translateY(-8px);
}

.service-card:hover .service-tags {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   LARGE LAPTOPS
========================================== */

@media (max-width: 1400px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ==========================================
   TABLETS
========================================== */

@media (max-width: 1024px) {
  .services {
    padding: 7rem 1.5rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card {
    height: 420px;
  }

  .service-card h3 {
    font-size: 1.75rem;
  }
}

/* ==========================================
   SMALL TABLETS
========================================== */

@media (max-width: 768px) {
  .section-heading {
    margin-bottom: 3rem;
  }

  .section-heading h2 {
    font-size: clamp(2rem, 6vw, 3rem);
  }

  .service-card {
    height: 380px;
    padding: 1.5rem;
  }

  .service-card h3 {
    font-size: 1.5rem;
  }
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 600px) {
  .services {
    padding: 5rem 1.25rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .section-heading {
    margin-bottom: 2.5rem;
  }

  .section-heading span {
    font-size: 0.75rem;
  }

  .section-heading h2 {
    font-size: 2rem;
    line-height: 1.15;
  }

  .service-card {
    height: 300px;
    padding: 1.25rem;
  }

  .service-card h3 {
    font-size: 1.35rem;
  }

  /* Mobile has no hover */
  .service-tags {
    opacity: 1;
    transform: translateY(0);
    margin-top: 1rem;
  }

  .service-tags span {
    font-size: 0.75rem;
    padding: 0.55rem 0.85rem;
  }
}

/* ==========================================
   SMALL PHONES
========================================== */

@media (max-width: 400px) {
  .service-card {
    height: 280px;
  }

  .service-card h3 {
    font-size: 1.2rem;
  }

  .service-tags {
    gap: 0.5rem;
  }

  .service-tags span {
    font-size: 0.7rem;
  }
}

/* ========================================== APPROACH ========================================== */

.approach-ticker {
  padding: 8rem 1.5rem;
  background: var(--clr-bg);
  overflow: hidden;
}

/* container */
.approach-ticker .container {
  max-width: 1100px;
  margin: 0 auto;
}

/* ==========================================
   HEADER
========================================== */

.approach-header {
  max-width: 900px;
  margin-bottom: 4rem;
}

.approach-header span {
  display: inline-block;

  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;

  color: var(--clr-grey-600);

  margin-bottom: 1.2rem;
}

.approach-header h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.2;
  letter-spacing: -0.04em;

  color: var(--clr-text);
}

/* ==========================================
   TICKER WRAPPER (FADE EDGES)
========================================== */

.ticker-wrapper {
  position: relative;
  overflow: hidden;

  padding: 1rem 0;
}

/* left fade */
.ticker-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;

  width: 120px;
  height: 100%;

  background: linear-gradient(to right, var(--clr-bg), transparent);

  z-index: 2;
}

/* right fade */
.ticker-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;

  width: 120px;
  height: 100%;

  background: linear-gradient(to left, var(--clr-bg), transparent);

  z-index: 2;
}

/* ==========================================
   TRACK
========================================== */

.ticker-track {
  display: flex;
  gap: 4rem;

  width: max-content;

  animation: scroll 28s linear infinite;

  will-change: transform;
}

/* ==========================================
   ITEMS
========================================== */

.ticker-item {
  font-size: 0.95rem;

  letter-spacing: 0.12em;
  text-transform: uppercase;

  color: var(--clr-grey-600);

  white-space: nowrap;
}

/* ==========================================
   ANIMATION
========================================== */

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* pause on hover */
.ticker-wrapper:hover .ticker-track {
  animation-play-state: paused;
}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 768px) {
  .approach-ticker {
    padding: 6rem 1.25rem;
  }

  .approach-header {
    margin-bottom: 3rem;
  }

  .approach-header h2 {
    font-size: 1.8rem;
  }

  .ticker-track {
    gap: 2.5rem;
    animation: scroll 22s linear infinite;
  }

  .ticker-item {
    font-size: 0.85rem;
  }

  .ticker-wrapper::before,
  .ticker-wrapper::after {
    width: 60px;
  }
}

@media (max-width: 480px) {
  .ticker-track {
    gap: 2rem;
  }

  .ticker-item {
    font-size: 0.8rem;
  }
}

/* ========================================== PORTFOLIO ========================================== */

.portfolio {
  padding: 8rem 1.5rem;
  background: transparent;
}

/* ==========================================
   HEADER
========================================== */

.portfolio-header {
  max-width: 750px;
  margin-bottom: 4rem;
}

.portfolio-header span {
  display: inline-block;

  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;

  color: var(--clr-grey-600);

  margin-bottom: 1rem;
}

.portfolio-header h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.2;

  margin-bottom: 1rem;

  color: var(--clr-bg);
}

.portfolio-header p {
  color: var(--clr-grey-600);
  line-height: 1.7;
  max-width: 600px;
}

/* ==========================================
   FEATURE CARD WRAPPER
========================================== */

.portfolio-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;

  align-items: center;

  padding: 2rem;

  border-radius: 25px;

  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);

  backdrop-filter: blur(12px);

  transition: 0.4s ease;
}

.portfolio-feature:hover {
  transform: translateY(-6px);
}

/* ==========================================
   IMAGE BLOCK
========================================== */

.portfolio-image {
  position: relative;

  border-radius: 25px;
  overflow: hidden;

  height: 350px;
}

.portfolio-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  display: block;

  transition: 0.6s ease;
}

/* hover zoom */
.portfolio-feature:hover .portfolio-image img {
  transform: scale(1.05);
}

/* overlay */
.portfolio-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.1));
}

/* label */
.portfolio-label {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;

  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);

  padding: 0.5rem 1rem;

  border-radius: 999px;

  color: white;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ==========================================
   META CONTENT
========================================== */

.portfolio-meta h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;

  color: var(--clr-bg);
}

.portfolio-meta p {
  color: var(--clr-grey-600);
  line-height: 1.7;

  margin-bottom: 2rem;
}

/* CTA */
.portfolio-cta {
  display: inline-block;

  padding: 0.9rem 1.5rem;

  border-radius: 999px;

  background: var(--clr-grey-600);
  color: #fff;

  text-decoration: none;

  transition: 0.3s ease;
}

.portfolio-cta:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 1024px) {
  .portfolio-feature {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .portfolio-image {
    height: 340px;
  }
}

@media (max-width: 600px) {
  .portfolio {
    padding: 5rem 1.25rem;
  }

  .portfolio-header h2 {
    font-size: 1.8rem;
  }

  .portfolio-meta h3 {
    font-size: 1.4rem;
  }

  .portfolio-image {
    height: 260px;
  }

  .portfolio-feature {
    padding: 1.25rem;
  }
}

/* ========================================== ABOUT ========================================== */

.about {
  padding: rem 2rem;
  background: #0b0b0b;
  color: #fff;
}

/* ==========================================
   HEADER
========================================== */
.about-header {
  max-width: 1050px;
  margin: 0 auto 3rem;
  text-align: left;
}

.about-header span {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.75rem;
}

.about-header h2 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
}

/* ==========================================
   GRID
========================================== */
.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* ==========================================
   MAIN TEXT
========================================== */
.about-main p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.25rem;
}

/* LINK */
.about-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  position: relative;
}

.about-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.about-link:hover::after {
  transform: scaleX(1);
}

/* ==========================================
   SIDE BLOCKS
========================================== */
.about-side {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.about-block h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.4rem;
}

.about-block p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

/* ==========================================
   RESPONSIVE
========================================== */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 600px) {
  .about {
    padding: 5rem 1.5rem;
  }

  .about-header h2 {
    font-size: 1.9rem;
  }
}

/* ========================================== CONTACT ========================================== */

/* ==========================================
   CONTACT SECTION
========================================== */

.contact {
  padding: 10rem 1.5rem;
  background: #0b0b0b;
}

/* ==========================================
   HEADER
========================================== */

.contact-header {
  max-width: 800px;
  margin-bottom: 4rem;
}

.contact-header span {
  display: inline-block;

  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;

  color: rgba(255, 255, 255, 0.5);

  margin-bottom: 1rem;
}

.contact-header h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.2;

  color: #fff;

  letter-spacing: -0.03em;
}

/* ==========================================
   CONTACT BOX (25px FLOATING CONTAINER)
========================================== */

.contact-box {
  max-width: 1100px;
  margin: 0 auto;

  padding: 3rem;

  border-radius: 25px;

  background: rgba(255, 255, 255, 0.03);

  border: 1px solid rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(10px);

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* ==========================================
   LAYOUT
========================================== */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}

/* ==========================================
   LEFT INFO
========================================== */

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.info-block h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;

  color: rgba(255, 255, 255, 0.5);

  margin-bottom: 0.5rem;
}

.info-block p {
  color: #fff;
  font-size: 0.95rem;
}

/* tags */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tags span {
  font-size: 0.75rem;

  padding: 0.4rem 0.8rem;

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.06);

  border: 1px solid rgba(255, 255, 255, 0.08);

  color: #fff;
}

/* ==========================================
   FORM
========================================== */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ===============================
   INPUTS
================================ */
input,
textarea {
  width: 100%;
  padding: 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  outline: none;
  font-size: 0.95rem;
  transition: 0.3s ease;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

input:focus,
textarea:focus {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
}

/* ===============================
   BUTTON BASE
================================ */
.submit-btn {
  margin-top: 0.5rem;
  background: #fff;
  color: #0b0b0b;
  border: none;
  border-radius: 999px;
  padding: 1rem;
  cursor: pointer;
  transition: 0.3s ease;
  font-weight: 500;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;

  position: relative;
  overflow: hidden;
}

/* hover */
.submit-btn:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

/* ===============================
   LOADING STATE
================================ */
.submit-btn.loading {
  pointer-events: none;
  opacity: 0.8;
}

/* spinner */
.submit-btn.loading::after {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-top-color: #000;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  position: absolute;
  right: 18px;
}

/* hide text when loading */
.submit-btn.loading .btn-text {
  opacity: 0;
}

/* ===============================
   SUCCESS STATE
================================ */
.submit-btn.success {
  background: #1f9d55;
  color: #fff;
}

.submit-btn.success::after {
  display: none;
}

/* ===============================
   ERROR STATE
================================ */
.submit-btn.error {
  background: #e63946;
  color: #fff;
}

.submit-btn.error::after {
  display: none;
}

/* ===============================
   ANIMATION
================================ */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-box {
    padding: 2rem;
    border-radius: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .contact {
    padding: 6rem 1.25rem;
  }

  .contact-header h2 {
    font-size: 1.8rem;
  }
}

/* ========================================== LOGO BAND ========================================== */
.logo-band {
  width: 100%;
  height: 120px; /* roughly logo-height space */
  display: flex;
  align-items: center;
  justify-content: center;

  background: #0b0b0b;
  overflow: hidden;
}

.logo-band img {
  height: 200px; /* adjust based on your logo scale */
  width: auto;
  display: block;
  object-fit: contain;
  opacity: 0.9; /* optional subtle tone */
}

/* ========================================== FOOTER ========================================== */
.footer {
  padding: 8rem 2rem;
  background: #0b0b0b;
  color: #fff;
  text-align: left;
  position: relative;
  overflow: hidden;
}

/* Decorative accent line */
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--clr-grey-600);
}

/* ==========================================
   CONTENT WRAPPER
========================================== */
.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

/* ==========================================
   SMALL KICKER
========================================== */
.footer-kicker {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
  position: relative;
}

.footer-kicker::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--clr-grey-600);
  margin-top: 0.5rem;
}

/* ==========================================
   MAIN STATEMENT
========================================== */
.footer-title {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #ffffff, var(--clr-grey-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==========================================
   SUPPORT TEXT
========================================== */
.footer-subtitle {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  max-width: 650px;
  margin-bottom: 3rem;
}

/* ==========================================
   META LINE
========================================== */
.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-meta span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  position: relative;
  transition: color 0.3s ease;
}

.footer-meta span:hover {
  color: var(--clr-grey-600);
}

.footer-meta span:not(:last-child)::after {
  content: "•";
  margin-left: 1rem;
  color: rgba(255, 255, 255, 0.2);
}

/* ==========================================
   RESPONSIVE
========================================== */
@media (max-width: 768px) {
  .footer {
    padding: 6rem 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-meta {
    flex-direction: column;
    gap: 0.75rem;
  }

  .footer-meta span:not(:last-child)::after {
    display: none;
  }
}
