@charset "UTF-8";
/*
Theme Name: Skelly Lite
Theme URI: https://bfj.digital/
Author: BFJ Digital
Author URI: https://bfj.digital/
Version: 3.0.0
*/

/* CSS Variables */
:root {
    --color-p: #4B08A1;          /* Primary color */
    --color-a: #4A6585;          /* Secondary color */
    --color-s: #303030;          /* Dark color */
    --color-t: #797B7D;          /* Text color */
    --color-h: #303030;          /* Heading color */
    --color-c: #797B7D;          /* Copy color */
    --color-n-white: #ffffff;    /* White */
    --color-n-black: #000000;    /* Black */
    --color-bg-light: #f8f9fa;  /* Light background */
    
    /* Primary color variations */
    --color-p-10: rgba(75, 8, 161, 0.1);
    --color-p-20: rgba(75, 8, 161, 0.2);
    --color-p-40: rgba(75, 8, 161, 0.4);
    --color-p-60: rgba(75, 8, 161, 0.6);
    --color-p-80: rgba(75, 8, 161, 0.8);
    
    /* Secondary color variations */
    --color-a-10: rgba(74, 101, 133, 0.1);
    --color-a-20: rgba(74, 101, 133, 0.2);
    
    /* Dark color variations */
    --color-s-60: rgba(48, 48, 48, 0.6);
    
    /* Text color variations */
    --color-t-20: rgba(121, 123, 125, 0.2);
    --color-t-40: rgba(121, 123, 125, 0.4);
    --color-t-60: rgba(121, 123, 125, 0.6);
}

/*=================
  FONT PRIMARY IMPORT
=================*/


/*=================
  FONT SECONDARY IMPORT
=================*/


/*=================
  FONT DEFAULT IMPORT
=================*/
@font-face {
  font-family: 'Assistant';
  src: url("../skelly/fonts/Assistant-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
}

/*=================
  CSS RESET
=================*/

/*
==========================
  FORM RESET
==========================
*/
form input,
form select,
form textarea,
form fieldset,
form optgroup,
form label,
.StripeElement {
  font-family: inherit;
  font-size: 100%;
  color: inherit;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  /* -webkit-appearance: none;
  -moz-appearance: none; */
}
form input:focus,
form select:focus,
form textarea:focus,
form fieldset:focus,
form optgroup:focus,
form label:focus,
.StripeElement:focus {
  outline: none;
}
form [type="text"],
form [type="email"],
.StripeElement {
  width: 100%;
}
form [type="button"],
form [type="submit"],
form [type="reset"] {
  width: auto;
  cursor: pointer;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
}

form select {
  text-transform: none;
}

/*
==========================
  GENERAL RESET
==========================
*/

* {
  padding: 0px;
  border: 0px;
  border-radius: 0px;
  margin: 0px;
  outline: 0px;
  box-sizing: border-box;
  vertical-align: baseline;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

a {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

a.btn{
  border-radius: 8px !important;
}

input,
textarea,
select,
button {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

button {
  display: block;
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
}

strong,
em,
dfn,
small,
address,
q,
blockquote,
cite {
  font-weight: inherit;
  font-style: inherit;
  font-size: inherit;
}

abbr {
  border-bottom: none;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
}

img[src=""] {
  display: none;
}


/*=================
  APPLY DEFAULT STYLES
=================*/

#my-body {
  font-family: var(--font-copy-family);
  font-size: var(--font-copy-size);
  font-weight: var(--font-copy-weight);
  font-style: var(--font-copy-style);
  text-transform: var(--font-copy-transform);
  line-height: var(--font-copy-height);
  letter-spacing: var(--font-copy-letter);
  word-spacing: var(--font-copy-word);
  position: relative;
}
#my-body, html {
  color: var(--color-s);
  background: var(--color-bg-light);
}
@media (prefers-color-scheme: dark) {
  #my-body, html {
    color: var(--color-n-white);
    background: var(--color-n-black);
  }
}


.main {
  overflow: hidden;
}

/*=================
  FONT CLASSES
=================*/

.font-small {
  font-family: var(--font-small-family);
  font-size: var(--font-small-size);
  font-weight: var(--font-small-weight);
  font-style: var(--font-small-style);
  text-transform: var(--font-small-transform);
  line-height: var(--font-small-height);
  letter-spacing: var(--font-small-letter);
  word-spacing: var(--font-small-word);
}

.font-copy {
  font-family: var(--font-copy-family);
  font-size: var(--font-copy-size);
  font-weight: var(--font-copy-weight);
  font-style: var(--font-copy-style);
  text-transform: var(--font-copy-transform);
  line-height: var(--font-copy-height);
  letter-spacing: var(--font-copy-letter);
  word-spacing: var(--font-copy-word);
}

.font-large, body.single-post .main h6 {
  font-family: var(--font-large-family);
  font-size: var(--font-large-size);
  font-weight: var(--font-large-weight);
  font-style: var(--font-large-style);
  text-transform: var(--font-large-transform);
  line-height: var(--font-large-height);
  letter-spacing: var(--font-large-letter);
  word-spacing: var(--font-large-word);
}

.font-heading5, body.single-post .main h4, body.single-post .main h5 {
  font-family: var(--font-heading5-family);
  font-size: var(--font-heading5-size);
  font-weight: var(--font-heading5-weight);
  font-style: var(--font-heading5-style);
  text-transform: var(--font-heading5-transform);
  line-height: var(--font-heading5-height);
  letter-spacing: var(--font-heading5-letter);
  word-spacing: var(--font-heading5-word);
}

.font-heading4, body.single-post .main h3 {
  font-family: var(--font-heading4-family);
  font-size: var(--font-heading4-size);
  font-weight: var(--font-heading4-weight);
  font-style: var(--font-heading4-style);
  text-transform: var(--font-heading4-transform);
  line-height: var(--font-heading4-height);
  letter-spacing: var(--font-heading4-letter);
  word-spacing: var(--font-heading4-word);
}

.font-heading3, body.single-post .main h2 {
  font-family: var(--font-heading3-family);
  font-size: var(--font-heading3-size);
  font-weight: var(--font-heading3-weight);
  font-style: var(--font-heading3-style);
  text-transform: var(--font-heading3-transform);
  line-height: var(--font-heading3-height);
  letter-spacing: var(--font-heading3-letter);
  word-spacing: var(--font-heading3-word);
}

.font-heading2, body.single-post .main h1 {
  font-family: var(--font-heading2-family);
  font-size: var(--font-heading2-size);
  font-weight: var(--font-heading2-weight);
  font-style: var(--font-heading2-style);
  text-transform: var(--font-heading2-transform);
  line-height: var(--font-heading2-height);
  letter-spacing: var(--font-heading2-letter);
  word-spacing: var(--font-heading2-word);
}

.font-heading1 {
  font-family: var(--font-heading1-family);
  font-size: var(--font-heading1-size);
  font-weight: var(--font-heading1-weight);
  font-style: var(--font-heading1-style);
  text-transform: var(--font-heading1-transform);
  line-height: var(--font-heading1-height);
  letter-spacing: var(--font-heading1-letter);
  word-spacing: var(--font-heading1-word);
}

.font-emphasis {
  font-family: var(--font-emphasis-family);
  font-size: var(--font-emphasis-size);
  font-weight: var(--font-emphasis-weight);
  font-style: var(--font-emphasis-style);
  text-transform: var(--font-emphasis-transform);
  line-height: var(--font-emphasis-height);
  letter-spacing: var(--font-emphasis-letter);
  word-spacing: var(--font-emphasis-word);
}

/*=====================
  LAYOUT
=====================*/

[class*="button-lg"], [class*="button-sm"], [class*="button-arrow"] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: fit-content;
  font-family: 'Assistant', Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 600;
  font-style: normal;
  text-align: center;
  text-decoration: none !important;
  text-transform: uppercase;
  text-wrap: wrap;
  line-height: 133%;
  letter-spacing: 0px;
  word-spacing: 0px;
  color: var(--color-n-white) !important;
  margin: 0px auto;
  transition: .15s;
}
[class*="button-arrow"] {
  padding: 22px 29px 22px 34px;
}
[class*="button-arrow"]::after {
  content: "";
  display: block;
  width: 24px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 26 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 10H24M24 10L14.8966 1M24 10L14.8966 19' stroke='%23FFFFFF' stroke-width='2'/%3E%3C/svg%3E");

  background-repeat: no-repeat;
  background-size: contain;
  margin-left: var(--space-3);
  transition: .15s;
}
[class*="button-arrow"]:hover::after {
  rotate: -45deg;
}
[class*="button-lg"] {
  padding: 22px 34px;
}
[class*="button-sm"] {
  padding: 10px 24px;
}
.button-sm-p, .button-arrow-p {
  background: var(--color-n-black);
}
.button-lg-p{
  background: var(--color-n-white);
  color: var(--color-n-black) !important;
  border-radius: 8px;
}

.button-lg-n, .button-sm-n, .button-arrow-n {
  background: var(--color-n-black);
  border-radius: 8px;
}
.button-lg-n:hover, .button-sm-n:hover, .button-arrow-n:hover {
  background: var(--color-n-black);
}
.button-lg-s, .button-sm-s, .button-arrow-s {
  color: var(--color-n-white) !important;
  background: var(--color-s);
}
.button-lg-s:hover, .button-sm-s:hover, .button-arrow-s:hover {
  color: var(--color-n-white) !important;
  background: var(--color-s-60);
}
.button-arrow-s::after {
  background-image: url("data:image/svg+xml,%3Csvg  viewBox='0 0 26 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 10H24M24 10L14.8966 1M24 10L14.8966 19' stroke='%23ffffff' stroke-width='2'/%3E%3C/svg%3E%0A");
}


@media only screen and (max-width: 768px) {
  [class*="button-lg"], [class*="button-sm"] {
    font-size: 16px;
  }
  [class*="button-arrow"]::after {
    width: 20px;
    height: 15px;
  }
}

.mw-fit { 
  max-width: fit-content;
}

/*=====================
  DARK/LIGHT THEME SETTINGS
=====================*/

.theme-based-img {
  display: flex  ;
      white-space: nowrap;
      justify-content: center;
      align-items: center;
}
.theme-based-img img {
  grid-column: 1;
  grid-row: 1;
  transition: .3s;
}
.theme-based-img p{
  color: var(--color-n-white);
}
.theme-based-img img[data-theme="dark"] {
  visibility: hidden;
  opacity: 0;
}

@media (prefers-color-scheme: dark) {
  .theme-based-img img[data-theme="light"] {
    visibility: hidden;
    opacity: 0;
  }
  .theme-based-img img[data-theme="dark"] {
    visibility: visible;
    opacity: 1;
  }
}


/*=================
  CONTAINER
=================*/
.container {
  max-width: var(--container-width);
  width: 100%;
  padding-right: var(--side-padding);
  padding-left: var(--side-padding);
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
.main {
  overflow-x: hidden;
}

/*=================
  BREAKPOINTS
=================*/

@media only screen and (max-width: 1200px) {
  html {
    font-size: 60%;
  }
}

@media only screen and (max-width: 992px) {
  html {
    font-size: 58%;
  }
}

@media only screen and (max-width: 768px) {
  html {
    font-size: 55%;
  }
}

@media only screen and (max-width: 576px) {
  html {
    font-size: 51%;
  }
}




/*=================
  HEADER
=================*/

.header-bg {  
  box-shadow: 0px 2px 4px 0px rgba(0,0,0, .15);
  position: sticky;
  top: 0px;
  z-index: 1000;
  position: absolute;
  width: 100%;
  background-color: transparent;
  color: #fff;
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  
  padding-top: var(--space-2);
  padding-bottom: var(--space-2);
  position: static !important;
}
.header .logo img {
  max-width: 80px;
  max-height: 125px;
}
.header-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: var(--space-5);
}

.header-nav > .item, .header-nav > .item > a {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-n-white);
  border-radius: 8px;
 
}
.header-nav  > a.button-sm-p{
  background-color: #fff;
  color: var(--color-p) !important;
}
body.header-fixed-padding .header-nav  > a.button-sm-p{
  background-color: var(--color-p);
  color: var(--color-n-white) !important;
}
.header-nav .item a {
  position: relative;
}

.header-nav .item:hover a, .header-nav .item:hover {
  border-color: var(--color-p);
}
.header-nav .item > svg {
  stroke: #fff;
  margin-left: var(--space-1);
  transition: .15s;
}


.header-nav .item .buffer {
  width: calc(100% + 70px);
  height: 73px;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0px;
  left: -25px;
}
.header-nav .item.active .buffer {
  visibility: visible;
}

/*=================
  MEGAMENU
=================*/

.header-nav .item .megamenu-wrapper {
  width: 100%;
  background: #fff;
  backdrop-filter: blur(5px);
  box-shadow: 0px 2px 5px rgba(0,0,0, 0.15);
  visibility: hidden;
  opacity: 0;
  transition: .15s;
  position: absolute;
  top: 100px;
  left: 0px;
}
.header-nav .item.active > svg {
  rotate: -180deg;
}
.header-nav .item.active .megamenu-wrapper {
  visibility: visible;
  opacity: 1;
}
.header-nav .item.active .megamenu .item .category .icon img {
  visibility: visible;
}

.header-nav .megamenu {
  display: grid;
  grid-template-columns: 8fr 4fr;
  gap: var(--space-3);
  padding-top: var(--space-4);
  padding-bottom: var(--space-5);
}
.header-nav .megamenu .title {
  color:#fff;
  margin-bottom: var(--space-4);
}
.header-nav .item .megamenu a {
  color:var(--color-p);
}
.header-nav .megamenu .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: space-between;
  gap: var(--space-4);
}
.header-nav .megamenu .item {
  max-width: 330px;
}

.header-nav .megamenu .item .category {
  display: flex;
  align-items: center;
  padding-bottom: var(--space-1);
  border-bottom: 1px solid #fff;
  margin-bottom: var(--space-2);
}
.header-nav .megamenu .item .category .icon {
  width: 24px;
  height: 24px;
  margin-right: var(--space-3);
}
.header-nav .megamenu .item .category .icon img {
  visibility: hidden;
}
.header-nav .megamenu .item .category a {
  font-size: 18px;
  font-weight: 400;
  color:var(--color-p);
}
.header-nav .megamenu .item .child-services {
  margin-left: 37px;
}
.header-nav .megamenu .item .child-services a:not(:last-of-type) {
  margin-bottom: var(--space-2);
}
.header-nav .megamenu .item .child-services a:hover {
  font-weight: 700;
}

.header-nav .megamenu .article {
  display: grid;
}
.header-nav .megamenu .article .close {
  grid-column: 2;
  justify-self: end;
  width: 28px;
  height: 28px;
  padding: 5px;
  cursor: pointer;
}
.header-nav .megamenu .article .post {
  grid-column: span 2;
}
.header-nav .megamenu .article .image {
  height: 225px;
  margin-bottom: var(--space-2);
  position: relative;
}
.header-nav .megamenu .article .image:hover > svg {
  rotate: -45deg;
}
.header-nav .megamenu .article .image img {
  object-fit: cover;
}
.header-nav .megamenu .article .image > svg {
  width: 24px;
  height: 18px;
  transition: .15s;
  position: absolute;
  bottom: var(--space-3);
  right: var(--space-3);
}
.header-nav .megamenu .article em {
  display: block;
  color:#fff;
  margin-bottom: var(--space-1);
}

/*=================
  HEADER SCROLL FUNCTIONALITY
=================*/

.header-bg.header-absolute {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  background-color: transparent;
  transition: all 0.3s ease;
}



.header-bg.header-fixed .header {
  padding: 10px 0;
}

.header-bg.header-fixed .logo {
  margin: 10px 0;
}

.header-bg.header-fixed .header-nav > .item > a, .header-bg.header-fixed .header-nav > .item:not([data-megamenu]){
  color: var(--color-n-black);
}

.header-bg .header-nav  > a.button-sm-p:hover{
  
  color: var(--color-n-white) !important;
  background-color: var(--color-p) !important;
}

.header-bg.header-fixed .theme-based-img p{
  color: var(--color-n-black);
}

/* Body padding when header is fixed to prevent content jump */
body.header-fixed-padding {
  padding-top: 80px;
}

/*=================
  MOBILE MENU
=================*/

.header-mobile-bg {
  display: none;
  background: var(--color-n-white);
  box-shadow: 0px 2px 4px 0px rgba(0,0,0, .15);
  position: sticky;
  top: 0px;
  z-index: 1000;
  width: 100%;
}
.top-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
  max-height: 35px;
  background: var(--color-p);
  padding: var(--space-1) var(--space-3);
  overflow: hidden;
  flex-wrap: wrap;
}
.top-header a {
    display: flex;
    align-items: center;
  color: var(--color-s);
}
.top-header a em {
  font-size: 14px !important;
  margin-left: var(--space-1);
  white-space: nowrap;
}
.top-header a img {
  width: 15px;
  height: 15px;
  margin-right: var(--space-1);
}

.header-mobile {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-3);
  min-height: 60px;
}
.header-mobile .logo {
 
  max-height: 27px;
  flex-shrink: 0;
}

.header-mobile .toggle-menu {
  width: 22px;
  height: 1px;
  background: var(--color-s);
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.header-mobile .toggle-menu::before, .header-mobile .toggle-menu::after {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: var(--color-s);
  transition: all 0.3s ease;
  position: absolute;
  top: -8px;
  left: 0px;
}
.header-mobile .toggle-menu::after {
  top: 8px;
}

/* Improve touch targets */
.header-mobile [data-mobile="toggler"] {
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.nav-mobile {
  width: 100%;
  height: calc(100vh - 87px);
  background: #FFFFFFF2;
  backdrop-filter: blur(5px);
  padding: var(--space-4) var(--space-3) var(--space-5);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  position: absolute;
  top: 60px;
  left: 0px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.nav-mobile .accordion {
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--color-t-20);
  margin-bottom: var(--space-3);
}
.nav-mobile .accordion em {
  font-size: 16px;
  text-transform: uppercase;
  color: var(--color-s);
}
.nav-mobile .accordion-button {
  background: none;
  padding: 0px;
  transition: .15s;
}
.nav-mobile .accordion-button::after {
  width: 18px;
  height: 9px;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='9' viewBox='0 0 16 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 8L8 1L15 8' stroke='%23111A00'/%3E%3C/svg%3E");
  background-size: contain;
  margin-left: var(--space-2);
  transform: rotate(180deg);
}
.nav-mobile .accordion-button:not(.collapsed) {
  box-shadow: none;
  padding-bottom: var(--space-3);
}

.nav-mobile .accordion-button:not(.collapsed)::after {
  transform: rotate(0deg);
}

/* Bootstrap accordion compatibility */
.nav-mobile .accordion-collapse.show {
  display: block;
}

.nav-mobile .accordion-collapse:not(.show) {
  display: none;
}

.nav-mobile a {
  font-size: 16px;
  text-transform: uppercase;
  color: var(--color-s);
  text-decoration: none;
  display: block;
  padding: var(--space-2) 0;
  transition: color 0.2s ease;
}

.nav-mobile a:hover {
  color: var(--color-p);
}
.nav-mobile .accordion a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-left: var(--space-3);
  padding: var(--space-1) 0;
}
.nav-mobile .accordion a::before {
  content: '';
  display: block;
  width: 8px;
  height: 1px;
  background: var(--color-p);
  margin-right: var(--space-1);
}
.nav-mobile .accordion a:not(:last-of-type) {
  margin-bottom: var(--space-3);
}
.nav-mobile .accordion a svg {
  margin-left: var(--space-2);
}


.nav-mobile > a:not(.button-sm-p) {
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--color-t-20);
  margin-bottom: var(--space-3);
}
.nav-mobile .button-sm-p {
  margin-top: var(--space-4);
}


.header-mobile-bg.active .nav-mobile {
  visibility: visible;
  opacity: 1;
}
.header-mobile-bg.active .toggle-menu {
  rotate: -45deg;
}
.header-mobile-bg.active .toggle-menu::before {
  rotate: 90deg;
  top: 0px;
}
.header-mobile-bg.active .toggle-menu::after {
  opacity: 0;
}

@media (prefers-color-scheme: dark) {
  .header-mobile-bg {
    background: var(--color-t);
  }
  .header-mobile .toggle-menu {
    background: var(--color-n-white);
  }
  .header-mobile .toggle-menu::before, .header-mobile .toggle-menu::after {
    background: var(--color-n-white);
  }
  .nav-mobile {
    background: #1B242DF2;
  }
  .nav-mobile .accordion {
    border-bottom: 1px solid var(--color-t-40);
  }
  .nav-mobile .accordion em {
    color: var(--color-n-white);
  }
  .nav-mobile .accordion a svg path {
    stroke: var(--color-n-white);
  }
  .nav-mobile .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='9' viewBox='0 0 16 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 8L8 1L15 8' stroke='%23ffffff'/%3E%3C/svg%3E");
  }
  .nav-mobile a {
    color: var(--color-n-white);
  }
  .nav-mobile a:hover {
    color: var(--color-n-white);
  }
  .nav-mobile > a {
    border-bottom: 1px solid var(--color-t-40);
  }
}



@media only screen and (max-width: 992px) {
  .header-bg {
    display: none;
  }
  .header-mobile-bg {
    display: block;
  }
}

@media only screen and (max-width: 768px) {
  .top-header {
    padding: var(--space-1) var(--space-2);
    gap: var(--space-2);
  }
  
  .header-mobile {
    padding: var(--space-2);
  }
  
  .nav-mobile {
    padding: var(--space-3) var(--space-2) var(--space-4);
  }
}

@media only screen and (max-width: 480px) {
  .top-header {
    flex-direction: column;
    max-height: none;
    padding: var(--space-1);
  }
  
  .top-header a {
    font-size: 12px;
  }
  
  .top-header a em {
    font-size: 12px !important;
  }
  
  .header-mobile .logo {
   
    max-height: 24px;
  }
}

@media only screen and (max-width: 375px) {
  .top-header a em {
    font-size: 10px !important;
  }
  
  .header-mobile {
    padding: var(--space-1);
  }
  
  .nav-mobile {
    padding: var(--space-2) var(--space-1) var(--space-3);
  }
}

/*=================
  DOWNLOAD APP SECTION
=================*/

.download-app {
  background: linear-gradient(135deg, var(--color-p-10) 0%, var(--color-a-10) 100%);
  padding: var(--space-8) 0;
 
  position: relative;
  overflow: hidden;
}

/* Background Decorative Elements */
.bg-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--color-p-20), var(--color-a-20));
  opacity: 0.6;
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 120px;
  height: 120px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.shape-2 {
  width: 80px;
  height: 80px;
  top: 60%;
  right: 10%;
  animation-delay: 2s;
}

.shape-3 {
  width: 60px;
  height: 60px;
  bottom: 20%;
  left: 15%;
  animation-delay: 4s;
}

.water-drops {
  position: absolute;
  width: 100%;
  height: 100%;
}

.drop {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--color-p-40);
  border-radius: 50%;
  animation: drop 4s linear infinite;
}

.drop-1 {
  top: 15%;
  left: 20%;
  animation-delay: 0s;
}

.drop-2 {
  top: 35%;
  right: 25%;
  animation-delay: 1s;
}

.drop-3 {
  top: 70%;
  left: 30%;
  animation-delay: 2s;
}

.drop-4 {
  top: 85%;
  right: 15%;
  animation-delay: 3s;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: var(--space-7);
  position: relative;
  z-index: 2;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  background: linear-gradient(135deg, var(--color-p), var(--color-a));
  color: var(--color-n-white);
  padding: var(--space-1) var(--space-3);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: var(--space-3);
  box-shadow: 0 4px 15px rgba(12, 81, 139, 0.3);
}

.badge i {
  color: #FFD700;
  animation: pulse 2s ease-in-out infinite;
}

.section-header h2 {
  color: var(--color-s);
  margin-bottom: var(--space-3);
  background: linear-gradient(135deg, var(--color-s), var(--color-p));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  color: var(--color-t);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Main Content */
.download-app-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
  position: relative;
  z-index: 2;
}

/* App Info Section */
.app-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.app-icon-wrapper {
  position: relative;
  text-align: center;
  margin-bottom: var(--space-4);
}

.app-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--color-p), var(--color-a));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(12, 81, 139, 0.3);
  transition: transform 0.3s ease;
}

.app-icon:hover {
  transform: scale(1.1) rotate(5deg);
}

.app-icon i {
  font-size: 48px;
  color: var(--color-n-white);
}

.icon-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, var(--color-p-20) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  animation: glow 3s ease-in-out infinite alternate;
}

/* App Features */
.app-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-3);
  background: var(--color-n-white);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(12, 81, 139, 0.15);
  border-color: var(--color-p-20);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--color-p-20), var(--color-a-20));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  background: linear-gradient(135deg, var(--color-p), var(--color-a));
  transform: scale(1.1);
}

.feature-icon i {
  font-size: 20px;
  color: var(--color-p);
  transition: color 0.3s ease;
}

.feature-item:hover .feature-icon i {
  color: var(--color-n-white);
}

.feature-content h4 {
  color: var(--color-s);
  margin-bottom: var(--space-1);
  font-size: 16px;
  font-weight: 600;
}

.feature-content p {
  color: var(--color-t-60);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

/* Download Buttons */
.download-buttons {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-5);
  justify-content: center;
}

.download-btn {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  background: var(--color-n-white);
  border: 2px solid var(--color-p);
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  min-width: 200px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(12, 81, 139, 0.1);
}

.download-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.download-btn:hover::before {
  left: 100%;
}

.download-btn:hover {
  background: var(--color-p);
  color: var(--color-n-white);
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 40px rgba(12, 81, 139, 0.3);
}

.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--color-p-10);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.download-btn:hover .btn-icon {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.btn-icon i {
  font-size: 20px;
  color: var(--color-p);
  transition: color 0.3s ease;
}

.download-btn:hover .btn-icon i {
  color: var(--color-n-white);
}

.btn-text {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.download-label {
  font-size: 12px;
  color: var(--color-t-60);
  line-height: 1.2;
  transition: color 0.3s ease;
}

.store-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-s);
  line-height: 1.2;
  transition: color 0.3s ease;
}

.download-btn:hover .download-label,
.download-btn:hover .store-name {
  color: var(--color-n-white);
}

.btn-arrow {
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.download-btn:hover .btn-arrow {
  opacity: 1;
  transform: translateX(0);
}

.btn-arrow i {
  color: var(--color-n-white);
  font-size: 16px;
}

/* App Stats */
.app-stats {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
}

.stat-item {
  text-align: center;
  padding: var(--space-3);

  
  transition: all 0.3s ease;
 
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(12, 81, 139, 0.15);
  border-color: var(--color-p-20);
}

.stat-number {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-p);
  margin-bottom: var(--space-1);
}

.stat-label {
  font-size: 12px;
  color: var(--color-t-60);
  font-weight: 500;
}

/* App Preview */
.app-preview {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.phone-mockup {
  position: relative;
  width: 320px;
  height: 580px;
  background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
  border-radius: 40px;
  padding: 12px;
  box-shadow: 
    0 25px 50px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.1);
  transition: transform 0.3s ease;
}

.phone-mockup:hover {
  transform: translateY(-10px) rotateY(5deg);
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 25px;
  background: #000;
  border-radius: 0 0 15px 15px;
  z-index: 3;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--color-n-white);
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1);
}

/* App Header */
.app-header {
  background: linear-gradient(135deg, var(--color-p), var(--color-a));
  color: var(--color-n-white);
  padding: var(--space-4);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-content {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.app-logo {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-logo i {
  font-size: 20px;
  color: var(--color-n-white);
}

.app-title h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 2px 0;
}

.app-title span {
  font-size: 12px;
  opacity: 0.8;
}

.header-actions {
  display: flex;
  gap: var(--space-2);
}

.header-actions i {
  font-size: 18px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.header-actions i:hover {
  opacity: 1;
}

/* App Content */
.app-content {
  padding: var(--space-4);
}

.welcome-banner {
  background: linear-gradient(135deg, var(--color-p-10), var(--color-a-10));
  border-radius: 12px;
  padding: var(--space-3);
  text-align: center;
  margin-bottom: var(--space-4);
  border: 1px solid var(--color-p-20);
}

.welcome-banner h4 {
  color: var(--color-s);
  margin: 0 0 var(--space-1) 0;
  font-size: 16px;
  font-weight: 600;
}

.welcome-banner p {
  color: var(--color-t-60);
  margin: 0;
  font-size: 14px;
}

/* Quick Actions */
.quick-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.action-btn {
  background: var(--color-p-10);
  border: 1px solid var(--color-p-20);
  border-radius: 12px;
  padding: var(--space-3);
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.action-btn:hover {
  background: var(--color-p-20);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(12, 81, 139, 0.2);
}

.action-btn.primary {
  background: linear-gradient(135deg, var(--color-p), var(--color-a));
  border-color: var(--color-p);
  color: var(--color-n-white);
}

.action-btn.primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px rgba(12, 81, 139, 0.3);
}

.action-icon {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-2) auto;
}

.action-btn.primary .action-icon {
  background: rgba(255, 255, 255, 0.3);
}

.action-icon i {
  font-size: 14px;
  color: var(--color-p);
}

.action-btn.primary .action-icon i {
  color: var(--color-n-white);
}

.action-btn span {
  font-size: 12px;
  color: var(--color-s);
  font-weight: 600;
  display: block;
}

.action-btn.primary span {
  color: var(--color-n-white);
}

/* Account Summary */
.account-summary {
  background: var(--color-a-10);
  border: 1px solid var(--color-a-20);
  border-radius: 16px;
  padding: var(--space-4);
  margin-bottom: var(--space-4);
}

.summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-3);
}

.summary-header h4 {
  color: var(--color-s);
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.summary-header i {
  color: var(--color-t-40);
  font-size: 16px;
}

.balance-amount {
  text-align: center;
  margin-bottom: var(--space-3);
}

.currency {
  font-size: 20px;
  color: var(--color-p);
  font-weight: 600;
}

.amount {
  font-size: 32px;
  font-weight: 800;
  color: var(--color-p);
  margin-left: 4px;
}

.due-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);
  margin-bottom: var(--space-3);
  color: var(--color-t-60);
  font-size: 14px;
}

.payment-progress {
  margin-top: var(--space-3);
}

.progress-bar {
  width: 100%;
  height: 6px;
  background: var(--color-t-20);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: var(--space-1);
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-p), var(--color-a));
  border-radius: 3px;
  transition: width 0.3s ease;
}

.progress-text {
  font-size: 12px;
  color: var(--color-t-60);
  text-align: center;
  display: block;
}

/* Recent Activity */
.recent-activity {
  background: var(--color-n-white);
  border-radius: 12px;
  padding: var(--space-3);
  border: 1px solid var(--color-t-20);
}

.recent-activity h5 {
  color: var(--color-s);
  margin: 0 0 var(--space-2) 0;
  font-size: 14px;
  font-weight: 600;
}

.activity-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--color-t-10);
}

.activity-item:last-child {
  border-bottom: none;
}

.activity-item i {
  color: var(--color-m-success);
  font-size: 14px;
  flex-shrink: 0;
}

.activity-item span {
  color: var(--color-s);
  font-size: 13px;
  flex: 1;
}

.activity-item small {
  color: var(--color-t-40);
  font-size: 11px;
}

/* Phone Shadow and Floating Elements */
.phone-shadow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 20px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.3) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-icon {
  position: absolute;
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 4s ease-in-out infinite;
}

.floating-icon i {
  color: var(--color-p-60);
  font-size: 14px;
}

.icon-1 {
  top: 10%;
  right: -15px;
  animation-delay: 0s;
}

.icon-2 {
  top: 30%;
  left: -15px;
  animation-delay: 1s;
}

.icon-3 {
  bottom: 20%;
  right: -15px;
  animation-delay: 2s;
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes drop {
  0% { transform: translateY(-100px); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateY(100vh); opacity: 0; }
}

@keyframes glow {
  0% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .download-app-content {
    gap: var(--space-6);
  }
  
  .phone-mockup {
    width: 300px;
    height: 540px;
  }
}

@media (max-width: 992px) {
  .download-app-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-6);
  }
  
  .app-preview {
    order: -1;
  }
  
  .phone-mockup {
    width: 280px;
    height: 500px;
  }
  
  .app-stats {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .download-app {
    padding: var(--space-6) 0;
  }
  
  .section-header h2 {
    font-size: 2.8rem;
  }
  
  .download-buttons {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  
  .download-btn {
    min-width: 280px;
  }
  
  .phone-mockup {
    width: 260px;
    height: 460px;
  }
  
  .quick-actions {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .app-stats {
    flex-direction: column;
    gap: var(--space-2);
  }
  
  .stat-item {
    max-width: 200px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .download-btn {
    width: 100%;
    max-width: 320px;
    min-width: auto;
  }
  
  .phone-mockup {
    width: 240px;
    height: 420px;
  }
  
  .floating-shape {
    display: none;
  }
  
  .water-drops {
    display: none;
  }
}

/*=================
  BLOCK PLACEHOLDER STYLES
=================*/

.placeholder-content {
  text-align: center;
  padding: var(--space-3);
  background: var(--color-n-white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.certification-item {
  text-align: center;
  padding: var(--space-3);
  background: var(--color-n-white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.certification-item h4 {
  margin: var(--space-2) 0 var(--space-1) 0;
  color: var(--color-s);
}

.certification-item p {
  margin: 0;
  color: var(--color-p);
  font-size: 14px;
}

.leadership-placeholder {
  text-align: center;
  padding: var(--space-3);
  background: var(--color-n-white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.leadership-placeholder h4 {
  margin: var(--space-2) 0 var(--space-1) 0;
  color: var(--color-s);
}

.leadership-placeholder em {
  color: var(--color-p);
}

/*=================
  FOOTER
=================*/

.footer-bg {
  color: var(--color-n-white);
  background: var(--color-n-black);
  padding: var(--space-6) 0px;
  padding-bottom: 0px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.footer-top .footer-info {
  grid-column: 1;
}
.footer-top .footer-info .logo {
  max-width: 80px;
    max-height: 125px;
}
.footer-top .footer-info a {
  max-width: fit-content;
  margin-bottom: var(--space-2);
  display: flex;
      white-space: nowrap;
      justify-content: center;
      align-items: center;
}
.footer-top .footer-info a:hover,
.footer-top .footer-nav a:hover {
  color: #fff;
  font-weight: 700;
}
.footer-top .footer-info span {
  display: block;
  margin-bottom: var(--space-4);
}

.footer-top .footer-nav {
  grid-column: 2;
  display: flex;
  justify-content: space-between;
  gap: var(--space-3);
}
.footer-top .footer-nav h4 {
  font-weight: 700 !important;
  color: var(--color-n-white);
  margin-bottom: var(--space-3);
}
.footer-top .footer-nav a {
  margin-bottom: var(--space-3);
}

.footer-newsletter {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--space-3);
}
.footer-newsletter .newsletter-form .gform_title {
  display: none !important;
}
.footer-newsletter .newsletter-form form {
  display: grid !important;
  grid-template-columns: 1fr auto !important;
  width: 445px !important;
}
.footer-newsletter .newsletter-form .ginput_container {
  padding: var(--space-2) var(--space-3) !important;
  border: 2px solid var(--color-n-white) !important;
  padding: 8px 24px !important;
}
.footer-newsletter .newsletter-form label {
  font-size: 1.8rem !important;
  font-weight: 400 !important;
  margin-bottom: var(--space-2) !important;
}
.footer-newsletter .newsletter-form .gform_footer {
  align-self: end !important;
  background: var(--color-n-white) !important;
  padding: 10px 24px !important;
}
.footer-newsletter .newsletter-form input {
  padding: 0px !important;
  margin: 0px !important;
}
.footer-newsletter .newsletter-form input:not([type="submit"]),
.footer-newsletter .newsletter-form input:not([type="submit"])::placeholder {
  font-size: 1.8rem !important;
}
.footer-newsletter .newsletter-form input[type="submit"] {
  text-transform: uppercase !important;
  color: var(--color-s) !important;
}

.footer-newsletter .socials {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: var(--space-3);
}
.footer-newsletter .socials a {
  width: 28px;
  height: 28px;
  transition: .15s;
}
.footer-newsletter .socials a:hover {
  scale: 1.1;
}

.footer hr {
  height: 2px;
  background: var(--color-n-white);
  margin: var(--space-4) 0px;
  opacity: 1;
}
.footer-bottom .footer-accreditations {
  flex: 0 1 445px;  
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-bottom .licenses {
  flex: 0 1 445px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: var(--space-4);
}
.footer-bottom .licenses img {
  max-width: 94px;
  max-height: 54px;
}
.footer-bottom .disclaimer {
  flex: 0 1 445px;
}
.footer-bottom .disclaimer p {
  text-align: end;
}
.footer-bottom .disclaimer a {
  display: inline-block;
  font-weight: 700;
}
.footer-bottom .disclaimer a:hover {
  color: var(--color-n-white);
  text-decoration: underline;
}

@media only screen and (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }
  .footer-top .footer-info {
    grid-column: 1;
    grid-row: 1;
  }
  .footer-top .footer-info .logo {
    max-width: 250px;
    max-height: 50px;
  }
  .footer-newsletter .socials {
    grid-row: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: var(--space-3);
  }
  .footer-newsletter {
    grid-column: 1;
    grid-row: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
  .footer-newsletter .newsletter-form form {
    width: 100% !important;
  }
  .footer-top .footer-nav {
    grid-column: 1;
    grid-row: 3;
  }
  
  .footer hr {
    height: 1px;
  }

  .footer-bottom {
    flex-direction: column;
  }
  .footer-bottom .footer-accreditations,
  .footer-bottom .licenses,
  .footer-bottom .disclaimer {
    flex: none;
    width: 100%;
  }
  .footer-bottom .footer-accreditations {
    margin-bottom: var(--space-4);
  }
  .footer-bottom .licenses {
    order: 3;
    justify-content: flex-start;
  }
  .footer-bottom .licenses img {
    max-width: 94px;
    max-height: 54px;
  }
  .footer-bottom .disclaimer {
    margin-bottom: var(--space-5);
  }
  .footer-bottom .disclaimer p {
    text-align: start;
  }
}

@media only screen and (max-width: 500px) {
  .footer-top .footer-nav {
    flex-direction: column;
  }
}

/*=================
  BLOG POSTS
=================*/
body.single-post {
  background: var(--color-n-white) !important;
  color: var(--color-s) !important;
}
body.single-post .main {
  max-width: 905px;
  padding-top: var(--space-6);
  padding-bottom: var(--space-7);
  margin: 0px auto;
}

body.single-post .main h1 {
    margin-top: var(--space-4);
    margin-bottom: var(--space-5);
}
body.single-post .main h2, body.single-post .main h3 {
    margin-top: var(--space-4);
    margin-bottom: var(--space-4);
}
body.single-post .main h4, body.single-post .main h5 {
    @include font(heading5);
    margin-top: var(--space-4);
    margin-bottom: var(--space-3);
}
body.single-post .main a {
    display: inline-block;
    color: var(--color-p);
}
body.single-post .main a:hover {
    text-decoration: underline;
}
body.single-post .main strong {
    font-weight: 600;
}
body.single-post .main em {
    font-style: italic;
}
body.single-post .main img {
    width: 100% !important;
    height: 400px !important;
    object-fit: cover;
    margin: var(--space-4) auto;
}
body.single-post .main ul, ol {
    margin-bottom: var(--space-5);
}
body.single-post .main ol li {
    list-style: decimal;
}
body.single-post .main ul li {
    list-style: disc;
}
body.single-post .main li {
    margin-left: var(--space-4);
    margin-bottom: var(--space-3);
}

@media only screen and (max-width: 768px) {
    body.single-post .main img {
      width: 100% !important;
      height: 250px !important;
      object-fit: cover;
    }
}






/*=================
  PROJECT FILTER
=================*/

.projects-filter .filter {
  max-width: fit-content;
  padding: var(--space-1) var(--space-2);
  border: 2px solid var(--color-p);
  margin-left: 0px;
  margin-bottom: var(--space-4);
}
.projects-filter .filter select {
  background: none !important;
  appearance: none !important;
}

.projects-filter .project-details:first-of-type {
  padding: 0px 0px var(--space-6) !important;
}

.projects-filter .project-details.active {
  display: block;
}

.projects-filter .project-details {
  display: none;
  padding: var(--space-7) 0px;
}
.projects-filter .project-details.switchSides {
  background: var(--color-p-10);
}
.projects-filter .project-details.switchSides .container {
  grid-template-columns: 5fr 7fr;
}
.projects-filter .project-details.switchSides .container .image {
  grid-column: 2;
}
.projects-filter .project-details.switchSides .image img {
  margin-left: auto;
  margin-right: 0px;
}
.projects-filter .project-details.switchSides .container .content {
  grid-column: 1;
}

.projects-filter .project-details .container {
  display: grid;
  grid-template-columns: 7fr 5fr;
  justify-content: space-between;
  gap: var(--space-6);
}

.projects-filter .project-details .image {
  grid-column: 1;
  grid-row: 1;
}
.projects-filter .project-details .image img {
  max-width: 735px;
  height: 380px;
  object-fit: cover;
  margin-left: 0px;
  margin-right: auto;
}

.projects-filter .project-details .content {
  grid-column: 2;
  grid-row: 1;
}
.projects-filter .project-details .content h3 {
  margin-bottom: var(--space-4);
}
.projects-filter .project-details .content .quick-infos {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}
.projects-filter .project-details .content .quick-infos em {
  display: block;
  color: var(--color-p);
}
.projects-filter .project-details .content .quick-infos span {
  display: block;
  text-transform: uppercase;
}

.projects-filter .project-details .content .copy {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--space-4);
}
.projects-filter .project-details .content .copy p:last-of-type {
  margin-bottom: var(--space-2);
}
.projects-filter .project-details .content .copy svg {
  width: 50px;
  height: 50px;
}

.projects-filter .load-more-btn {
  margin-top: var(--space-5);
  cursor: pointer;
}

@media (prefers-color-scheme: dark) {
  .projects-filter .project-details.switchSides {
    background: var(--color-s);
  }
}

@media only screen and (max-width: 992px) {
  .projects-filter .project-details {
    padding: var(--space-6) 0px;
  }
  .projects-filter .project-details .container {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: var(--space-5);
  }
  .projects-filter .project-details .image {
    grid-column: 1 !important;
    grid-row: 1 !important;
  }
  .projects-filter .project-details .image img {
    margin-left: 0px !important;
    height: 310px;
  }
  .projects-filter .project-details .content {
    grid-column: 1 !important;
    grid-row: 2 !important;
    max-width: 750px;
  }
  .projects-filter .project-details .content h3 {
    margin-bottom: var(--space-3);
  }
  .projects-filter .project-details .content .quick-infos {
    margin-bottom: var(--space-5);
  }
  .projects-filter .project-details .content .copy p:last-of-type {
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 578px) {
  .projects-filter .project-details .image img {
    height: 250px;
  }
  .projects-filter .project-details .content .copy svg {
    width: 35px;
    height: 35px;
  }
}

/* Login Page Styling */
.login-page {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.login-container {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.login-header {
    background: linear-gradient(135deg, var(--color-p), #0056b3);
    color: white;
    padding: 3rem 2rem 2rem;
}

.login-logo {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    backdrop-filter: blur(10px);
}

.login-logo i {
    font-size: 2.5rem;
    color: white;
}

.login-header h1 {
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.login-header p {
    opacity: 0.9;
    font-size: 1.3rem;
}

.login-form-wrapper {
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-h);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-label i {
    color: var(--color-p);
    font-size: 1rem;
}

.form-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-p);
    background: white;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.password-input-wrapper {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--color-c);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.password-toggle:hover {
    background: #e9ecef;
    color: var(--color-p);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--color-c);
}

.checkbox-wrapper input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkmark {
    background: var(--color-p);
    border-color: var(--color-p);
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.forgot-link {
    color: var(--color-p);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.forgot-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

.login-btn {
    width: 100%;
    background: var(--color-p);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    gap: 0.75rem;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}

.login-btn:hover:not(:disabled) {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 123, 255, 0.4);
}

.login-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.login-btn i {
    transition: transform 0.3s ease;
}

.login-btn:hover:not(:disabled) i {
    transform: translateX(5px);
}

.alternative-login {
    margin: 2rem 0;
}

.divider {
    text-align: center;
    position: relative;
    margin: 1.5rem 0;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e9ecef;
}

.divider span {
    background: white;
    padding: 0 1rem;
    color: var(--color-c);
    font-size: 0.9rem;
}

.social-login {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    background: white;
    color: var(--color-c);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-btn:hover {
    border-color: var(--color-p);
    color: var(--color-p);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.google-btn:hover {
    border-color: #ea4335;
    color: #ea4335;
}

.facebook-btn:hover {
    border-color: #1877f2;
    color: #1877f2;
}

.registration-link {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.registration-link p {
    color: var(--color-c);
    margin: 0;
}

.registration-link a {
    color: var(--color-p);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.registration-link a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.quick-access {
    background: #f8f9fa;
    padding: 2rem;
    text-align: center;
}

.quick-access h3 {
    color: var(--color-h);
    margin-bottom: 1.5rem;
}

.quick-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.quick-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    color: var(--color-c);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.quick-link:hover {
    border-color: var(--color-p);
    color: var(--color-p);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.quick-link i {
    font-size: 1.5rem;
    color: var(--color-p);
}

.quick-link span {
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .login-page {
        padding: 2rem 1rem;
    }
    
    .login-container {
        margin: 0;
    }
    
    .login-header {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .login-header h1 {
        font-size: 1.75rem;
    }
    
    .login-form-wrapper {
        padding: 1.5rem;
    }
    
    .quick-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .login-header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .login-logo {
        width: 60px;
        height: 60px;
    }
    
    .login-logo i {
        font-size: 2rem;
    }
    
    .login-header h1 {
        font-size: 1.5rem;
    }
    
    .login-form-wrapper {
        padding: 1rem;
    }
    
    .form-options {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}








/* Login Page Styling */
.login-page {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.login-container {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.login-header {
    background: linear-gradient(135deg, var(--color-p), #0056b3);
    color: white;
    padding: 3rem 2rem 2rem;
}

.login-logo {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    backdrop-filter: blur(10px);
}

.login-logo i {
    font-size: 2.5rem;
    color: white;
}

.login-header h1 {
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.login-header p {
    opacity: 0.9;
    font-size: 1.3rem;
}

.login-form-wrapper {
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-h);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-label i {
    color: var(--color-p);
    font-size: 1rem;
}

.form-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-p);
    background: white;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.password-input-wrapper {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--color-c);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.password-toggle:hover {
    background: #e9ecef;
    color: var(--color-p);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--color-c);
}

.checkbox-wrapper input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkmark {
    background: var(--color-p);
    border-color: var(--color-p);
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.forgot-link {
    color: var(--color-p);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.forgot-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

.login-btn {
    width: 100%;
    background: var(--color-p);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}

.login-btn:hover:not(:disabled) {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 123, 255, 0.4);
}

.login-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.login-btn i {
    transition: transform 0.3s ease;
}

.login-btn:hover:not(:disabled) i {
    transform: translateX(5px);
}

.alternative-login {
    margin: 2rem 0;
}

.divider {
    text-align: center;
    position: relative;
    margin: 1.5rem 0;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e9ecef;
}

.divider span {
    background: white;
    padding: 0 1rem;
    color: var(--color-c);
    font-size: 0.9rem;
}

.social-login {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    background: white;
    color: var(--color-c);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-btn:hover {
    border-color: var(--color-p);
    color: var(--color-p);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.google-btn:hover {
    border-color: #ea4335;
    color: #ea4335;
}

.facebook-btn:hover {
    border-color: #1877f2;
    color: #1877f2;
}

.registration-link {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
    text-align: center;
}

.registration-link p {
    color: var(--color-c);
    margin: 0;
}

.registration-link a {
    color: var(--color-p);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.registration-link a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.quick-access {
    background: #f8f9fa;
    padding: 2rem;
    text-align: center;
}

.quick-access h3 {
    color: var(--color-h);
    margin-bottom: 1.5rem;
}

.quick-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.quick-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    color: var(--color-c);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.quick-link:hover {
    border-color: var(--color-p);
    color: var(--color-p);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.quick-link i {
    font-size: 1.5rem;
    color: var(--color-p);
}

.quick-link span {
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
}

/* My Account Page Styling */
.my-account-page {
   
    background: #f8f9fa;
    min-height: calc(100vh - 200px);
}

.account-container {
    max-width: 1200px;
    margin: 0 auto;
}

.account-header {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.account-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-p), #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}

.account-avatar i {
    color: white;
    font-size: 2.5rem;
}

.account-header h1 {
    color: var(--color-h);
    margin-bottom: 0.5rem;
}

.account-header p {
    color: var(--color-c);
    font-size: 1.3rem;
}

.account-navigation {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    overflow: hidden;
}

.account-nav {
    display: flex;
    border-bottom: 1px solid #e9ecef;
}

.nav-tab {
    flex: 1;
    background: none;
    border: none;
    padding: 1.5rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-c);
    border-bottom: 3px solid transparent;
}

.nav-tab:hover {
    background: #f8f9fa;
    color: var(--color-p);
}

.nav-tab.active {
    color: var(--color-p);
    border-bottom-color: var(--color-p);
    background: #f8f9fa;
}

.nav-tab i {
    font-size: 1.2rem;
}

.nav-tab span {
    font-size: 0.9rem;
    font-weight: 500;
}

.account-content {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    margin-bottom: 2rem;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.dashboard-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.dashboard-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: var(--color-p);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.card-icon i {
    color: white;
    font-size: 1.2rem;
}

.card-content h3 {
    color: var(--color-h);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-p);
    margin-bottom: 0.5rem;
}

.due-date, .usage-info {
    display: block;
    color: var(--color-c);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.pay-now-btn, .view-details-btn {
    background: var(--color-p);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.pay-now-btn:hover, .view-details-btn:hover {
    background: #0056b3;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .account-nav {
        flex-direction: column;
    }
    
    .nav-tab {
        flex-direction: row;
        justify-content: flex-start;
        padding: 1rem;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .account-content {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .my-account-page {
        padding: 1rem 0;
    }
    
    .account-header {
        padding: 1.5rem;
    }
    
    .account-avatar {
        width: 60px;
        height: 60px;
    }
    
    .account-avatar i {
        font-size: 2rem;
    }
    
    .account-content {
        padding: 1rem;
    }
}

/* Responsive Design for Login Page */
@media (max-width: 768px) {
    .login-page {
        padding: 2rem 1rem;
    }
    
    .login-container {
        margin: 0;
    }
    
    .login-header {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .login-header h1 {
        font-size: 1.75rem;
    }
    
    .login-form-wrapper {
        padding: 1.5rem;
    }
    
    .quick-links {
        grid-template-columns: 1fr;
    }
    
    .form-options {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .login-page {
        padding: 1rem 0;
    }
    
    .login-header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .login-logo {
        width: 60px;
        height: 60px;
    }
    
    .login-logo i {
        font-size: 2rem;
    }
    
    .login-header h1 {
        font-size: 1.5rem;
    }
    
    .login-form-wrapper {
        padding: 1rem;
    }
    
    .social-login {
        gap: 0.75rem;
    }
    
    .social-btn {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
}


/* Professional Dashboard Styling */
.login-dashboard {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.login-brand-panel {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.login-brand-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.brand-content {
    position: relative;
    z-index: 2;
}

.brand-logo-large {
    position: relative;
    margin-bottom: 2rem;
}

.logo-circle {
    width: 120px;
    height: 120px;
   
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
   
}

.logo-circle i {
    font-size: 3rem;
    color: white;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.5; }
}

.brand-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
}

.brand-tagline {
    font-size: 1.6rem;
    opacity: 0.9;
    text-align: center;
    margin-bottom: 3rem;
}

.brand-features {
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-text h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.feature-text p {
    font-size: 1.3rem;
    opacity: 0.8;
    margin: 0;
}

.brand-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.login-form-panel {
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
}

.form-container {
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-h);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--color-c);
    font-size: 1.3rem;
}

.quick-actions-bar {
    display: flex;
    justify-content: space-around;
    padding: 1.5rem;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.action-item:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.action-item i {
    font-size: 1.5rem;
    color: var(--color-p);
}

.action-item span {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-c);
}

/* My Account Dashboard Styling */
.dashboard-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.dashboard-header {
    background: white;
   
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.profile-avatar {
    position: relative;
}

.profile-avatar i {
    font-size: 4rem;
    color: var(--color-p);
}

.status-indicator {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 3px solid white;
}

.status-indicator.online {
    background: #28a745;
}

.profile-info h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-h);
    margin-bottom: 0.5rem;
}

.profile-info p {
    color: var(--color-c);
    margin-bottom: 1rem;
}

.account-meta {
    display: flex;
    gap: 1rem;
}

.account-type {
    background: var(--color-p);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.member-since {
    color: var(--color-c);
    font-size: 0.9rem;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.action-btn {
    background: none;
    border: none;
    padding: 0.75rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.action-btn:hover {
    background: #f8f9fa;
}

.notification-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #dc3545;
    color: white;
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-weight: 600;
}

.user-menu-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f8f9fa;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.user-menu-btn:hover {
    background: #e9ecef;
}

.dashboard-navigation {
    background: white;
   
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.nav-tabs {
    display: flex;
    border-bottom: 1px solid #e9ecef;
}

.nav-tab {
    flex: 1;
    background: none;
    border: none;
    padding: 1.5rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-c);
    border-bottom: 3px solid transparent;
}

.nav-tab:hover {
    background: #f8f9fa;
    color: var(--color-p);
}

.nav-tab.active {
    color: var(--color-p);
    border-bottom-color: var(--color-p);
    background: #f8f9fa;
}

.nav-tab i {
    font-size: 1.2rem;
}

.nav-tab span {
    font-size: 0.9rem;
    font-weight: 500;
}

.dashboard-content {
    background: white;
   
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-header {
    text-align: center;
    margin-bottom: 3rem;
}

.tab-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-h);
    margin-bottom: 0.5rem;
}

.tab-header p {
    color: var(--color-c);
    font-size: 1.3rem;
}

.placeholder-content {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--color-c);
}

.placeholder-content i {
    color: var(--color-p);
    margin-bottom: 1rem;
}

.placeholder-content h3 {
    color: var(--color-h);
    margin-bottom: 1rem;
}

/* Metrics Row */
.metrics-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.metric-card {
    background: white;
   
    padding: 1.5rem;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--color-p);
}

.metric-card.primary::before {
    background: var(--color-p);
}

.metric-card.success::before {
    background: #28a745;
}

.metric-card.info::before {
    background: #17a2b8;
}

.metric-card.warning::before {
    background: #ffc107;
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.metric-icon {
    width: 60px;
    height: 60px;
    background: var(--color-p);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.metric-card.success .metric-icon {
    background: #28a745;
}

.metric-card.info .metric-icon {
    background: #17a2b8;
}

.metric-card.warning .metric-icon {
    background: #ffc107;
}

.metric-icon i {
    color: white;
    font-size: 1.5rem;
}

.metric-content h3 {
    color: var(--color-h);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-h);
    margin-bottom: 0.5rem;
}

.status-active {
    color: #28a745 !important;
}

.metric-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.metric-details span {
    font-size: 0.85rem;
    color: var(--color-c);
}

.usage-trend.positive {
    color: #28a745;
}

.bill-status.overdue {
    color: #dc3545;
    font-weight: 600;
}

.metric-action-btn {
    width: 100%;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.metric-action-btn.primary {
    background: var(--color-p);
    color: white;
}

.metric-action-btn.secondary {
    background: #f8f9fa;
    color: var(--color-c);
    border: 1px solid #e9ecef;
}

.metric-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Analytics Row */
.analytics-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.chart-card, .quick-actions-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid #e9ecef;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.card-header h3 {
    color: var(--color-h);
    font-size: 1.2rem;
    font-weight: 600;
}

.card-actions {
    display: flex;
    gap: 0.5rem;
}

.time-filter {
    background: none;
    border: 1px solid #e9ecef;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    color: #000;
}

.time-filter.active {
    background: var(--color-p);
    color: white;
    border-color: var(--color-p);
}

.chart-container {
    height: 300px;
    position: relative;
    padding: 1rem;
    background: white;
    border-radius: 12px;
}

.chart-placeholder {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px dashed #e9ecef;
}

.chart-content {
    text-align: center;
    color: var(--color-c);
}

.chart-content i {
    font-size: 3rem;
    color: var(--color-p);
    margin-bottom: 1rem;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.quick-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-action-btn:hover {
    background: var(--color-p);
    color: white;
    transform: translateY(-2px);
}

.quick-action-btn i {
    font-size: 1.5rem;
    color: var(--color-p);
}

.quick-action-btn:hover i {
    color: white;
}

.quick-action-btn span {
    font-size: 0.8rem;
    font-weight: 500;
}

/* Activity Row */
.activity-row {
    margin-bottom: 2rem;
}

.activity-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid #e9ecef;
}

.view-all-link {
    color: var(--color-p);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.activity-item:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.activity-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.activity-icon.payment {
    background: #28a745;
}

.activity-icon.maintenance {
    background: #17a2b8;
}

.activity-icon.billing {
    background: #ffc107;
}

.activity-icon i {
    color: white;
    font-size: 1.2rem;
}

.activity-content {
    flex: 1;
}

.activity-content h4 {
    color: var(--color-h);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.activity-content p {
    color: var(--color-c);
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.activity-time {
    font-size: 0.8rem;
    color: var(--color-c);
}

.activity-status {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.activity-status.success {
    background: #28a745;
    color: white;
}

.activity-status.info {
    background: #17a2b8;
    color: white;
}

.activity-status.warning {
    background: #ffc107;
    color: white;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .analytics-row {
        grid-template-columns: 1fr;
    }
    
    .metrics-row {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .login-dashboard {
        grid-template-columns: 1fr;
        margin: 1rem;
    }
    
    .login-brand-panel {
        padding: 2rem 1.5rem;
    }
    
    .brand-title {
        font-size: 2.5rem;
    }
    
    .brand-stats {
        grid-template-columns: 1fr;
    }
    
    .login-form-panel {
        padding: 2rem 1.5rem;
    }
    
    .dashboard-header {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .user-profile {
        flex-direction: column;
        text-align: center;
    }
    
    .nav-tabs {
        flex-direction: column;
    }
    
    .nav-tab {
        flex-direction: row;
        justify-content: flex-start;
        padding: 1rem;
    }
    
    .metrics-row {
        grid-template-columns: 1fr;
    }
    
    .actions-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .login-page {
        padding: 1rem 0;
    }
    
    .login-brand-panel {
        padding: 1.5rem 1rem;
    }
    
    .brand-title {
        font-size: 2.25rem;
    }
    
    .logo-circle {
        width: 80px;
        height: 80px;
    }
    
    .logo-circle i {
        font-size: 2rem;
    }
    
    .login-form-panel {
        padding: 1.5rem 1rem;
    }
    
    .dashboard-container {
        padding: 1rem;
    }
    
    .dashboard-header {
        padding: 1.5rem;
    }
    
    .profile-avatar i {
        font-size: 3rem;
    }
    
    .profile-info h1 {
        font-size: 1.8rem;
    }
    
    .dashboard-content {
        padding: 1.5rem;
    }
}

/* Font Size Adjustments for Better Readability */
.form-label {
    font-size: 1.2rem !important;
}

.form-input {
    font-size: 1.2rem !important;
}

.checkbox-wrapper {
    font-size: 1.3rem !important;
}

.forgot-link {
    font-size: 1.3rem !important;
    white-space: nowrap;
}

.login-btn {
    font-size: 1.3rem !important;
}

.social-btn {
    font-size: 1.3rem !important;
}

.registration-link p {
    font-size: 1.3rem !important;
}

.registration-link a {
    font-size: 1.3rem !important;
}

.action-item span {
    font-size: 1rem !important;
}

.quick-access h3 {
    font-size: 1.4rem !important;
}

.quick-link span {
    font-size: 1rem !important;
}

/* Dashboard Font Adjustments */
.profile-info h1 {
    font-size: 2rem !important;
}

.profile-info p {
    font-size: 1.2rem !important;
}

.account-type {
    font-size: 1rem !important;
}

.member-since {
    font-size: 1.3rem !important;
}

.nav-tab span {
    font-size: 1.3rem !important;
}

.metric-content h3 {
    font-size: 1.3rem !important;
}

.metric-value {
    font-size: 2.2rem !important;
}

.metric-details span {
    font-size: 1.2rem !important;
}

.card-header h3 {
    font-size: 1.4rem !important;
}

.time-filter {
    font-size: 1.2rem !important;
}

.quick-action-btn span {
    font-size: 1rem !important;
}

.activity-content h4 {
    font-size: 1.2rem !important;
}

.activity-content p {
    font-size: 1.3rem !important;
}

.activity-time {
    font-size: 1rem !important;
}

.tab-header h2 {
    font-size: 2.2rem !important;
}

.tab-header p {
    font-size: 1.3rem !important;
}

.placeholder-content h3 {
    font-size: 1.5rem !important;
}

.placeholder-content p {
    font-size: 1.2rem !important;
}

/* Brand Logo Image Styling */
.brand-logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.logo-circle {
    overflow: hidden;
}

/* Usage Analytics Tab Styling */
.usage-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.overview-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--color-p);
}

.overview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.overview-icon {
    width: 60px;
    height: 60px;
    background: var(--color-p);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.overview-icon i {
    color: white;
    font-size: 1.5rem;
}

.overview-content h3 {
    color: var(--color-h);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.overview-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-h);
    margin-bottom: 0.5rem;
}

.overview-change {
    font-size: 0.9rem;
    font-weight: 500;
}

.overview-change.positive {
    color: #28a745;
}

.overview-change.negative {
    color: #dc3545;
}

.overview-change.neutral {
    color: var(--color-c);
}

.charts-section {
    margin-bottom: 2rem;
}

.chart-card.large {
    margin-bottom: 2rem;
}

.chart-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.chart-select {
    padding: 0.5rem 1rem;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    background: white;
    font-size: 0.9rem;
    color: var(--color-c);
}

.time-filters {
    display: flex;
    gap: 0.5rem;
}

.time-filter-btn {
    background: none;
    border: 1px solid #e9ecef;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    color: var(--color-c);
}

.time-filter-btn.active {
    background: var(--color-p);
    color: white;
    border-color: var(--color-p);
}

.time-filter-btn:hover {
    border-color: var(--color-p);
    color: var(--color-p);
}

.chart-container.large {
    height: 400px;
}

.comparison-charts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
}

.insights-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
}

.insights-card, .tips-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid #e9ecef;
}

.insights-badge {
    background: var(--color-p);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.insights-content {
    margin-top: 1.5rem;
}

.insight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.insight-item:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.insight-item.positive {
    border-left: 4px solid #28a745;
}

.insight-item.warning {
    border-left: 4px solid #ffc107;
}

.insight-item.info {
    border-left: 4px solid #17a2b8;
}

.insight-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.insight-item.positive .insight-icon {
    background: #28a745;
    color: white;
}

.insight-item.warning .insight-icon {
    background: #ffc107;
    color: white;
}

.insight-item.info .insight-icon {
    background: #17a2b8;
    color: white;
}

.insight-text h4 {
    color: var(--color-h);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.insight-text p {
    color: var(--color-c);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.tips-content {
    margin-top: 1.5rem;
}

.tip-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.tip-item:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tip-icon {
    width: 40px;
    height: 40px;
    background: var(--color-p);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tip-icon i {
    color: white;
    font-size: 1.2rem;
}

.tip-text h4 {
    color: var(--color-h);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.tip-text p {
    color: var(--color-c);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* Responsive Design for Usage Analytics */
@media (max-width: 1200px) {
    .insights-section {
        grid-template-columns: 1fr;
    }
    
    .comparison-charts {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .usage-overview {
        grid-template-columns: 1fr;
    }
    
    .chart-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .time-filters {
        justify-content: center;
    }
    
    .chart-container.large {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .overview-card {
        padding: 1rem;
    }
    
    .overview-value {
        font-size: 1.5rem;
    }
    
    .chart-container.large {
        height: 250px;
    }
}

/* Billing & Payment Tab Styling */
.billing-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.billing-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.billing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.billing-card.primary::before {
    background: var(--color-p);
}

.billing-card.success::before {
    background: #28a745;
}

.billing-card.info::before {
    background: #17a2b8;
}

.billing-card.warning::before {
    background: #ffc107;
}

.billing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.billing-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.billing-card.primary .billing-icon {
    background: var(--color-p);
}

.billing-card.success .billing-icon {
    background: #28a745;
}

.billing-card.info .billing-icon {
    background: #17a2b8;
}

.billing-card.warning .billing-icon {
    background: #ffc107;
}

.billing-icon i {
    color: white;
    font-size: 1.5rem;
}

.billing-content h3 {
    color: var(--color-h);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.billing-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-h);
    margin-bottom: 0.5rem;
}

.billing-status {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.billing-status.overdue {
    color: #dc3545;
    font-weight: 600;
}

.billing-status.paid {
    color: #28a745;
    font-weight: 600;
}

.billing-action-btn {
    width: 100%;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.billing-action-btn.primary {
    background: var(--color-p);
    color: white;
}

.billing-action-btn.secondary {
    background: #f8f9fa;
    color: var(--color-c);
    border: 1px solid #e9ecef;
}

.billing-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Payment Methods Section */
.payment-methods-section {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.section-header h3 {
    color: var(--color-h);
    font-size: 1.3rem;
    font-weight: 600;
}

.add-payment-btn {
    background: var(--color-p);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.add-payment-btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

.payment-methods-grid {
    display: grid;
    gap: 1rem;
}

.payment-method-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.payment-method-card.primary {
    border-color: var(--color-p);
    background: rgba(75, 8, 161, 0.05);
}

.payment-method-card:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.payment-method-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: var(--color-p);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon i {
    color: white;
    font-size: 1.5rem;
}

.card-details h4 {
    color: var(--color-h);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.card-details p {
    color: var(--color-c);
    font-size: 0.9rem;
    margin: 0;
}

.payment-method-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.default-badge {
    background: var(--color-p);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.edit-btn, .delete-btn {
    background: none;
    border: none;
    padding: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--color-c);
}

.edit-btn:hover {
    background: #e9ecef;
    color: var(--color-p);
}

.delete-btn:hover {
    background: #f8d7da;
    color: #dc3545;
}

/* Billing History Section */
.billing-history-section {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.history-filters {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.history-period-select {
    padding: 0.5rem 1rem;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    background: white;
    font-size: 0.9rem;
    color: var(--color-c);
}

.export-btn {
    background: #28a745;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.export-btn:hover {
    background: #218838;
    transform: translateY(-2px);
}

.billing-history-table {
    margin-top: 1.5rem;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1.5fr;
    background: #f8f9fa;
    padding: 1rem;
    font-weight: 600;
    color: var(--color-h);
    border-bottom: 1px solid #e9ecef;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1.5fr;
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.table-row:hover {
    background: #f8f9fa;
}

.table-row.overdue {
    background: rgba(220, 53, 69, 0.05);
}

.table-row:last-child {
    border-bottom: none;
}

.bill-date, .due-date, .bill-amount {
    font-weight: 600;
    color: var(--color-h);
}

.bill-number, .days-overdue, .payment-date, .usage-details {
    font-size: 0.85rem;
    color: var(--color-c);
    margin-top: 0.25rem;
}

.days-overdue {
    color: #dc3545;
    font-weight: 600;
}

.payment-date {
    color: #28a745;
    font-weight: 600;
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    display: inline-block;
}

.status-badge.overdue {
    background: #f8d7da;
    color: #721c24;
}

.status-badge.paid {
    background: #d4edda;
    color: #155724;
}

.col-actions {
    display: flex;
    gap: 0.5rem;
}

.action-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn.primary {
    background: var(--color-p);
    color: white;
}

.action-btn.secondary {
    background: #f8f9fa;
    color: var(--color-c);
    border: 1px solid #e9ecef;
}

.action-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.page-btn {
    background: none;
    border: 1px solid #e9ecef;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--color-c);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.page-btn:hover:not(:disabled) {
    border-color: var(--color-p);
    color: var(--color-p);
}

.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-numbers {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.page-number {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--color-c);
    font-weight: 500;
}

.page-number.active {
    background: var(--color-p);
    color: white;
}

.page-number:hover:not(.active) {
    background: #f8f9fa;
    color: var(--color-p);
}

.page-dots {
    color: var(--color-c);
    font-weight: 500;
}

/* Payment Analytics Section */
.payment-analytics-section {
    margin-bottom: 2rem;
}

.analytics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
}

.analytics-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid #e9ecef;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* Responsive Design for Billing */
@media (max-width: 1200px) {
    .analytics-grid {
        grid-template-columns: 1fr;
    }
    
    .table-header, .table-row {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .billing-overview {
        grid-template-columns: 1fr;
    }
    
    .section-header {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .history-filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .table-header, .table-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .col-actions {
        justify-content: center;
    }
    
    .pagination {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .billing-card {
        padding: 1rem;
    }
    
    .billing-amount {
        font-size: 1.5rem;
    }
    
    .payment-method-card {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .payment-method-actions {
        justify-content: center;
    }
}

/* ========================================
   PAGE HOME STYLES
   ======================================== */

/* Hero Section Styles */
.hero-plaridel { 
    position: relative; 
    padding: var(--space-8) 0 var(--space-7); 
    color: #fff; 
    overflow: hidden; 
    min-height: 100vh;
    display: flex;
}

.hero-plaridel:before { 
    content: ""; 
    position: absolute; 
    inset: 0; 
    background: linear-gradient(180deg, rgba(0,0,0,.2) 0%, rgba(0,0,0,.58) 35%, rgba(0,0,0,.2) 100%); 
    z-index: 1; 
    pointer-events: none; 
}

.hero-plaridel .hero-bg { 
    position: absolute; 
    inset: 0; 
    z-index: 0; 
}

.hero-plaridel .hero-bg:before { 
    content: none; 
}

.hero-plaridel .hero-bg img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    filter: saturate(.9); 
}

.hero-plaridel .hero-inner { 
    position: relative; 
    z-index: 2; 
    max-width: var(--container-width); 
    margin: auto; 
    display: grid; 
    grid-template-columns: 4fr 2fr; 
    gap: var(--space-6); 
    align-items: start; 
}

.hero-plaridel .hero-content { 
    text-align: start; 
    justify-content: start; 
}

.hero-plaridel .intro {  
    letter-spacing: .5px; 
    font-weight: 600; 
    margin-bottom: var(--space-3); 
    display: block; 
}

.hero-plaridel .title { 
    font-size: clamp(3rem, 6vw, 5rem); 
    line-height: 1.05; 
    font-weight: 700; 
    margin: 0 0 var(--space-4); 
}

.hero-plaridel .copy { 
    max-width: 920px; 
    font-size: 1.9rem; 
    line-height: 1.6;  
    margin-bottom: var(--space-5); 
}

.hero-plaridel .ctas { 
    display: flex; 
    gap: var(--space-3); 
    margin-bottom: var(--space-6); 
    flex-wrap: wrap; 
}

.hero-plaridel .ctas .btn { 
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 0;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

.hero-plaridel .ctas .btn-primary { 
    background: var(--color-p); 
    color: #fff; 
    border: 1px solid var(--color-p); 
}

.hero-plaridel .ctas .btn-ghost { 
    background: #fff; 
    color: var(--color-p);  
}

.hero-plaridel .stats { 
    display: grid; 
    grid-template-columns: repeat(4, minmax(0,1fr)); 
    gap: var(--space-4); 
    max-width: 100%; 
}

.hero-plaridel .stat .num { 
    font-size: 4.4rem; 
    font-weight: 700; 
}

.hero-plaridel .stat .label { 
    color: #d7e3f4; 
    margin-top: 10px; 
    font-size: 1.5rem; 
}

.hero-plaridel .quicklinks { }

.hero-plaridel .quicklinks h3 { 
    font-size: 2.4rem; 
    font-weight: 600; 
    margin-bottom: var(--space-4); 
    color: #fff; 
}

.hero-plaridel .quicklinks-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: var(--space-2); 
}

.hero-plaridel .quicklinks-grid a { 
    display: flex; 
    align-items: center; 
    gap: var(--space-3); 
    padding: var(--space-3); 
    background: rgba(255,255,255,0.1); 
    border-radius: 8px; 
    text-decoration: none; 
    color: #fff; 
    transition: all 0.3s ease; 
    backdrop-filter: blur(10px); 
    border: 1px solid rgba(255,255,255,0.2); 
}

.hero-plaridel .quicklinks-grid a:hover { 
    background: rgba(255,255,255,0.2); 
    transform: translateY(-2px); 
}

.hero-plaridel .quicklinks-grid img { 
    width: 40px; 
    height: 40px; 
    opacity: 0.9; 
    flex-shrink: 0; 
}

.hero-plaridel .quicklinks-grid span { 
    font-size: 1.4rem; 
    font-weight: 500; 
}

/* Hero Responsive Styles */
@media (max-width: 992px) { 
    .hero-plaridel { 
        padding: var(--space-7) 0 var(--space-6); 
    } 
    .hero-plaridel .hero-inner { 
        grid-template-columns: 1fr; 
        gap: var(--space-5); 
    } 
    .hero-plaridel .stats { 
        grid-template-columns: repeat(2, minmax(0,1fr)); 
    } 
    .hero-plaridel .quicklinks-grid { 
        grid-template-columns: repeat(3, minmax(0,1fr)); 
    } 
}

@media (max-width: 768px) { 
    .hero-plaridel .stats { 
        grid-template-columns: repeat(2, minmax(0,1fr)); 
    } 
    .hero-plaridel .quicklinks-grid { 
        grid-template-columns: repeat(2, minmax(0,1fr)); 
    } 
}

@media (max-width: 576px) { 
    .hero-plaridel .title { 
        font-size: 3.2rem; 
    } 
    .hero-plaridel .stats { 
        grid-template-columns: 1fr 1fr; 
    } 
    .hero-plaridel .quicklinks-grid { 
        grid-template-columns: 1fr 1fr; 
    } 
    .hero-plaridel .quicklinks-grid a{
        gap: var(--space-2);
        padding: var(--space-2);
    }
}

/* Services Grid Wave Effect */
.services-grid {
    position: relative;
    padding-top: 100px;
    margin-top: -80px;
}

.services-grid::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%) rotate(180deg);
    width: 100vw;
    height: 80px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 283.5 19.6' preserveAspectRatio='none'%3E%3Cpath style='opacity:0.33' d='M0 0L0 18.8 141.8 4.1 283.5 18.8 283.5 0z' fill='%230c518b'/%3E%3Cpath style='opacity:0.33' d='M0 0L0 12.6 141.8 4 283.5 12.6 283.5 0z' fill='%230c518b'/%3E%3Cpath style='opacity:0.33' d='M0 0L0 6.4 141.8 4 283.5 6.4 283.5 0z' fill='%230c518b'/%3E%3Cpath d='M0 0L0 1.2 141.8 4 283.5 1.2 283.5 0z' fill='%230c518b'/%3E%3C/svg%3E") no-repeat center center;
    background-size: cover;
    z-index: 0;
}

.services-grid .section-top,
.services-grid .grid {
    position: relative;
    z-index: 1;
}

.services-grid .item {
    position: relative;
    z-index: 1;
}

.services-grid .item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(12, 81, 139, 0.02) 0%, rgba(12, 81, 139, 0.01) 100%);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.services-grid .item:hover::before {
    opacity: 1;
}

/* Transparency Block Styles */
.transparency-block { 
    padding: var(--space-7) 0;
   
    position: relative;
    overflow: hidden;
}

.transparency-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.transparency-block .container {
    position: relative;
    z-index: 1;
}

.transparency-block .section-top { 
    text-align: left; 
    margin-bottom: var(--space-6); 
    color: #ffffff;
}

.transparency-block .section-top h2 {
    color: #ffffff;
}

.transparency-block .section-top .copy { 
    max-width: 860px;
    color: rgba(255, 255, 255, 0.9);
}

.transparency-block .section-top .copy p {
    color: rgba(255, 255, 255, 0.9);
}

.transparency-block .ts-grid { 
    display: grid; 
    grid-template-columns: repeat(5, minmax(0,1fr)); 
    gap: var(--space-3); 
}

.transparency-block .ts-item a { 
    display: flex; 
    align-items: center; 
    gap: var(--space-3); 
    padding: var(--space-4); 
    flex-direction: column;
    border-radius: 12px; 
    text-decoration: none; 
    color: #ffffff; 
    transition: all 0.3s ease; 
    backdrop-filter: blur(10px);
    
}

.transparency-block .ts-item a:hover { 
   
    transform: translateY(-3px); 
   
}

.transparency-block .ts-item img { 
  
    flex-shrink: 0; 
    object-fit: contain;
  
    padding: 8px;
    border-radius: 8px;
    opacity: 0.92;
}

.transparency-block .ts-item span { 
    font-size: 1.9rem; 
    font-weight: 600; 
    line-height: 1.4;
    color: #ffffff;
}

/* Transparency Block Responsive */
@media (max-width: 992px) { 
    .transparency-block .ts-grid { 
        grid-template-columns: repeat(2, minmax(0,1fr)); 
    } 
}

@media (max-width: 768px) { 
    .transparency-block .ts-grid { 
        grid-template-columns: 1fr; 
        gap: var(--space-2);
    }
    
    .transparency-block .ts-item a {
        padding: var(--space-3);
    }
}

@media (max-width: 576px) { 
    .transparency-block .ts-item a {
        gap: var(--space-2);
        padding: var(--space-3);
    }
    
    .transparency-block .ts-item img {
        width: 120px;
        height: 120px;
    }
    
    .transparency-block .ts-item span {
        font-size: 1.4rem;
    }
}
