/* 
primary colors:
white: FFFAFA

font-family: 'Playfair Display', Georgia, 'Times New Roman', Times, serif;
font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
font-family: 'Fira Mono', Consolas, 'Courier New', Courier, monospace;
*/
/* -------- Playfair Display -------- */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/playfair-display-v39-latin-regular.woff2') format('woff2'),
       url('/assets/fonts/playfair-display-v39-latin-regular.woff') format('woff');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/playfair-display-v39-latin-italic.woff2') format('woff2'),
       url('/assets/fonts/playfair-display-v39-latin-italic.woff') format('woff');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/playfair-display-v39-latin-700.woff2') format('woff2'),
       url('/assets/fonts/playfair-display-v39-latin-700.woff') format('woff');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/playfair-display-v39-latin-700italic.woff2') format('woff2'),
       url('/assets/fonts/playfair-display-v39-latin-700italic.woff') format('woff');
}

/* -------- Lato -------- */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('/assets/fonts/lato-v24-latin-300.woff2') format('woff2'),
       url('/assets/fonts/lato-v24-latin-300.woff') format('woff');
}
@font-face {
  font-family: 'Lato';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url('/assets/fonts/lato-v24-latin-300italic.woff2') format('woff2'),
       url('/assets/fonts/lato-v24-latin-300italic.woff') format('woff');
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/lato-v24-latin-regular.woff2') format('woff2'),
       url('/assets/fonts/lato-v24-latin-regular.woff') format('woff');
}
@font-face {
  font-family: 'Lato';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/lato-v24-latin-italic.woff2') format('woff2'),
       url('/assets/fonts/lato-v24-latin-italic.woff') format('woff');
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/lato-v24-latin-700.woff2') format('woff2'),
       url('/assets/fonts/lato-v24-latin-700.woff') format('woff');
}
@font-face {
  font-family: 'Lato';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/lato-v24-latin-700italic.woff2') format('woff2'),
       url('/assets/fonts/lato-v24-latin-700italic.woff') format('woff');
}

/* -------- Fira Mono -------- */
@font-face {
  font-family: 'Fira Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/fira-mono-v15-latin-regular.woff2') format('woff2'),
       url('/assets/fonts/fira-mono-v15-latin-regular.woff') format('woff');
}



:root {
  --color-white: #FFFAFA;
  --color-dark: #242424;
  --color-grey: #D3D3D3;
  --color-orange: #FF8C00;
  --color-green: #C3FF00;
  --color-light-green: #E8F5E9;
  --color-yellow: #FFE4B2;

  --font-1: 'Playfair Display', Georgia, 'Times New Roman', Times, serif;
  --font-2: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-3: 'Fira Mono', Consolas, 'Courier New', Courier, monospace;

  --max-width: 1200px;
  --background-image: url('https://res.cloudinary.com/dvufsifir/image/upload/v1755101535/background_dark.webp') center center / cover no-repeat;
  --background-linear-gradient: linear-gradient(
    to bottom,
    rgba(36, 36, 36, 0.75),
    rgba(36, 36, 36, 1)
  );
    }


/* -------------------------
|                          |
|      LIGHT SECTION       |
|                          |
|--------------------------*/

.light-mode {
  --color-white: #242424;      
  --color-dark: #FFFAFA;        
  --color-grey: #555555;
  --color-orange: #FF8C00;
  --color-green: #B5F900;       
  --color-light-green: #DFF0D8;
  --color-yellow: #FFF4CC;

  --font-1: 'Playfair Display', Georgia, 'Times New Roman', Times, serif;
  --font-2: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-3: 'Fira Mono', Consolas, 'Courier New', Courier, monospace;

  --max-width: 1200px;
  --background-image: url('https://res.cloudinary.com/dvufsifir/image/upload/v1755101534/background_light.webp') center center / cover no-repeat;
  --background-linear-gradient: linear-gradient(
  to bottom,
  rgba(255, 250, 250, 0.75),
  rgba(255, 250, 250, 1)

);

}

.light-mode body {
background: linear-gradient(to bottom, #f7f1e8 0%, #fcf6f6 100%);  
}

.light-mode .service-item:hover .service-title {
  color: var(--color-white)
}

.light-mode .service-info {
  background: var(--color-dark);
  border-width: 0px 1px 1px 1px;
  border-style: solid;
  border-color: rgb(204, 204, 204);
}
  .light-mode .service-info.open {
      background: #DDDDDD;
      color: var(--color-white);
  }

.light-mode .text-content {
  color: var(--color-dark);
}

.light-mode .card p {

  color: var(--color-grey);
}

.light-mode .view-all-btn {
  background: var(--color-orange);
  color: var(--color-dark);
  border-color: var(--color-orange);
}

.light-mode .pricing-card.dark, 
.light-mode .pricing-card.green {
      box-shadow: rgba(0, 0, 0, 0.3) 0px 4px 8px;
}

.light-mode .pricing-card.green {
  background: var(--color-light-green);
  border: 1px solid var(--color-white);
}

.light-mode .pricing-card-button.yellow {
  background-color: var(--color-white);
}
.light-mode .pricing-card-button.light {
  background-color: var(--color-yellow);
}

.light-mode .insights-section,
.light-mode .pricing-section,
.light-mode .contact-section,
.light-mode footer,
.light-mode .ideas-section,
.light-mode .under-one-roof {
  background: none;
}



/* -------------------------
|                          |
|    TOP/MISC SECTION      |
|                          |
|--------------------------*/

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

body {
  background: var(--color-dark);
  
}

h1, h2, h3, h4, h5, h6 {  
  font-family: 'Playfair Display', serif;
}  

h1 {
  font-size: 5rem;
}

code, pre, .mono {
  font-family: 'Fira Mono', monospace;
}  


@keyframes sway-x {
  0%, 100% { transform: translateX(-10px); }
  50% { transform: translateX(10px); }
}

@keyframes sway-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

@keyframes color-change {
  0% { border-color: var(--color-grey); }
  33% { border-color: var(--color-green); }
  66% { border-color: var(--color-orange); }
  100% { border-color: var(--color-grey); }
}

#circle {
  width: 2rem;
  height: 2rem;
  background-color: transparent;
  border: 2px solid var(--color-grey);
  border-radius: 50%;
  position: absolute;
  z-index: 50;
  pointer-events: none;
  display: block;

  animation:
    sway-x 3s ease-in-out infinite alternate,
    sway-y 3s ease-in-out infinite alternate,
    color-change 9s ease-in-out infinite;
}


@media (min-width: 768px) { 
  #circle {
    display: block;
  }
}
  

#darkModeToggle {
  height: 3.75rem;
  width: 3.75rem;
  border-radius: 50px;
  position: fixed;
  bottom: 20px;  
  right: 20px;  
  z-index: 1000; 
  margin: 1rem 1rem;
  font-size: 1rem;
  cursor: pointer;
  background: var(--color-white);
  outline: none;       
  border: none;   
}

#darkModeToggle:hover {
  transform: scale(1.05);
}

/* -------------------------
|                          |
|      NAV SECTION         |
|                          |
|--------------------------*/

.nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: none;
  font-size: 2.5rem;
  line-height: 1;
}

.navbar {
  display:flex;
  align-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 2rem;
  z-index: 1000;
  transition: background-color 0.7s ease-out;
}

.navbar:hover {
  background-color: var(--color-dark);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.10);

}

.navbar.scrolled {
  background-color: var(--color-dark);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.10);
}
.nav-container {
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  flex-wrap: wrap;
    color: var(--color-grey);
      transform: translateY(10px);
  animation: fadeInH1 0.6s ease-out 0.1s forwards;

}

.logo {
  font-family: var(--font-1);
  font-size: 1rem;
  line-height: 1.2;
  color: var(--color-grey);
  text-transform: uppercase;
  font-weight: bold;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-grey);
  font-size: 2rem;
  cursor: pointer;
}


.nav-links {
  display: flex;
  gap: 3rem;
  justify-content: flex-end;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  align-items: center;
  transition: max-height 0.3s ease;
  opacity: 0;
    transform: translateY(10px);
animation: fadeInH1 0.7s ease-in-out forwards;}

.nav-links a {
  text-decoration: none;
  color: var(--color-grey);
  font-size: 1rem;
  transition: color 0.3s ease;
  font-family: 'playfair display';
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--color-orange);
}

.link-container {
  display: flex;
  height: 100%;
  align-items: center;
}

.nav-item {
  position: relative;
}

.arrow {
  font-size: 0.7rem;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.nav-item:hover .arrow {
  transform: rotate(180deg);
}

.dropdown,
#locations-item .dropdown-locations {
  display: none;
  position: absolute;
  top: 100%;
  background: var(--background-linear-gradient);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  padding: 2rem 0rem 1rem 0rem;
  z-index: 999;
}


/* -------------------------
|                          |
|    DROPDOWN  SECTION     |
|                          |
|--------------------------*/

.dropdown a,
#locations-item .dropdown-locations a {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--color-grey);
  text-decoration: none;
  font-size: 0.95rem;
  font-family: 'Playfair Display';
  white-space: nowrap;
}

.dropdown a:hover,
#locations-item .dropdown-locations a:hover {
  background: var(--color-orange);
  color: white;
}

.dropdown,
#locations-item .dropdown-locations {
  display: none;
  background: var(--background-linear-gradient);
  padding: 2rem 0 1rem 0;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  border-radius: 0px 0px 4px 4px;

}

.dropdown {
  left: 0;
  min-width: 240px;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.nav-item:hover .dropdown {
  display: grid;
}

#locations-item .dropdown-locations {
  right: 0;
  left: auto;
  max-width: 600px;
  width: max-content;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  z-index: 1000;
}

#locations-item:hover .dropdown-locations {
  display: grid;
}

/* -------------------------
|                          |
|      HERO  SECTION       |
|                          |
|--------------------------*/

.hero {
  position: relative;
  height: 100vh;
  width: 100vw;
  background: var(--background-image);
  overflow: hidden;
  display: flex;
  flex-direction: column;      
  align-items: center;        
  box-sizing: border-box;
  justify-content: center;
}


.hero-overlay {
  color: var(--color-grey);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-sizing: border-box;
}

.hero h1 {
  margin: 0 0 2rem 0;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInH1 0.6s ease-out 0.1s forwards;
  text-align: left;
  line-height:  0%;
}

.hero-h1-span {
  color: var(--color-orange)
}

#dictionary {
  text-align: left;
    opacity: 0;
  animation: fadeInH1 0.6s ease-out 0.1s forwards;
  transform: translateY(10px);

}

@keyframes fadeInH1 {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.hero-span-wrapper {
  position: relative;
  width: max-content; 
  white-space: nowrap;
  vertical-align: bottom;
}

.hero-span {
  font-style: italic;
  color: var(--color-orange);
  white-space: nowrap;
}

#hero-span {
  white-space: nowrap;
  text-align: left;
 color: var(--color-orange);
  font-style: italic;
}


#hero-span::after {
  content: '|'; 
  font-style: normal;
  color: var(--color-grey);
  animation: blink 1s steps(2, start) infinite;}

@keyframes blink {
  0%, 49% {
    opacity: 1;
  }
  50%, 100% {
    opacity: 0;
  }
}


.hero-grid {
  align-items: stretch;
  gap: 2rem;
  width: 100%;
  max-width: var(--max-width);
}

.hero-left {
  text-align: left;
  align-self: center;
  font-family: 'Fira Mono', monospace;
    opacity: 0;
  transform: translateY(10px);
  animation: fadeInHeroLeft 0.6s ease-out 0.2s forwards;
  padding-bottom: 2rem;
  padding-top: 1rem;
  font-size: 1.2rem;
}

@keyframes fadeInHeroLeft {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-center {
  display: flex;
  justify-content: left;
}

.hero-right {
  display: flex;
  float: right;
  text-align: left;
  align-self: flex-start;
  font-size: 1rem;
  line-height: 1.4;
  font-family: 'Fira Mono', monospace;
    opacity: 0;
  transform: translateY(10px);
  animation: fadeInHeroRight 0.6s ease-out 0.4s forwards;
}

.hero-container {
  display: flex;
  justify-content: space-between; 
}

.custom-list-item {
  display: flex;
  align-items: end;
}

.asterisk {
    font-size: 3rem;
    padding-bottom: 0.5rem;
    color: var(--color-green)
}

#asterisk {
  text-align: left;
  font-size: 3rem;
  line-height: 0%;

}

@keyframes fadeInHeroRight {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.contact-btn {
  all: unset;
  position: relative;
  border: 1px solid var(--color-grey);
  border-radius: 50px;
  padding: 1rem 5rem;
  font-size: 16px;
  background-color: rgba(36, 36, 36, 0.5);
  -webkit-mask-image: -webkit-radial-gradient(#fff, #000);
  mask-image: radial-gradient(#fff, #000);
  cursor: pointer;
  font-family: 'Playfair Display', serif;
  color: #dcdadb;
  transition: color 0.3s ease, border-color 0.3s ease;
    opacity: 0;
  transform: translateY(10px);
  animation: fadeInHeroButton 0.6s ease-out 0.3s forwards;
}

.contact-btn.bright {
    background-color: var(--color-grey);
    color: var(--color-dark);
    border: none;
  border: 1px solid var(--color-grey);
    padding: 1rem 4rem;


}

.contact-btn.bright:hover {
    background-color: rgba(36, 36, 36, 0.5);
    color: var(--color-grey);
}

@keyframes fadeInHeroButton {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.contact-btn:hover {
  color: rgb(255, 255, 255);
  border-color: #717171;
}

.contact-btn::after {
  content: '';
  position: absolute;
  top: var(--y);
  left: var(--x);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  width: 5em;
  height: 5em;
  background-image: conic-gradient(#00f, #0ff, #0f0, #ff0, #f00, #f0f, #00f);
  filter: blur(14px);
  mix-blend-mode: overlay;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  pointer-events: none;
}

.contact-btn:hover::after {
  opacity: 0.7;
}

.contact-btn.dark:hover::after {
  opacity: 0.4;
}


.all-your-needs {
  text-align: left;
  position: absolute;
  bottom: 0;
  color: var(--color-white);
  width: 90vw;          
  max-width: var(--max-width);         
  box-sizing: border-box;  
  font-size: 5rem;
font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* -------------------------
|                          |
|      ABOUT SECTION       |
|                          |
|--------------------------*/

.under-one-roof {
  width: 100%;
  background: var(--color-dark);
  padding: 6rem 1rem 10rem 1rem;
}

.inner-wrapper {
  max-width: 1200px; 
  margin: 0 auto;
  padding: 0 1rem;
}

.section-title {
  font-size: 3rem;
  font-weight: bold;
  margin-top: 1rem;
  padding-bottom: 2rem;
  text-align: left;
  font-family: var(--font-1);
  color: var(--color-white);
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
  font-family: var(--font-3);
  opacity: 0;
  transition: opacity 0.7s ease;
  width: 100%;
}

.content-grid.visible {
  opacity: 1;
}

.text-block {
  font-size: 1rem;
  line-height: 1.5;
  font-family: var(--font-3);
  color: var(--color-white);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-bottom: 2rem;
}

.service-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 20px;
  max-width: 1200px;
  margin: 0 auto;
  width:100%;
}

.service-item {
  position: relative;
  display: flex;
  flex-direction: column;
}


.service-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid #ccc;
  padding: 16px;
  border-radius: 10px;
  transition: background 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-white);
}

.service-title {
  flex: 1;
}


.service-box:hover {
  background: var(--color-green);
  transform: scale(1.01);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.icon {
  width: 25px;
  height: 25px;
  fill: var(--color-white);
  transition: transform 0.3s ease;
}

.service-box:hover .icon,
.service-box:hover + .service-info {
  transform: scale(1.01);
}

.arrow {
  width: 20px;
  height: 20px;
  fill: var(--color-white);
  transition: transform 0.3s ease;
}

.service-box.open {
    border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.service-box.open .arrow {
  transform: rotate(180deg);
}

.service-box:hover .service-title {
  color: var(--color-dark);
}

.service-info {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  padding: 0 16px;
  pointer-events: none;
  z-index: 10;
}

.service-info.open {
  display:flex;
  background: var(--color-white);
  color: var(--color-dark);
  align-items: center;
  height: 100px;
  max-height: 400px; 
  opacity: 1;
  padding: 16px;
  pointer-events: auto;
    border-top-left-radius: 0;
  border-top-right-radius: 0;
}


@media (max-width: 768px) {
  .service-boxes {
    grid-template-columns: 1fr;
  }
  .service-info {
    grid-column: auto;
  }
}



/* -------------------------
|                          |
|      IDEAS SECTION       |
|                          |
|--------------------------*/



.ideas-section {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 100px 20px;
  width: 100%;
}

.ideas-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
}

.ideas-heading {
  margin-bottom: -6rem;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  position: relative;
}

.ideas-heading .highlight {
  font-weight: 700;
}

.ideas-heading .italic {
  font-style: italic;
  color: #ff7700;
    display: block;
}


.underline {
  width: 180px;
  height: 5px;
  background: var(--color-green);
  margin-top: 12px;
}

.staggered-grid {
  display: flex;
  justify-content: center;
  gap: 1rem;
  align-items: stretch;
}

.left-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: flex-end;
  flex: 1;
}

.right-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
    justify-content: flex-end;

}

.card {
  background: var(--color-dark);
  border: 1px solid #666;
  border-radius: 10px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  z-index:10;
}

.card:hover {
  animation: card-shake 0.2s ease 1;
  background: var(--color-white);

}

@keyframes card-shake {
  0%   { transform: translateX(0) rotate(0); }
  10%  { transform: translateX(-1px) rotate(-0.2deg); }
  30%  { transform: translateX(1px)  rotate(0.4deg); }
  50%  { transform: translateX(-0.2px) rotate(-0.2deg); }
  70%  { transform: translateX(1px)  rotate(0.2deg); }
  90%  { transform: translateX(-0.4px) rotate(-0.1deg); }
  100% { transform: translateX(0) rotate(0); }
}


.card .badge {
  background: var(--color-green);
  color: black;
  font-weight: bold;
  border-radius: 40px 20px 40px 20px;
  padding: 6px 14px;
  font-size: 0.9rem;
  flex-shrink: 0;
  font-family: monospace;
}

.card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #ccc;
}

.card h3 {
  color: var(--color-white);
  padding-bottom: 0.75rem;
}


.card:hover p,
.card:hover h3 {
    color: var(--color-dark);
}
  

/* -------------------------
|                          |
|     CAROUSEL SECTION     |
|                          |
|--------------------------*/
.carousel-section {
  background-color: var(--color-dark);
  position: relative;
  overflow: hidden;
}

.carousel {
  display: flex;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 2rem;
  padding: 0rem 0rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.carousel::-webkit-scrollbar {
  display: none;
}

.carousel-item {
  flex: 0 0 60%;
  scroll-snap-align: center;
  position: relative;
  overflow: hidden;
}
.carousel-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  color: #FFFAFA;
  padding: 12px 16px;
  border-radius: 8px;
  max-width: 80%;
}
.caption h3 {
  margin: 0;
  font-size: 1.2rem;
}
.caption p {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: #FFFAFA;
  border: none;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 10;
  user-select: none;
}
.carousel-btn.prev {
  left: 1rem;
}
.carousel-btn.next {
  right: 1rem;
}

/* -------------------------
|                          |
|      BLOG SECTION       |
|                          |
|--------------------------*/
.insights-section {
  position: relative;
  background: var(--color-dark);
  min-height: 200px;
  padding: 3rem 1rem;
  color: #242424;
  font-family: Arial, sans-serif;
  overflow: hidden;
}

.insights-container {
  max-width: var(--max-width);
  margin: 0 auto;

}

.insights-section > * {
  position: relative;
  z-index: 1;
}


.insights-title {
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--color-white);
}

.insights-title .line-two {
  display: inline-block;
  border-bottom: 6px solid var(--color-green);
  padding-bottom: 0.2rem;
}

.blog-posts {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.blog-post-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.blog-post {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgb(0 0 0 / 0.1);
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  position: relative;
  --hover-bg: none;
}

.blog-post::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.6)), 
    var(--hover-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.5s ease;
  border-radius: 8px;
  pointer-events: none;
  z-index: 0;
}


.blog-post:hover::before {
  opacity: 1;
}

.blog-post img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: opacity 0.8s ease;
  position: relative;
  z-index: 1;
}

.blog-post:hover {
  background-size: cover;
  background-position: center;
  z-index: 10;
  transform: scale(1.01);
  color: white;
}

.blog-post:hover .blog-title,
.blog-post:hover .blog-description,
.blog-post:hover .blog-meta,
.blog-post:hover time,
.blog-post:hover .reading-time {
  color: white;
}


.blog-post:hover img {
  opacity: 0;
  transition: opacity 0s ease;
}

.blog-content {
  position: relative;
  padding: 1rem 1.5rem 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  z-index:20;
}

.blog-title {
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
  color: #111;
  font-family: var(--font-2);
  text-transform: uppercase;
}

.blog-title a {
  text-decoration: none;
}

.blog-description {
  font-size: 1rem;
  margin: 0 0 1rem;
  color: #555;
  flex-grow: 1;
  font-family: var(--font-3);
}

.blog-meta {
  font-size: 0.9rem;
  color: #333333;
  display: flex;
  gap: 1rem;
  align-items: center;
  font-family: var(--font-1);
}

.view-all-container {
  padding-bottom: 2rem;
}


.view-all-btn {
  font-family: var(--font-3);
  position: relative;
  display: inline-block; 
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  cursor: pointer;
  color: #242424;
  overflow: hidden; 
  transition: color 0.3s ease;
  text-decoration: none;
  vertical-align: middle;
    color: var(--color-grey);
  border: 1px solid var(--color-white);
}

.view-all-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  border-radius: inherit; 
  transform: translateX(-100%);
  transition: transform 0.5s ease;
  pointer-events: none;
  z-index: 0;
}

.view-all-btn:hover::before {
  transform: translateX(100%);
}

.view-all-btn > * {
  position: relative;
  z-index: 1;
}

.view-all-btn:hover {
  color: var(--color-dark);
  background-color: var(--color-orange);
  border: 1px solid var(--color-dark);}

@media (max-width: 640px) {
  .blog-posts {
    flex-direction: column;
  }
  .blog-post {
    flex: 1 1 100%;
  }
  .view-all-container {
    padding-right: 0;
    text-align: left;
  }
}


/* -------------------------
|                          |
|      PRICING SECTION       |
|                          |
|--------------------------*/

.pricing-section {
  position: relative;
  margin: 0 auto;
  font-family: Arial, sans-serif;
  color: #242424;
  overflow: hidden;
  padding: 4rem 1rem;
  background: var(--color-dark);
}

.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
  gap: 4rem;
  align-items: start;
  position: relative;
}
.pricing-header {
  text-align: left;
  margin-bottom: 2rem;
    color: var(--color-white);
}

.pricing-title-mobile {
  font-family: var(--font-1);
  text-transform: uppercase;
  display: block;
    font-size: 2rem;

}

.pricing-title-desktop {
  display: none;
    font-size: 3rem;
  }
.pricing-title-desktop span {
  
}

.text-orange {
  color: var(--color-dark);
}

.pricing-cards {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  min-height: 600px;
}

.pricing-card {
  border: 1px solid var(--color-white);
  padding: 2rem;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    color: var(--color-white);

}

.pricing-card.dark {
  background-color: var(--color-dark);
  color: var(--color-white);
  box-shadow: 0 0 8px 2px rgba(255, 255, 255, 0.6);
  transition: box-shadow 0.3s ease;
}

.pricing-card.dark:hover {
  box-shadow: 0 0 14px 4px rgba(255, 255, 255, 0.9);
  transform: scale(1.05);
}

.pricing-card.green {
  background: var(--color-dark);
  border-color: var(--color-light-green);
  box-shadow: 0 0 12px 3px var(--color-light-green);
  transition: box-shadow 0.3s ease;
}

.pricing-card.green:hover {
  box-shadow: 0 0 20px 6px var(--color-light-green);
    transform: scale(1.05);

}


.pricing-card-title {
  font-family: var(--font-1);
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 400;
}

.most-popular {
  position:absolute;
  top: 0 ;
  right: 0;
}

.pricing-card-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .5rem;
  list-style: none;
  padding: 0;
  margin: 1rem 0 2rem;
  font-family: var(--font-2);
}

.pricing-card-list li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.pricing-card-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--color-white);
}

.pricing-card-bottom {
  position: absolute;
  bottom: 2rem;
}


.pricing-card-price {
  font-family: var(--font-1);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.pricing-card-price strong {
  font-size: 2rem;
}

.sub-price {
  font-size: 1rem;
  margin-left: 0.5rem;
  display: block;
}

.pricing-card-button {
  font-family: var(--font-3);
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;  
  text-align: center;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1rem;
  border: 1px solid var(--color-dark);
  color: var(--color-dark);
  overflow: hidden;
  cursor: pointer;
  transition: color 0.3s ease;
}

.pricing-card-button.light {
  background-color: var(--color-dark);
  border-color: var(--color-white);
  color: var(--color-white);
}

.pricing-card-button.yellow {
  background-color: var(--color-green);
  border-color: var(--color-green);
  color: var(--color-dark);
}

.pricing-card-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%; 
  width: 100%;
  height: 100%;
  background: var(--color-orange); 
  border-radius: 50px;
  transition: left 0.5s ease;
  pointer-events: none;
  z-index: 0;
}

.pricing-card-button:hover::before {
  left: 100%;
}

.pricing-card-button > * {
  position: relative;
  z-index: 1;
}

.pricing-card-button.light:hover {
  color: var(--color-dark);
  background-color: var(--color-white);
  border-color: var(--color-white);
}

.pricing-card-button.yellow:hover {
  color: var(--color-white);
  background-color: var(--color-dark);
  border-color: var(--color-white);
}


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

  .pricing-title-mobile {
    display: none;
  }

  .pricing-title-desktop {
    display: block;
    font-family: var(--font-1);
    margin-bottom: 2rem;
  }
}

/* -------------------------
|                          |
|      CONTACT SECTION       |
|                          |
|--------------------------*/


.contact-section {
  background: var(--color-dark);
  padding: 8rem 2rem;
  font-family: var(--font-2);
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  position: relative;
}

.contact-info {
  color: var(--color-white);
  width: 60%;
}

.contact-info h2 {
  font-size: 2rem;
}

.contact-info p {
  font-size: 1rem;
  font-family: var(--font-2);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-family: var(--font-2);
  font-weight: 300;
}

.input-row {
  display: flex;
  gap: 1rem;
  z-index: 2;
}

.input-row input {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid #ccc;
  font-size: 1rem;
  background: var(--color-dark);
    font-family: var(--font-2);
  font-weight: 300;
}

.textarea-row {
  z-index: 2;
}

.textarea-row textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  resize: vertical;
  background: var(--color-dark);
    font-family: var(--font-2);
  font-weight: 300;
}

.checkbox-row {
  display: flex;
  align-items: center;
  font-size: 0.90rem;
  color: var(--color-white);
  z-index:2;
  font-family: var(--font-3)
}

.checkbox-row input[type="checkbox"] {
  margin-right: 0.5rem;
}

.contact-form input,
.contact-form textarea {
  color: var(--color-white);
  background: var(--color-dark);
  padding: 0.5rem;
  font-size: 1rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--color-grey);
  opacity: 1; 
  font-family: var(--font-3);
}


.submit-btn {
  margin-top: 1rem;
  padding: 1rem 2rem;
  background-color: var(--color-yellow);
  color: #000;
  font-size: 1rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s ease;
  border: 1px solid var(--color-dark);
  z-index: 2;
}

.submit-btn:hover {
  background-color: var(--color-green);
}

@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .input-row {
    flex-direction: column;
  }
}

.devonus-mark {
  position: absolute;
  bottom: 0rem;
  left: 0rem;
  font-family: var(--font-1);
  font-size: 10rem;
  font-weight: 700;
  color: var(--color-dark);
  -webkit-text-stroke: 1.5px var(--color-grey);
  text-shadow: 0 0 0 var(--color-grey);
  pointer-events: none;
  user-select: none;
  line-height: 1;
  z-index: 1;
  opacity: 0.3;
    -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: var(--color-grey);
}

  .form-success {
    position: fixed;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-dark);    
    color: var(--color-white); /* your dark text */
    padding: 2rem 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    font-size: 1rem;
    font-weight: 400;
    font-family: var(--font-2);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: top 0.5s ease, opacity 0.5s ease, transform 0.5s ease;
    opacity: 0;
    z-index: 9999;
    border: 1px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(6px);
  }

  .form-success.show {
    top: 20px;
    opacity: 1;
    transform: translateX(-50%) scale(1.05);
    animation: bounce 0.5s ease;
  }

  /* Icon animation */
  .form-success .icon {
    font-size: 1.4rem;
    animation: pop 0.5s ease;
  }

  @keyframes bounce {
    0% { transform: translateX(-50%) translateY(-20px) scale(0.95); }
    50% { transform: translateX(-50%) translateY(0px) scale(1.05); }
    100% { transform: translateX(-50%) translateY(0px) scale(1); }
  }

  @keyframes pop {
    0% { transform: scale(0); }
    60% { transform: scale(1.2); }
    100% { transform: scale(1); }
  }

 /* -------------------------
|                          |
|      FOOTER SECTION       |
|                          |
|--------------------------*/

.footer {
  color: var(--color-white);
  font-family: var(--font-2);
  width: 100%;
  padding: 4rem 2rem 0rem 2rem;}

.footer-container {
  border-top: 1px;
  border-top-style: solid;
  border-top-color: var(--color-white);
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 0
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-brand {
  border-radius: 8px;
}

.footer-logo {
  font-family: var(--font-1);
  font-size: 2.5rem;
  margin: 0;
}

.footer-subtitle {
  font-family: var(--font-2);
  font-size: 2.3rem;
  margin-top: -1rem;
}

.footer-desc {
  margin-top: 1rem;
  color: var(--color-grey);
}

.footer-links {
  display: flex;
  gap: 4rem;
}

.footer-column h3 {
  font-family: var(--font-2);
  color: var(--color-white);
  font-weight: 400;
  margin-bottom: 1.2rem;
  letter-spacing: 0.1em;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 0.5rem;
}

.footer-column a {
  position: relative;
  color: var(--color-grey);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-column a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: var(--color-white);
  transition: width 0.3s ease;
}

.footer-column a:hover {
  color: var(--color-white);
}

.footer-column a:hover::after {
  width: 100%;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px solid var(--color-grey);
  padding-top: 1.5rem;
}

.footer-copy {
  margin: 0;
  color: var(--color-grey);
}

.footer-policies {
  display: flex;
  gap: 1rem;
}

.footer-policies a {
  color: var(--color-grey);
  text-decoration: none;
}

.footer-policies a:hover {
  color: var(--color-white);
}

.footer-cta {
  text-align: center;
  margin-top: 2rem;
  font-size: 1.1rem;
  color: var(--color-grey);
}

.footer-cta .cta-link {
  color: var(--color-yellow);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.footer-cta .cta-link:hover {
  border-color: var(--color-yellow);
}




  /* ==================== RESPONSIVE STYLES ==================== */

@media (max-width: 1020px) {

#darkModeToggle {
  height: 3rem;
  width: 3rem;
}

  /* -------------------------
|                          |
|      NAVBAR SECTION       |
|                          |
|--------------------------*/

  .navbar {
    display: block;
  }

  .navbar:hover {
  background-color: transparent;
  box-shadow: none;

}

  .nav-toggle {
    display: block;
  }

  .link-container {
    display: block;
  }
  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    background: var(--color-dark);
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 2rem;
    display: none;
    z-index: 99;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    background-color: var(--color-white);
    padding-left: 1rem;
    border-bottom: 1rem solid var(--color-green);

  }

#solutions-nav, #locations-nav {
          margin: 0.75rem 0;
}

  .nav-links.open {
    display: flex;
    top: 100%;
    max-height: 1200px;
    padding-bottom: 1rem;
    background-color: var(--color-dark);
  }

  .nav-links a {
    margin: 0.75rem 0;
    font-size: 1rem;    width: 100%;
    padding: 0;
  }

/* -------------------------
|                          |
|    DROPDOWN SECTION      |
|                          |
|--------------------------*/  

   .nav-item:hover .dropdown,
  #locations-item:hover .dropdown-locations {
    display: none;
  }
  
  .dropdown,
  #locations-item .dropdown-locations {
    display: none !important;
    position: static; 
    box-shadow: none;
    background: transparent;
    padding: 0;
    border: none;
    grid-template-columns: 1fr !important;
    max-width: none !important;
  }

  .dropdown a, #locations-item .dropdown-locations a {
    padding: 0rem 1rem;
}
  
  .nav-item.open > .dropdown,
  #locations-item.open > .dropdown-locations {
    display: block !important;
    background: var(--background-linear-gradient);
    padding: 1rem;
    border-radius: 4px;
  }
  
  .nav-item.open > a > .arrow,
  #locations-item.open > a > .arrow {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
  }

 .dropdown-locations a {
    display:none !important ;
  }
  #mobile-visible {
    display: block !important;
  }

  /* -------------------------
|                          |
|      ABOUT SECTION       |
|                          |
|--------------------------*/  
    .service-boxes {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 1020px) and (min-width: 768px) {
  .hero h1 {
    font-size: 3rem;
      margin: 0 0 1rem 0;
  }

  .hero-overlay {
      padding: 1rem 2rem;
  }

  .hero-left {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
/* -------------------------
|                          |
|      CIRCLE SECTION      |
|                          |
|--------------------------*/  
  #circle {
    display: none;
  }


/* -------------------------
|                          |
|      HERO SECTION        |
|                          |
|--------------------------*/  
  section h1, article h1, aside h1, nav h1 {
  font-size: 3rem;
}

.hero {
    padding: 4rem 1rem;
    text-align: center;
  }

  .hero h1 {
    padding: 2rem 0 1rem 0;
    margin-bottom: -4rem;
    line-height: 85%;
    font-weight: 400;
  }

.hero-overlay {
  gap:4rem;
  padding: 1rem;
}

.hero-h1-span {
  display: block;
}

#dictionary {
  margin-bottom: -3rem;
}


.hero-left {
  width: 100%;
  font-size: 0.8rem;
}

.hero-right {
  font-size:0.8rem;
}
  .hero-grid {
    grid-template-columns: none;
  }

.hero-center {
  justify-content: center;
}

  .all-your-needs {
    font-size: 2rem;
  }

/* -------------------------
|                          |
|      ABOUT SECTION       |
|                          |
|--------------------------*/

.section-title {
      font-size: 2rem;

}

.inner-wrapper {
    padding: 0rem 1rem;

}

.content-grid {
  grid-template-columns: none;
}

/* -------------------------
|                          |
|      CAROUSEL SECTION    |
|                          |
|--------------------------*/


  .carousel {
    display: block;
    overflow: visible;
    gap: 0;
  }

  .carousel-item {
    flex: none;
    width: 100%;
    margin-bottom: 1.5rem;
    height: auto;
    position: relative;
  }

  .carousel-item img {
    width: 100%;
    height: auto;
  }

  .carousel-btn {
    display: none;
  }
  .carousel-item.clone {
    display: none;
  }

/* -------------------------
|                          |
|     SOLUTIONS SECTION    |
|                          |
|--------------------------*/

  .staggered-grid {
  display: block;
  }

  .ideas-section {
    padding: 2rem 1rem;
  }

  .ideas-heading{
    margin-bottom: 3rem;
  }

#card-space {
  margin-bottom: 1rem;
}
/* -------------------------
|                          |
|      BLOG SECTION        |
|                          |
|--------------------------*/

    .blog-posts {
    flex-direction: column;
  }
  .blog-post {
    flex: 1 1 100%;
  }
  .view-all-container {
    padding-right: 0;
    text-align: left;
  }

  .insights-title {
  font-weight: 700;
  font-size: 2rem;
  }

/* -------------------------
|                          |
|      PRICING SECTION      |
|                          |
|--------------------------*/  

.pricing-cards {
  min-height: inherit;
}

.pricing-card-bottom {
  position: inherit;
}


/* -------------------------
|                          |
|      CONTACT SECTION     |
|                          |
|--------------------------*/  

.contact-section {
  padding: 4rem 2rem;
}

.contact-info {
  width: 100%;
}
/* -------------------------
|                          |
|      FOOTER SECTION      |
|                          |
|--------------------------*/  


  .footer {
    padding: 1.5rem 1rem;
  }
  .footer-links {
    flex-direction: column;
    gap: 1.5rem; 
  }

  .footer-container {
    padding: 4rem 0rem 0rem 0rem;
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
  }

  .footer-column {
    width: 100%;
  }
}
