/*
Theme Name: Mkt Agency
Theme URI: https://example.com
Author: Your Name
Author URI: https://example.com
Description: A modern marketing agency landing page theme
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mkt-agency
Domain Path: /languages
*/

/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=KoHo:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #142941;
  color: #e1efff;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #f78227;
}

button {
  border: none;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "KoHo", sans-serif;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 8vw, 7rem);
  line-height: 1;
}

h2 {
  font-size: clamp(2rem, 6vw, 4.375rem);
}

h3 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

p {
  font-size: clamp(1rem, 2vw, 1.375rem);
  line-height: 1.8;
}

/* Layout Container */
.container {
  max-width: 1620px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Wrapper */
.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-content {
  flex: 1;
}

/* Navigation */
.navbar {
  width: 100%;
  padding: 1.75rem 1rem;
  background-color: #142941;
  position: relative;
  z-index: 100;
}

.navbar-content {
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.navbar-logo {
  font-size: clamp(1.75rem, 4vw, 2.8125rem);
  font-family: "KoHo", sans-serif;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
}

.navbar-logo .accent {
  color: #f78227;
}

.navbar-links {
  display: none;
  align-items: center;
  gap: 3rem;
  list-style: none;
}

.navbar-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1rem, 2vw, 1.375rem);
  font-weight: 400;
  transition: color 0.3s ease;
}

.navbar-links a:hover,
.navbar-links a.active {
  color: #ffffff;
}

.navbar-links li:first-child a {
  color: #ffffff;
  font-weight: 700;
}

.navbar-btn {
  display: none;
  padding: 0.8rem 1.875rem;
  border: 2px solid #ffffff;
  border-radius: 30px;
  color: #ffffff;
  background: transparent;
  font-size: clamp(1rem, 2vw, 1.375rem);
  font-weight: 400;
  white-space: nowrap;
}

.navbar-btn:hover {
  background-color: #ffffff;
  color: #142941;
}

.menu-toggle {
  display: block;
  background: none;
  padding: 0.5rem;
  color: #ffffff;
  font-size: 1.5rem;
}

@media (min-width: 1280px) {
  .navbar-links {
    display: flex;
  }

  .navbar-btn {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  padding: 3rem 1rem;
  overflow: hidden;
}

.hero-content {
  max-width: 1305px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 10;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 100%;
}

.hero-label {
  color: #ff8456;
  text-align: center;
  font-size: clamp(1.25rem, 3vw, 1.875rem);
  font-weight: 500;
}

.hero-title {
  color: #ffffff;
  text-align: center;
  max-width: 1305px;
}

.hero-description {
  color: #e1efff;
  text-align: center;
  max-width: 949px;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    gap: 2.5rem;
    justify-content: center;
  }
}

.btn-primary {
  width: 180px;
  padding: 0.8rem;
  border-radius: 30px;
  background-color: #ee6f3f;
  color: #ffffff;
  font-size: clamp(1rem, 2vw, 1.375rem);
  font-weight: 600;
}

.btn-primary:hover {
  background-color: #f78227;
}

@media (min-width: 1024px) {
  .btn-primary {
    width: 202px;
    padding: 0.8125rem;
  }
}

.btn-secondary {
  width: 180px;
  padding: 0.8rem;
  border: 2px solid #ffffff;
  border-radius: 30px;
  background-color: transparent;
  color: #e1efff;
  font-size: clamp(1rem, 2vw, 1.375rem);
  font-weight: 400;
}

.btn-secondary:hover {
  background-color: #ffffff;
  color: #142941;
}

@media (min-width: 1024px) {
  .btn-secondary {
    width: 202px;
    padding: 0.8125rem;
  }
}

.hero-icon {
  position: absolute;
  left: 1rem;
  top: 26rem;
  opacity: 0.7;
}

@media (min-width: 1024px) {
  .hero-icon {
    left: 18.875rem;
    top: 27.9375rem;
  }
}

.hero-illustration {
  width: 100%;
  max-width: 1920px;
  height: auto;
  margin-top: 2rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .hero-illustration {
    margin-top: -13.75rem;
  }
}

/* Blur Effects */
.blur-left {
  position: absolute;
  left: -350px;
  top: 0;
  width: 500px;
  height: 500px;
  background-color: #ee6f3f;
  opacity: 0.4;
  filter: blur(175px);
  pointer-events: none;
  display: none;
}

.blur-right {
  position: absolute;
  right: -350px;
  top: 0;
  width: 500px;
  height: 500px;
  background-color: #ee6f3f;
  opacity: 0.3;
  filter: blur(175px);
  pointer-events: none;
  display: none;
}

@media (min-width: 1024px) {
  .blur-left,
  .blur-right {
    display: block;
  }
}

/* Data Aggregation Section */
.data-aggregation {
  position: relative;
  width: 100%;
  padding: 4rem 1rem;
  margin-top: 3rem;
}

@media (min-width: 1024px) {
  .data-aggregation {
    padding: 6rem 3rem;
    margin-top: 6rem;
  }
}

.data-aggregation-container {
  max-width: 1620px;
  margin: 0 auto;
}

.data-aggregation-header {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .data-aggregation-header {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 9.0625rem;
  }
}

.data-aggregation-title {
  font-size: clamp(2.5rem, 6vw, 4.375rem);
}

.data-aggregation-description {
  max-width: 539px;
  font-size: clamp(1rem, 2vw, 1.375rem);
  font-weight: 400;
  color: #e1efff;
  line-height: 2.5;
}

/* Cards */
.card {
  border-radius: 30px;
  padding: 2rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .card {
    padding: 3.375rem 5.875rem;
    margin-bottom: 3.125rem;
    flex-direction: row;
    gap: 4.1875rem;
  }
}

.card.salespeople {
  background: linear-gradient(90deg, #354c66 0%, rgba(53, 76, 102, 0) 100%);
}

.card.marketers {
  background: linear-gradient(270deg, #354c66 0%, rgba(53, 76, 102, 0) 98.72%);
}

.card.recruiters {
  background: linear-gradient(90deg, #354c66 0%, rgba(53, 76, 102, 0) 100%);
}

.card-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: #ee6f3f;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .card-icon {
    width: 110px;
    height: 110px;
  }
}

.card-icon svg {
  width: 100%;
  height: 100%;
}

.card-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  flex: 1;
}

@media (min-width: 1024px) {
  .card-content {
    gap: 3.125rem;
  }
}

.card-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

.card-description {
  color: #e1efff;
  font-size: clamp(1rem, 2vw, 1.375rem);
  font-weight: 400;
  line-height: 2.1875;
}

/* Footer */
.site-footer {
  background-color: #20344a;
  color: #e1efff;
  padding: 3rem 1.5rem;
  margin-top: 4rem;
  position: relative;
}

@media (min-width: 1024px) {
  .site-footer {
    padding: 3.125rem;
    margin-top: 6rem;
  }
}

.footer-blur-left {
  position: absolute;
  bottom: 0;
  left: -400px;
  width: 655px;
  height: 655px;
  background-color: #ee6f3f;
  opacity: 0.55;
  filter: blur(175px);
  pointer-events: none;
  display: none;
}

.footer-blur-right {
  position: absolute;
  bottom: 0;
  right: -400px;
  width: 655px;
  height: 655px;
  background-color: #ee6f3f;
  opacity: 0.55;
  filter: blur(175px);
  pointer-events: none;
  display: none;
}

@media (min-width: 1024px) {
  .footer-blur-left,
  .footer-blur-right {
    display: block;
  }
}

.footer-content {
  max-width: 1657px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 7.8125rem;
    margin-bottom: 5.625rem;
  }
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .footer-section {
    gap: 5rem;
  }
}

.footer-logo {
  font-size: clamp(1.75rem, 4vw, 2.8125rem);
  font-family: "KoHo", sans-serif;
  font-weight: 700;
}

.footer-logo .accent {
  color: #f78227;
}

.footer-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 2.5;
  max-width: 300px;
}

.footer-title {
  font-family: "KoHo", sans-serif;
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 600;
  color: #ffffff;
}

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-list a {
  font-size: clamp(0.875rem, 2vw, 1.25rem);
  color: #e1efff;
}

.footer-list a:hover {
  color: #ffffff;
}

.newsletter-title {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #ffffff;
}

.newsletter-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(225, 239, 255, 0.5);
  color: #e1efff;
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  padding: 0.5rem 0;
  outline: none;
  transition: border-color 0.3s ease;
}

.newsletter-input:focus {
  border-bottom-color: #e1efff;
}

.newsletter-input::placeholder {
  color: #e1efff;
}

.newsletter-btn {
  width: 100%;
  height: 45px;
  border-radius: 30px;
  background-color: #ee6f3f;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  margin-top: 1rem;
}

.newsletter-btn:hover {
  background-color: #f78227;
}

@media (min-width: 640px) {
  .newsletter-btn {
    width: 148px;
  }
}

.newsletter-text {
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  color: #e1efff;
  line-height: 2.5;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(225, 239, 255, 0.2);
}

@media (min-width: 1024px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }
}

.footer-bottom p {
  font-size: clamp(0.875rem, 2vw, 1.25rem);
  text-align: center;
}

.footer-divider {
  display: none;
  width: 1px;
  height: 23px;
  background-color: rgba(225, 239, 255, 0.5);
}

@media (min-width: 1024px) {
  .footer-divider {
    display: block;
  }
}

/* Responsive Mobile Menu */
@media (max-width: 1279px) {
  .navbar-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #1a3a52;
    flex-direction: column;
    padding: 1rem;
    width: 100%;
  }

  .navbar-links.active {
    display: flex;
  }
}

/* Utility Classes */
.svg-icon {
  fill: currentColor;
}
