/* =========================================================
   COLANG SOLUTIONS - COMMON CSS
   Shared across index.php, services.php, contact-us.php
========================================================= */


/* =========================================================
   ROOT VARIABLES
========================================================= */

:root {
  --gold: #d4af37;
  --gold-light: rgba(212, 175, 55, 0.12);
  --gold-border: rgba(212, 175, 55, 0.4);

  --dark: #0b0b0b;
  --dark-secondary: #121212;
  --dark-contact: #0b0b0f;

  --white: #ffffff;
  --gray: #bdbdbd;
  --gray-light: #d6d6d6;
  --gray-dark: #8f8f8f;

  --border: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.14);

  --container-width: 1300px;

  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-xl: 35px;
  --radius-round: 60px;

  --transition: 0.3s ease;
}


/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* =========================================================
   HTML / BODY
========================================================= */

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}


/* =========================================================
   GLOBAL ELEMENTS
========================================================= */

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

button {
  cursor: pointer;
}


/* =========================================================
   CONTAINER
========================================================= */

.container {
  width: 90%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
}


/* =========================================================
   COMMON SECTION
========================================================= */

section {
  padding: 120px 0;
}


/* =========================================================
   SECTION TITLE
========================================================= */

.section-title {
  text-align: center;
  margin-bottom: 70px;
}

.section-title span {
  display: inline-block;
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-title h2 {
  font-size: 52px;
  line-height: 1.15;
  font-weight: 600;
  margin-top: 15px;
}

.section-title p {
  max-width: 720px;
  margin: 20px auto 0;
  color: var(--gray);
  line-height: 1.9;
}

.section-title.center {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}


/* =========================================================
   COMMON HERO TAG
========================================================= */

.hero-tag {
  display: inline-block;
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}


/* =========================================================
   BUTTONS
========================================================= */


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: var(--radius-round);
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition: var(--transition);
}

.btn-primary {
  background: var(--gold);
  color: #000;
  border: 1px solid var(--gold);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.20);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border-light);
}

.btn-outline:hover {
  background: var(--white);
  color: #000;
  border-color: var(--white);
  transform: translateY(-4px);
}


/* =========================================================
   COMMON CARD
========================================================= */

.card-base {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.card-base:hover {
  border-color: var(--gold-border);
  transform: translateY(-6px);
}


/* =========================================================
   GOLD GRADIENT BOX
========================================================= */

.gold-box {
  background:
    linear-gradient(
      135deg,
      rgba(212, 175, 55, 0.12),
      rgba(255, 255, 255, 0.03)
    );

  border: 1px solid var(--border);
}


/* =========================================================
   COMMON CTA
========================================================= */

.cta-section {
  padding: 120px 0;
}

.cta-box {
  position: relative;
  overflow: hidden;

  border-radius: var(--radius-xl);
  padding: 80px 60px;

  background:
    linear-gradient(
      135deg,
      rgba(212, 175, 55, 0.15),
      rgba(255, 255, 255, 0.03)
    );

  border: 1px solid var(--border);
}

.cta-box::before {
  content: "";

  position: absolute;

  width: 400px;
  height: 400px;

  border-radius: 50%;

  background: rgba(212, 175, 55, 0.08);

  top: -180px;
  right: -120px;

  pointer-events: none;
}

.cta-box h2 {
  font-size: 54px;
  line-height: 1.1;
  margin-bottom: 25px;
}

.cta-box p {
  color: var(--gray);
  max-width: 760px;
  margin: 0 auto 35px;
  line-height: 1.9;
}


/* =========================================================
   COMMON CTA ACTIONS
========================================================= */

.cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}


/* =========================================================
   COMMON FOOTER
========================================================= */

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h4 {
  color: var(--gold);
  margin-bottom: 25px;
}

.footer-col a {
  display: block;
  color: var(--gray);
  margin-bottom: 12px;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--gold);
}

.copyright {
  text-align: center;
  color: var(--gray);

  border-top: 1px solid var(--border);

  padding-top: 30px;
}


/* =========================================================
   COMMON FORM ELEMENTS
========================================================= */

.input-group label {
  display: block;
  margin-bottom: 12px;

  font-size: 15px;
  font-weight: 500;
}

.input-group input,
.input-group textarea,
.input-group select {
  width: 100%;

  padding: 18px 20px;

  border-radius: 16px;

  background: rgba(255, 255, 255, 0.04);

  border: 1px solid var(--border);

  color: var(--white);

  font-size: 16px;

  outline: none;

  transition: var(--transition);
}

.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus {
  border-color: var(--gold-border);
  transform: translateY(-2px);
}

.input-group input::placeholder,
.input-group textarea::placeholder {
  color: var(--gray-dark);
}

.input-group textarea{
  min-height:190px;
  resize:none;
}

/* =========================================================
   COMMON PILL / TAG
========================================================= */

.pill {
  display: inline-block;

  padding: 10px 18px;

  border-radius: 30px;

  background: rgba(255, 255, 255, 0.05);

  border: 1px solid var(--border);

  color: var(--gray-light);

  font-size: 14px;
}


/* =========================================================
   COMMON MOBILE - TABLET
========================================================= */

@media (max-width: 992px) {

  section {
    padding: 90px 0;
  }

  .section-title {
    margin-bottom: 55px;
  }

  .section-title h2 {
    font-size: 42px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-box {
    padding: 60px 35px;
  }

  .cta-box h2 {
    font-size: 42px;
  }

  .cta-actions {
    flex-wrap: wrap;
  }
}


/* =========================================================
   COMMON MOBILE
========================================================= */

@media (max-width: 576px) {

  section {
    padding: 80px 0;
  }

  .container {
    width: 92%;
  }

  .section-title {
    margin-bottom: 45px;
  }

  .section-title h2 {
    font-size: 34px;
  }

  .section-title p {
    font-size: 15px;
  }

  .btn {
    width: 100%;
    padding: 15px 25px;
  }

  .cta-section {
    padding: 80px 0;
  }

  .cta-box {
    padding: 50px 25px;
  }

  .cta-box h2 {
    font-size: 34px;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}