@font-face {
    font-family: 'SFProBold';
    src: url('./fonts/SF-Pro-Display-Bold.woff2') format('woff2'),
        url('./fonts/SF-Pro-Display-Bold.woff') format('woff'),
        url('./fonts/SF-Pro-Display-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
    font-display: block;
    font-preload: true;
}

@font-face {
    font-family: 'SFProRegular';
    src: url('./fonts/SF-Pro-Display-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: block;
    font-preload: true;
}

@font-face {
    font-family: 'TWCenMTStdItalic';
    src: url('./fonts/TwCenMTStdItalic.woff2') format('woff2'),
        url('./fonts/TwCenMTStdItalic.woff') format('woff'),
        url('./fonts/TwCenMTStdItalic.otf') format('opentype');
    font-weight: normal;
    font-style: italic;
    font-display: block;
    font-preload: true;
}

:root {
    --primary-color: #FF4444;
    --secondary-color: #000;
    --dark-color: #212121;
    --dark-text-color: #d9d9d9;
    --light-color: #d9d9d9;
    --light-text-color: #000;
    --dark-footer-color: #2E2E2E;
    --green-color: #67AF53;

    /* Luxury toggle variables */
    --toggle-width: 70px;
    --toggle-height: 35px;
    --thumb-size: 27.5px;
    --toggle-border: 0px;
    --toggle-radius: 20px;
    --thumb-radius: 13px;
    --transition-duration: 0.4s;
    --luxury-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    --luxury-shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.2);
}

p {
    margin: 0;
    padding: 0;
    line-height: 1;
}

html {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    color: var(--light-text-color);
    transition: background-color var(--transition-duration) ease, color var(--transition-duration) ease;
}

#loadingscreen {
    position: absolute;
    opacity: 1;
    overflow: hidden;
    width: 100%;
    height: 99.8%;
    max-width: 1500px;
    border: 2px none red;
    left: 50%;
    transform: translateX(-50%);
}

#portal-page,
#home-page,
#finance-page,
#pricing-page,
#contact-page,
#careers-page {
    opacity: 1;
    overflow-x: hidden;
    width: 100vw;
    max-width: 1500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.page2,
.page1,
.page3,
.page4,
.page5 {
    top: 0;
    position: absolute;
    width: 100vw;
    height: fit-content;
    border: 2px none red;
    max-width: 1500px;
    overflow: visible;
}

@media (max-width: 768px) {

    .page1,
    .page2,
    .page3,
    .page4,
    .page5 {
        overflow: visible;
    }
}


@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

#portal-page *,
#home-page *,
#finance-page *,
#pricing-page *,
#contact-page *,
#careers-page * {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    outline: none;
}

/* Theme-specific styles */
[data-theme="dark"] {
    background-color: var(--dark-color);
    color: var(--dark-text-color);
}

[data-theme="light"] {
    background-color: var(--light-color);
    color: var(--light-text-color);
}

[data-theme="dark"] .TM {
    fill: var(--light-color);
}

[data-theme="light"] .TM {
    fill: var(--dark-color);
}

/* Luxury Toggle Styles */
.theme-toggle-container {
    position: absolute;
    top: 25px;
    right: 20px;
    z-index: 1000;
    opacity: 1;
    animation: none;
}

.theme-toggle-container * {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    outline: none;
}

.header * {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    outline: none;
}



/* Home page theme toggle - no delay */
.home-page .theme-toggle-container {
    opacity: 1;
    animation: none;
    right: 20px;
}

.luxury-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    outline: none;
    transition: transform 0.2s ease;
    transform: scale(0.8);
    touch-action: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    outline: none;
}

.luxury-toggle:hover {
    transform: scale(.9);
}

.luxury-toggle:active {
    transform: scale(0.85);
}

.toggle-track {
    position: relative;
    width: var(--toggle-width);
    height: var(--toggle-height);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: none;
    border-radius: var(--toggle-radius);
    box-shadow: var(--luxury-shadow);
    transition: all var(--transition-duration) cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.toggle-thumb {
    position: absolute;
    top: 4px;
    left: 4px;
    width: var(--thumb-size);
    height: var(--thumb-size);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: var(--thumb-radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all var(--transition-duration) cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

/* Dark theme styles */
[data-theme="dark"] .toggle-track {
    background: linear-gradient(135deg, #2c3e50 0%, #2c3e50 100%);
    box-shadow: var(--luxury-shadow);
}

[data-theme="dark"] .toggle-thumb {
    transform: translateX(34.5px);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Icon styles */
.sun-icon,
.moon-icon {
    width: 16px;
    height: 16px;
    transition: all var(--transition-duration) ease;
}

.sun-icon {
    color: #f31212;
    opacity: 1;
    transform: scale(1);
}

.moon-icon {
    color: #232323;
    opacity: 0;
    transform: scale(0.8);
    position: absolute;
}

/* Dark theme icon states */
[data-theme="dark"] .sun-icon {
    opacity: 0;
    transform: scale(0.8);
}

[data-theme="dark"] .moon-icon {
    opacity: 1;
    transform: scale(1);
    color: #1b1b1b;
}

/* Hover effects */
.luxury-toggle:hover .toggle-track {
    box-shadow: var(--luxury-shadow-hover);
}

/* Responsive design */
@media (max-width: 768px) {
    .theme-toggle-container {
        top: 15px;
        right: 15px;
    }

    :root {
        --toggle-width: 70px;
        --toggle-height: 35px;
        --thumb-size: 27px;
    }

    [data-theme="dark"] .toggle-thumb {
        transform: translateX(35px);
    }
}

.logoAU1 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-47.5%, -56.5%) scale(.8);
    width: fit-content;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px none red;
    transform-origin: center;
}

.logoAU1 path {
    max-width: 240px;
    border: 2px none blue;
    opacity: 0;
    animation: fadeIn .5s .5s ease forwards;
}

.logoAU2 {
    position: relative;
    left: 15px;
    top: 20px;
    transform: scale(.65);
    max-width: 300px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px none red;
    transform-origin: left top;
    height: 120px;
}

.logoAU2 path {
    max-width: 240px;
    border: 2px none blue;
    opacity: 0;
    animation: fadeIn .5s .5s ease forwards;
    cursor: pointer;
}

/* Prevent logo animation from resetting on subsequent page loads */
.logoAU2.animated path {
    opacity: 1;
    animation: none;
}

@keyframes fadeIn {
    from {
        display: none;
        opacity: 0;
    }

    to {
        display: block;
        opacity: 1;
    }
}

[data-theme="dark"] .AUlogobg {
    fill: var(--light-color) !important;
}

/* [data-theme="light"] .AUlogobg {} */


.logosolutions {
    margin-top: 15px;
    opacity: 0;
    animation: fadeIn .5s .75s ease forwards;
}



[data-theme="dark"] .logosolutions path {
    fill: var(--light-color) !important;
    opacity: .9;
}

[data-theme="light"] .logosolutions path {
    fill: var(--dark-color) !important;
    opacity: .85;
}


.loadingbg {
    margin-top: 40px;
    opacity: 0;
    animation: fadeIn .5s 1.35s ease forwards;
    filter: brightness(2.1);
}

.loadingbg svg {
    border: 2px none blue;
}


.loading {
    width: fit-content;
    height: fit-content;
    position: absolute;
    margin-top: calc(77.5px + 40px);
    opacity: 0;
    animation: fadeIn .75s 1.5s ease forwards, loading 2s linear infinite;
    transform: scale(.8);
    transform-origin: center;
    fill: white;
    filter: brightness(3.5);
    transition: transform 0.5s ease-out;
}

.loading svg {
    fill: white;
}

.loading svg path {
    fill: white !important;
}



[data-theme="dark"] path#loadingbg {
    fill: var(--light-color) !important;
}

[data-theme="light"] path#loadingbg {
    fill: var(--dark-color) !important;
}

[data-theme="dark"] #loading path {
    fill: var(--light-color) !important;
}

[data-theme="light"] #loading path {
    fill: var(--dark-color) !important;
}



.loadingtext {
    margin-top: 30px;
    opacity: 0;
    animation: fadeIn .75s 1.5s ease forwards;
}

[data-theme="dark"] .loadingtext {
    color: var(--light-color);
}

[data-theme="light"] .loadingtext {
    color: var(--dark-color);
}


@keyframes loading {
    0% {
        transform: rotate(0deg) scale(.8);
    }

    50% {
        transform: rotate(180deg) scale(.8);
    }

    100% {
        transform: rotate(360deg) scale(.8);
    }
}



.footer {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 2px none red;
    height: fit-content;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeIn .75s 2.25s ease forwards;
    box-sizing: border-box;
    padding: 0 20px;
}

.footerhome {
    bottom: 0px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    border: 2px none red;
    margin: 0;
    opacity: 1;
    overflow: visible;
    width: 100%;
    padding-bottom: 100px;
    gap: 25px;
    z-index: 150000;
}

.footerbg {
    width: 100vw;
    height: 100%;
    position: absolute;
    top: 0;
    border: 2px none blue;
}

[data-theme="light"] .footerbg {
    background-color: var(--dark-color);
}

[data-theme="dark"] .footerbg {
    background-color: var(--dark-footer-color);
}

.version {
    position: relative;
    font-size: 11px;
    opacity: .5;
    font-family: 'SFProBold';
    letter-spacing: 1.5px;
    border: 2px none blue;
    width: 100%;
    height: fit-content;
    padding: 0px;
    margin: 0px;
    line-height: .25;
    margin-bottom: 10px;
}

.versionhome {
    position: relative;
    font-size: 11px;
    opacity: .5;
    font-family: 'SFProBold';
    letter-spacing: 1.5px;
    border: 2px none blue;
    width: 100%;
    height: fit-content;
    padding: 0px;
    margin: 0px;
    line-height: .25;
    margin-bottom: 10px;
}

[data-theme="dark"] .version {
    color: var(--light-color);
}

[data-theme="light"] .version {
    color: var(--dark-color);
}

[data-theme="dark"] .versionhome {
    color: var(--light-color);
}

[data-theme="light"] .versionhome {
    color: var(--light-color);
}


.copyright {
    position: relative;
    width: 100%;
    font-size: 11px;
    opacity: .5;
    font-family: 'SFProBold';
    white-space: nowrap;
    border: 2px none green;
    margin: 0;
    padding: 0;
    line-height: 1.3;
    letter-spacing: .1px;
}

.copyrighthome {
    position: relative;
    width: 100%;
    font-size: 11px;
    opacity: .5;
    font-family: 'SFProBold';
    white-space: normal;
    border: 2px none green;
    margin: 0;
    padding: 0;
    line-height: 1.3;
    letter-spacing: .1px;
}

[data-theme="dark"] .copyright {
    color: var(--light-color);
}

[data-theme="light"] .copyright {
    color: var(--dark-color);
}

[data-theme="dark"] .copyrighthome {
    color: var(--light-color);
}

[data-theme="light"] .copyrighthome {
    color: var(--light-color);
}

/* Back Button Styles */
/* .back-button-container {
  position: fixed;
  top: 25px;
  left: 20px;
  z-index: 1000;
  opacity: 0;
  animation: fadeIn .5s 1.75s ease forwards;
}

.back-button {
  background: transparent;
  border: 2px solid var(--secondary-color);
  color: var(--secondary-color);
  padding: 8px 16px;
  border-radius: 20px;
  font-family: 'SFProBold', sans-serif;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.1);
}

.back-button:hover {
  background: var(--secondary-color);
  color: var(--light-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

[data-theme="dark"] .back-button {
  border-color: var(--light-color);
  color: var(--light-color);
}

[data-theme="dark"] .back-button:hover {
  background: var(--light-color);
  color: var(--dark-color);
}

@media (max-width: 768px) {
  .back-button-container {
    top: 15px;
    left: 15px;
  }

  .back-button {
    padding: 6px 12px;
    font-size: 12px;
  }
} */

/* Language Selector */
.language-selector {
    position: absolute;
    top: 70px;
    right: 10px;
    border: 2px none blue;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    padding: 0px 10px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    outline: none;
}

.language-selector svg {
    max-width: 40px;
    min-width: 40px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    outline: none;
}

/* Language selector SVG paths - follow theme colors */
.language-selector svg path {
    fill: var(--dark-color);
}

[data-theme="dark"] .language-selector svg path {
    fill: var(--light-color);
}

[data-theme="light"] .language-selector svg path {
    fill: var(--dark-color);
}

.midline1 {
    width: 1px;
    height: 15px;
    opacity: .25;
}

[data-theme="dark"] .midline1 {
    border-right: 2px solid var(--light-color);
}

[data-theme="light"] .midline1 {
    border-right: 2px solid var(--dark-color);
}


/* Active language state - red override */
.language-selector .English-select.active path,
.language-selector .Spanish-select.active path {
    fill: #FF4444 !important;
}

/* Prevent selection and highlight on all language selector elements */
.language-selector .English-select,
.language-selector .Spanish-select {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    outline: none;
}

.text1 {
    position: relative;
    width: fit-content;
    height: fit-content;
    font-size: 14.5px;
    opacity: 1;
    font-family: 'SFProRegular';
    border: 2px none green;
    margin-top: 20px;
    padding: 0;
    line-height: 1.1;
    letter-spacing: .5px;
    text-align: center;
    max-width: 80%;
    padding: 0px 50px;
}

.menuitem {
    position: relative;
    width: fit-content;
    height: 100%;
    opacity: 1;
    font-family: 'SFProRegular';
    border: 2px none green;
    margin: 0;
    padding: 0;
    line-height: 1.1;
    letter-spacing: .5px;
    text-align: center;
    z-index: 1;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#menudot {
    width: 3.25px;
    height: 3.25px;
    border-radius: 50%;
    background-color: var(--light-color);
    top: 50%;
    transform: translateY(-50%);
    margin: 0px 10px;
    pointer-events: none;
    touch-action: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    outline: none;
}

.menuitem svg {
    margin-right: 40px;
}

/* Home menu item path gray by default */
#home path {
    fill: #8A8A8A;
}

/* Home menu item path white only when home menu item is active */
#home.active path {
    fill: white;
}

/* Video container styles */
.video1 {
    width: 50%;
    max-width: 600px;
    margin: 0px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px none red;
    clip-path: polygon(5% 0%, 95% 0%, 85% 90%, 15% 90%);
    position: relative;
    overflow: hidden;

}

.video1 video {
    width: 100%;
    height: auto;
    display: block;
}

.video1 iframe {
    pointer-events: none;
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    opacity: 0;
    transition: opacity 0.5s ease-in;
}

.video1 iframe.loaded {
    opacity: 1;
}

/* Loading dots animation */
.loading-dots {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    z-index: 10;
}

.dot {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: loadingDot 1.2s infinite ease-in-out;
}

/* Theme-aware loading dots */
[data-theme="dark"] .dot {
    background: var(--primary-color);
}

[data-theme="light"] .dot {
    background: var(--dark-color);
}

/* Position 12 dots in a circle */
.dot:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.dot:nth-child(2) {
    top: 6.7%;
    left: 75%;
    animation-delay: 0.1s;
}

.dot:nth-child(3) {
    top: 25%;
    left: 93.3%;
    animation-delay: 0.2s;
}

.dot:nth-child(4) {
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    animation-delay: 0.3s;
}

.dot:nth-child(5) {
    top: 75%;
    left: 93.3%;
    animation-delay: 0.4s;
}

.dot:nth-child(6) {
    top: 93.3%;
    left: 75%;
    animation-delay: 0.5s;
}

.dot:nth-child(7) {
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0.6s;
}

.dot:nth-child(8) {
    top: 93.3%;
    left: 25%;
    animation-delay: 0.7s;
}

.dot:nth-child(9) {
    top: 75%;
    left: 6.7%;
    animation-delay: 0.8s;
}

.dot:nth-child(10) {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    animation-delay: 0.9s;
}

.dot:nth-child(11) {
    top: 25%;
    left: 6.7%;
    animation-delay: 1s;
}

.dot:nth-child(12) {
    top: 6.7%;
    left: 25%;
    animation-delay: 1.1s;
}

@keyframes loadingDot {

    0%,
    80%,
    100% {
        opacity: 0.3;
        transform: scale(0.8);
    }

    40% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .video1 {
        width: 80%;
        max-width: 400px;
        clip-path: polygon(5% 0%, 95% 0%, 85% 90%, 15% 90%);
    }
}

@media (max-width: 480px) {
    .video1 {
        width: 90%;
        max-width: 350px;
        clip-path: polygon(5% 0%, 95% 0%, 85% 90%, 15% 90%);
    }
}

/* Ensure text1 elements in title are properly centered */
.title .text1 {
    flex: 1;
    text-align: center;
    margin: 0;
    padding: 0;
    font-size: 17.5px;
    font-family: 'SFProBold';
}

[data-theme="dark"] .text1 {
    color: var(--light-color);
}

[data-theme="light"] .text1 {
    color: var(--dark-color);
}

[data-theme="dark"] .menuitem {
    color: var(--light-color);
}

[data-theme="light"] .menuitem {
    color: var(--light-color);
}


.about-us-container {
    width: 100%;
    position: relative;
    border: 2px none red;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 30px;
    margin-top: -10px;
}

.checkout-container,
.finance-container,
.pricing-container,
.contact-container,
.careers-container {
    width: 100%;
    position: relative;
    border: 2px none red;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    margin-bottom: 0px;
}



.menu {
    position: sticky;
    top: 0;
    width: 100%;
    height: 50px;
    border: 2px none red;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

/* Menu indicator styles */
.menu-indicator {
    position: absolute;
    bottom: -4px;
    height: 4px;
    background-color: #FF4444;
    transition: all 0.3s ease;
    z-index: 10;
}

.menutext {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    text-align: center;
    border: 2px none blue;
    padding: 0px 20px;
    width: 100%;
    max-width: 400px;
    height: 100%;
    cursor: pointer;
}

.menubg-wrapper {
    position: absolute;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    border: 2px none green;
    overflow: visible;
}

.menubg {
    position: absolute;
    top: 0;
    width: 100vw;
    height: 100%;
}

[data-theme="light"] .menubg {
    background-color: var(--dark-color);
}

[data-theme="dark"] .menubg {
    background-color: var(--dark-footer-color);
}

.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1500px;
    height: 80px;
    border: 2px none red;
    overflow: visible;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    z-index: 1000;
    padding: 0px 20px;
    box-sizing: border-box;
    min-width: 0;
}

.sticky-footer-logo {
    width: auto;
    max-width: 160px;
    min-width: 0;
    height: 40px;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 5px;
    z-index: 1;
    flex-shrink: 1;
    border: 2px none red;
    overflow: hidden;
}

@media (min-width: 769px) {
    .sticky-footer-mascot {
        top: 0;
        right: 0;
        transform-origin: bottom left;
        transform: scale(1.1) translateX(-50px);
    }
}

@media (max-width: 768px) {
    .sticky-footer-mascot {
        top: 0;
        right: 0;
        transform-origin: bottom left;
        transform: scale(.8) translateX(70px);
    }
}

.sticky-footer-phone {
    font-family: 'SFProBold';
    font-size: 20px;
    color: white;
    white-space: nowrap;
    border: 2px none blue;
    z-index: 1;
}

.call-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5px;
    z-index: 50;
    height: 25px;
    background-color: var(--green-color);
    padding: 5px 25px;
    border-radius: 12.5px;
    cursor: pointer;
}

.sticky-footer-phone-icon {
    max-width: 20px;
    max-height: 20px;
    width: auto;
    height: auto;
}

.bottom-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    border: 2px none red;
    z-index: 500000;
    pointer-events: none;
}

.sticky-footer {
    pointer-events: auto;
}

.sticky-footer-text-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    gap: 7.5px;
    z-index: 1;
    border: 2px none red;
    width: auto;
    flex-shrink: 1;
    padding: 5px 15px;
    box-sizing: border-box;
    min-width: 0;
    overflow: visible;
}

.sticky-footer-text-wrapper svg {
    max-width: 210px;
    height: 90px;
    border: 2px none red;
}

.sticky-footerbg-wrapper {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    height: 100%;
    border: 2px none green;
    overflow: visible;
    z-index: -1;
}

.sticky-footerbg {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 100vw;
    height: 100%;
    transform: translateX(-50%);
}

[data-theme="light"] .sticky-footerbg {
    background-color: var(--primary-color);
}

[data-theme="dark"] .sticky-footerbg {
    background-color: var(--primary-color);
}

.title {
    margin-top: 30px;
    margin-bottom: 10px;
    border: 2px none red;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    padding: 0px 10px;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.lineL,
.lineR {
    border-top: 2px solid var(--primary-color);
    width: 15px;
}

/* Responsive design for sticky footer */
@media (max-width: 768px) {
    .sticky-footer {
        padding: 0px 10px;
    }

    .sticky-footer-logo {
        max-width: 150px;
        margin-left: 5px;
    }

    .sticky-footer-text {
        margin-top: -5px;
    }

    .sticky-footer-text-wrapper {
        margin-top: 0px;
        padding: 5px 8px;
        gap: 0px;
        margin-right: -10px;
    }

    .sticky-footer-text-wrapper svg {
        max-width: 170px;
        height: 40px;
    }

    .call-button {
        height: 40px;
        padding: 0px 17.5px;
    }

    .sticky-footer-phone {
        font-size: 16px;
    }

    .sticky-footer-phone-icon {
        max-width: 16px;
        max-height: 16px;
    }
}

.footerlogos {
    position: relative;
    z-index: 1;
    border: 2px none red;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
    justify-content: center;
    align-items: center;
    gap: 12.5%;
    text-align: center;
    max-width: 75%;
}

.footerpages {
    z-index: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
    text-align: center;
    max-width: 100px;
    padding-top: 40px;
    font-family: 'SFProBold';
    color: var(--light-color);
}

.footerpages p {
    cursor: pointer;
}


#pricing-page .footerhome,
#finance-page .footerhome,
#careers-page .footerhome,
#contact-page .footerhome {
    padding-bottom: 30px;
}

.icetruck {
    position: relative;
    width: 100vw;
    margin-top: 45px;
    z-index: 5;
}

.icetruck svg {
    max-width: 400px;
    width: 100%;
    height: auto;
    border: 2px none red;
    z-index: 5;
}

[data-theme="dark"] .icetruck svg {
    filter: invert(1) hue-rotate(0deg);
}

[data-theme="light"] .icetruck svg {
    filter: invert(0) hue-rotate(0deg);
}

/* .snowflake {}

[data-theme="dark"] .snowflake {
    fill: var(--light-color);
}

[data-theme="light"] .snowflake {
    fill: var(--light-color);
}

.window {}

[data-theme="dark"] .window {
    fill: var(--light-color);
}

[data-theme="light"] .window {
    fill: var(--light-color);
} */

.road {
    position: absolute;
    width: 100vw;
    height: 55px;
    border: 2px none red;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
}

[data-theme="dark"] .road {
    background-color: #272727;
}

[data-theme="light"] .road {
    background-color: #c5c5c5;
}

#icetruckanim {
    transform: translateX(calc(-100vw - 100px));
    animation: icetruckanim 3.5s linear infinite;
}

@media (min-width: 1199px) {
    #icetruckanim {
        animation: icetruckanim 6s linear infinite;
    }
}

@media (min-width: 1500px) {
    #icetruckanim {
        animation: icetruckanim 8.5s linear infinite;
    }
}

@keyframes icetruckanim {
    0% {
        transform: translateX(calc(-100vw - 100px));
    }

    60%,
    100% {
        transform: translateX(calc(100vw + 500px));
    }
}

.dashed-road {
    position: relative;
    margin-top: -2px;
    width: 100vw;
    height: 2px;
    /* Custom dashed line with adjustable spacing */
    background: repeating-linear-gradient(to right,
            red 0,
            red 20px,
            transparent 20px,
            transparent 40px);
    z-index: 1;
}

[data-theme="dark"] .dashed-road {
    background: repeating-linear-gradient(to right,
            var(--primary-color) 0,
            var(--primary-color) 20px,
            transparent 20px,
            transparent 40px);
    filter: invert(1) hue-rotate(0deg);
}

[data-theme="light"] .dashed-road {
    background: repeating-linear-gradient(to right,
            var(--primary-color) 0,
            var(--primary-color) 20px,
            transparent 20px,
            transparent 40px);
}

.hearthcomponent {
    margin-top: 10px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border: 2px none red;
    gap: 10px;
    margin-bottom: 20px;
    touch-action: none;
}

.hearthcomponent iframe {
    border: 2px none red;
    top: 0;
    touch-action: none;
    /* filter: invert(1) hue-rotate(-240deg) saturate(1.75); */
}


/* 
[data-theme="dark"] .hearthcomponent iframe {
    filter: invert(1) hue-rotate(-240deg) saturate(1.75);
} */

.choosefinance {
    min-height: 60px;
    justify-content: center;
    align-items: center;
    display: flex;
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    z-index: 15;
}

.choosefinancebg {
    width: 100vw;
    height: 60px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
}

[data-theme="dark"] .choosefinancebg {
    background-color: #434343;
}

[data-theme="light"] .choosefinancebg {
    background-color: #d1d1d1;
}

[data-theme="dark"] .choosefinancebg p {
    color: var(--light-color);
}

[data-theme="light"] .choosefinancebg p {
    color: var(--dark-color);
}

.choosefinancebg p {
    color: white;
    font-family: 'SFProBold';
    font-size: 17px;
    margin: 0;
    padding: 0;
    text-align: center;
    margin-top: 0px;
}

.choosepricing {
    height: fit-content;
    min-height: 40px;
    align-items: center;
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: space-between;
    z-index: 1;
    text-align: center;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    z-index: 15;
    gap: 0;
    padding: 40px 40px 0 40px;
    box-sizing: border-box;
    overflow: visible;

}

.choosepricingbg {
    width: 100vw;
    height: fit-content;
    min-height: 40px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    padding: 10px 40px;
    box-sizing: border-box;
    z-index: 5;
    cursor: pointer;
}

.pricing-arrow {
    transition: transform 0.3s ease;
}

[data-theme="dark"] .choosepricingbg {
    background-color: var(--primary-color);
}

[data-theme="light"] .choosepricingbg {
    background-color: var(--primary-color);
}

[data-theme="dark"] .choosepricingbg p {
    color: white;
}

[data-theme="light"] .choosepricingbg p {
    color: white;
}

.choosepricingbg p {
    color: white;
    font-family: 'SFProBold';
    font-size: 17px;
    margin: 0;
    padding: 0;
    text-align: center;
    margin-top: 0px;
}

@media (max-width: 768px) {
    .page3 {
        overflow: hidden;
    }
}

/* Carousel Styles */
.carousel {
    position: relative;
    width: 100vw;
    max-width: 400px;
    min-height: 500px;
    height: auto;
    margin: 0 auto;
    overflow: visible;
    touch-action: pan-y pinch-zoom;
    border-radius: 0px;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.1));
    z-index: 0;
    padding-top: 20px;
}

/* Hide initial panel content before JS loads */
.carousel .panel1,
.carousel .panel2,
.carousel .panel3 {
    display: none !important;
}



/* Ensure no margin from parent containers */
.choosepricing+.carousel {
    margin-top: 0;
}

#carousel {
    margin-top: 0 !important;
}

.carousel-wrapper {
    position: relative;
    height: 100%;
    min-height: 500px;
    width: 100%;
    overflow: visible;
    z-index: 1;
}

.carousel-container {
    display: flex;
    width: 100%;
    min-height: 500px;
    height: auto;
    transition: transform 0.3s ease-out;
    gap: 20px;
    position: relative;
    z-index: 2;
    overflow: visible;
}

.carousel-container.dragging {
    transition: none;
}

.carousel-panel {
    min-width: 340px;
    width: 100%;
    flex: 0 0 100%;
    min-height: 500px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    user-select: none;
    font-family: 'SFProBold', sans-serif;
    font-size: 15px;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: visible;
}

[data-theme="dark"] .carousel-panel {
    background: #1d1d1dbd;
    color: var(--light-color);
}


.select-panel-button {
    background: rgba(255, 255, 255, 0.2);
}

.select-panel-button:hover {
    background: rgba(255, 255, 255, 0.4);
}

[data-theme="dark"] .select-panel-button {
    background: #2a2a2a38;
    color: var(--light-color);
}

[data-theme="dark"] .select-panel-button:hover {
    background: #31313197;
    color: var(--light-color);
}

/* All panel content offset */
.panel-content {
    transform: translateY(0px);
    position: relative;
    z-index: 100;
}

/* Panel content typography */
.carousel-panel h2 {
    font-size: 17px;
    font-weight: normal;
}

.carousel-panel p {
    font-size: 14px;
    font-weight: 300;
}

.carousel-indicators {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    width: auto;
    min-width: 0;
    margin-bottom: 15px;
}

.carousel-indicator {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(128, 128, 128, 0.5);
    cursor: pointer;
    transition: background 0.3s ease;
    flex-shrink: 0;
}

[data-theme="dark"] .carousel-indicator {
    background: rgba(255, 255, 255, 0.5);
}

[data-theme="light"] .carousel-indicator {
    background: rgba(0, 0, 0, 0.5);
}

.carousel-indicator.active {
    background: #FF4444;
}

[data-theme="dark"] .carousel-indicator.active {
    background: var(--light-color);
}

[data-theme="light"] .carousel-indicator.active {
    background: #ffffff;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-150%);
    background: transparent;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 18px;
    z-index: 10;
    transition: background 0.3s ease;
    display: none;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.carousel-nav:hover {
    background: transparent;
}

.carousel-nav.prev {
    left: -40px;
}

.carousel-nav.next {
    right: -40px;
}

.carousel-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .carousel {
        max-width: 340px;
    }

    .carousel-panel {
        min-width: 340px;
        font-size: 12.5px;
        padding: 0;
    }

    .carousel-nav.prev {
        left: -30px;
    }

    .carousel-nav.next {
        right: -30px;
    }
}

.careers-svg {
    width: 80%;
    max-width: 300px;
    height: 100%;
    opacity: 1;
    padding-bottom: 20px;
}

/* .careers-svg-bg {
    fill: #1a0404;
} */

[data-theme="dark"] .careers-svg-bg {
    fill: var(--light-color);
}

[data-theme="light"] .careers-svg-bg {
    fill: var(--dark-color);
}

.hearth-logo {
    height: 32px;
    margin-top: 30px;
    margin-bottom: 0px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border: 2px none red;
}

[data-theme="dark"] .hearth-logo path {
    fill: #d9d9d9 !important;
}

[data-theme="light"] .hearth-logo path {
    fill: #000 !important;
}

.hearth-logo path[fill="#A33035"] {
    fill: #FF4444 !important;
}

.pricing-selector {
    position: relative;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin-top: 0px;
    margin-bottom: 0px;
    overflow: visible;
    transform-origin: top;
    transition: height 0.3s ease;
    border: 2px none red;
}

.pricing-selectorbg {
    position: absolute;
    width: 100vw;
    height: fit-content;
    min-height: 100%;
    background: radial-gradient(ellipse 80% 40% at bottom,
            #ff503d 0%,
            #ff4444 100%);
    background: -webkit-radial-gradient(ellipse 80% 40% at bottom,
            #ff503d 0%,
            #ff4444 100%);

    background: -moz-radial-gradient(ellipse 80% 40% at bottom,
            #ff503d 0%,
            #ff4444 100%);
    overflow: visible;
    filter: contrast(1);
}

@media (max-width: 768px) {
    .pricing-selector {
        overflow: visible;
    }
}


.home-svg {
    max-width: 185px;
    max-height: 185px;
    border: 2px none red;
    margin-top: 0px;
    filter: saturate(1);
}

/* Share Pricing Link Styles - matching pricing-back-button */
.share-pricing-link {
    position: absolute;
    top: 30px;
    right: 0px;
    padding: 12px 20px;
    background: var(--light-color);
    color: var(--dark-color);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.share-pricing-link:hover {
    background: #ffffff;
}

/* Theme-specific adjustments for share link - matching pricing-back-button */
[data-theme="light"] .share-pricing-link {
    background: var(--dark-color);
    color: var(--light-color);
}

[data-theme="light"] .share-pricing-link:hover {
    background: #000000;
}



/* Copy success animation */
.share-pricing-link.copied {
    animation: copySuccess 0.6s ease;
}

@keyframes copySuccess {
    0% {
        transform: scale(1);
        background: var(--light-color);
    }

    50% {
        transform: scale(1.05);
        background: #67AF53;
        color: white;
    }

    100% {
        transform: scale(1);
        background: var(--light-color);
    }
}

/* Checkout Styles */
.checkout-content {
    width: 95%;
    max-width: 1050px;
    margin: 0 auto;
    padding: 20px;
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    gap: 0px;
}

@media (max-width: 768px) {
    .checkout-content {
        width: 95%;
        padding: 10px;
        padding-bottom: 40px;
        gap: 0px;
    }
}

/* Order Summary Styles */
.order-summary {
    background: var(--light-color);
    border-radius: 12px;
    padding: 30px;
    box-sizing: border-box;
}

[data-theme="dark"] .order-summary {
    background: var(--dark-color);
}

.summary-title {
    font-family: 'SFProBold', sans-serif;
    font-size: 20px;
    margin: 0 0 25px 0;
    color: var(--dark-color);
    text-align: center;
}

[data-theme="dark"] .summary-title {
    color: var(--light-color);
}

.summary-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.package-info {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .package-info {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.package-title {
    font-family: 'SFProBold', sans-serif;
    font-size: 18px;
    margin: 0 0 8px 0;
    color: var(--primary-color);
}

.package-description {
    font-family: 'SFProRegular', sans-serif;
    font-size: 14px;
    color: var(--dark-color);
    opacity: 0.8;
    margin: 0;
}

[data-theme="dark"] .package-description {
    color: var(--light-color);
}

.service-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.detail-label {
    font-family: 'SFProRegular', sans-serif;
    font-size: 14px;
    color: var(--dark-color);
    opacity: 0.7;
}

[data-theme="dark"] .detail-label {
    color: var(--light-color);
}

.detail-value {
    font-family: 'SFProBold', sans-serif;
    font-size: 14px;
    color: var(--dark-color);
}

[data-theme="dark"] .detail-value {
    color: var(--light-color);
}

.price-section {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .price-section {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.price-item.total {
    border-top: 2px solid var(--primary-color);
    padding-top: 15px;
    margin-top: 10px;
}

.price-label {
    font-family: 'SFProRegular', sans-serif;
    font-size: 16px;
    color: var(--dark-color);
}

[data-theme="dark"] .price-label {
    color: var(--light-color);
}

.price-value {
    font-family: 'SFProBold', sans-serif;
    font-size: 16px;
    color: var(--primary-color);
}

.price-item.total .price-value {
    font-size: 20px;
}

/* Customer Form Styles */
.customer-form {
    background: transparent;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0);
    box-sizing: border-box;
}

[data-theme="dark"] .customer-form {
    background: transparent;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0);
}

.form-title {
    font-family: 'SFProBold', sans-serif;
    font-size: 24px;
    margin: 0 0 25px 0;
    color: var(--dark-color);
    text-align: center;
}

[data-theme="dark"] .form-title {
    color: var(--light-color);
}

#checkout-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: 'SFProBold', sans-serif;
    font-size: 14px;
    color: var(--dark-color);
}

[data-theme="dark"] .form-group label {
    color: var(--light-color);
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-family: 'SFProRegular', sans-serif;
    font-size: 10px;
    background: var(--light-color);
    color: var(--dark-color);
    transition: all 0.3s ease;
    box-sizing: border-box;
    width: 100%;
}

[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group textarea {
    border-color: rgba(255, 255, 255, 0.1);
    background: var(--dark-color);
    color: var(--light-color);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 68, 68, 0.1);
}

.form-group input.error,
.form-group textarea.error {
    border-color: #FF4444;
    box-shadow: 0 0 0 3px rgba(255, 68, 68, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* Payment Section Styles */
.payment-section {
    background: var(--light-color);
    border-radius: 12px;
    padding: 30px;
    box-sizing: border-box;
}

[data-theme="dark"] .payment-section {
    background: var(--dark-color);
}

.payment-title {
    font-family: 'SFProBold', sans-serif;
    font-size: 24px;
    margin: 0 0 25px 0;
    color: var(--dark-color);
    text-align: center;
}

[data-theme="dark"] .payment-title {
    color: var(--light-color);
}

.payment-methods {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .payment-methods {
        flex-direction: column;
        gap: 20px;
    }
}

.payment-method-section {
    flex: 1;
    padding: 20px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    background: var(--light-color);
}

[data-theme="dark"] .payment-method-section {
    border-color: rgba(255, 255, 255, 0.1);
    background: var(--dark-color);
}

.payment-method-section:hover {
    border-color: var(--primary-color);
    background: rgba(255, 68, 68, 0.05);
}

.payment-method-title {
    font-family: 'SFProBold', sans-serif;
    font-size: 18px;
    margin: 0 0 20px 0;
    color: var(--dark-color);
    text-align: center;
}

[data-theme="dark"] .payment-method-title {
    color: var(--light-color);
}

.payment-method input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}

.payment-method label {
    font-family: 'SFProBold', sans-serif;
    font-size: 16px;
    color: var(--dark-color);
    cursor: pointer;
}

[data-theme="dark"] .payment-method label {
    color: var(--light-color);
}

.credit-card-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* PayPal Form Styles */
.paypal-form {
    margin-top: 0;
    padding: 0;
    border: none;
    border-radius: 8px;
    background: transparent;
}

[data-theme="dark"] .paypal-form {
    border: none;
    background: transparent;
}

/* PayPal SDK Integration Styles */
#paypal-button-container {
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;

}

/* Style PayPal Smart Payment Buttons */
#paypal-button-container {
    text-align: center;
}

#paypal-button-container .paypal-button {
    margin: 10px 0;
}

.paypal-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60px;
    max-width: 100%;
    margin: 0 auto;
    padding: 15px;
    border-radius: 8px;
}

.paypal-container iframe {
    border: none;
    border-radius: 4px;
}

/* PayPal button styling */
#paypal-container-L9RMWB5NH6XFN {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

/* Style PayPal amount input field */
#paypal-container-L9RMWB5NH6XFN input[type="number"] {
    font-family: 'SFProBold', sans-serif;
    font-size: 16px;
    color: var(--primary-color);
    background-color: rgba(255, 68, 68, 0.1) !important;
    border: 2px solid rgba(255, 68, 68, 0.3) !important;
    border-radius: 6px;
    padding: 8px 12px;
    text-align: center;
    font-weight: bold;
}

#paypal-container-L9RMWB5NH6XFN input[type="number"]:focus {
    outline: none;
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 2px rgba(255, 68, 68, 0.2);
}

/* Hide specific PayPal elements */
#paypal-container-L9RMWB5NH6XFN .amount-container {
    display: none !important;
}

#paypal-container-L9RMWB5NH6XFN #desc-label {
    display: none !important;
}

/* Make PayPal form container shorter */
#paypal-container-L9RMWB5NH6XFN .form-container-L9RMWB5NH6XFN {
    min-height: auto !important;
    height: auto !important;
    max-height: 200px !important;
    padding: 10px !important;
    margin: 0 !important;
}

/* Style PayPal currency elements */
#paypal-container-L9RMWB5NH6XFN .currency-symbol,
#paypal-container-L9RMWB5NH6XFN .currency-label {
    font-family: 'SFProRegular', sans-serif;
    font-size: 14px;
    color: var(--dark-color);
}

[data-theme="dark"] #paypal-container-L9RMWB5NH6XFN .currency-symbol,
[data-theme="dark"] #paypal-container-L9RMWB5NH6XFN .currency-label {
    color: var(--light-color);
}

/* Payment method selection styling */
.payment-method input[type="radio"]:checked+label {
    color: var(--primary-color);
    font-weight: bold;
}

/* Checkout Actions Styles */
.checkout-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .checkout-actions {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.back-btn,
.checkout-btn {
    padding: 20px 30px;
    border: none;
    border-radius: 8px;
    font-family: 'SFProBold', sans-serif;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.back-btn {
    background: transparent;
    color: var(--dark-color);
    border: 2px solid var(--dark-color);
}

[data-theme="dark"] .back-btn {
    color: var(--light-color);
    border-color: var(--light-color);
}

.back-btn:hover {
    background: var(--dark-color);
    color: var(--light-color);
}

[data-theme="dark"] .back-btn:hover {
    background: var(--light-color);
    color: var(--dark-color);
}

.checkout-btn {
    background: var(--primary-color);
    color: white;
    width: 100%;
    max-width: none;
}

.checkout-btn:hover {
    background: #E63939;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 68, 68, 0.3);
}

.checkout-btn:active {
    transform: translateY(0);
}

.checkout-btn.disabled {
    background: #cccccc;
    color: #666666;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.checkout-btn.disabled:hover {
    background: #cccccc;
    transform: none;
    box-shadow: none;
}

@media (max-width: 768px) {
    .checkout-actions {
        flex-direction: column;
        gap: 15px;
    }

    .checkout-btn {
        max-width: none;
    }
}

/* Field Error Styles */
.field-error {
    color: #FF4444;
    font-size: 12px;
    margin-top: 4px;
    font-family: 'SFProRegular', sans-serif;
}

/* Language Visibility */
#english,
#spanish {
    display: none;
}

[data-language="english"] #english {
    display: block;
}

[data-language="spanish"] #spanish {
    display: block;
}

/* Responsive Design */
@media (max-width: 480px) {
    .checkout-content {
        width: 95%;
        padding: 5px;
        padding-bottom: 80px;
    }

    .order-summary,
    .customer-form,
    .payment-section {
        padding: 15px;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
    }
}

.summary-title,
.form-title,
.payment-title {
    font-size: 20px;
}

.package-title {
    font-size: 18px;
}

.back-btn,
.checkout-btn {
    padding: 20px 24px;
    font-size: 14px;
}

/* Checkout Step Styles */
.checkout-step {
    width: 100%;
    margin-top: 0px;
}

.checkout-step.disabled .payment-section input,
.checkout-step.disabled .payment-section textarea,
.checkout-step.disabled .payment-section button,
.checkout-step.disabled .paypal-container,
.checkout-step.disabled .paypal-container * {
    opacity: 0.5;
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
}



.step-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--light-color);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0);
}

[data-theme="dark"] .step-header {
    background: transparent;
}

.cart-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--dark-color);
}

[data-theme="dark"] .cart-icon {
    color: var(--light-color);
}

.cart-icon svg {
    width: 20px;
    height: 20px;
}

.step-info {
    flex: 1;
    position: relative;
}

.step-status {
    display: flex;
    align-items: center;
    margin-left: auto;
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
}

.status-text {
    font-family: 'SFProRegular', sans-serif;
    font-size: 14px;
    color: #666;
    font-style: italic;
}

[data-theme="dark"] .status-text {
    color: #999;
}

.step-title {
    font-family: 'SFProBold', sans-serif;
    font-size: 16px;
    margin: 0;
    color: var(--dark-color);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
}

[data-theme="dark"] .step-title {
    color: var(--light-color);
}

.step-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Next Button Styles */
.next-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-family: 'SFProBold', sans-serif;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--primary-color);
    color: white;
    flex: 1;
    max-width: 200px;
}

.next-btn:hover {
    background: #E63939;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 68, 68, 0.3);
}

.next-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .checkout-step {
        margin-top: 20px;
    }

    .step-header {
        padding: 15px;
        margin-bottom: 20px;
    }

    .step-title {
        font-size: 18px;
    }

    .cart-icon {
        width: 35px;
        height: 35px;
    }

    .cart-icon svg {
        width: 18px;
        height: 18px;
    }

    /* Hide status text in Step 2 on mobile */
    .checkout-step .step-status {
        display: none;
    }
}

@media (max-width: 480px) {
    .checkout-step {
        margin-top: 15px;
    }

    .step-header {
        padding: 12px;
        margin-bottom: 15px;
    }

    .step-title {
        font-size: 16px;
    }

    .cart-icon {
        width: 30px;
        height: 30px;
    }

    .cart-icon svg {
        width: 16px;
        height: 16px;
    }
}

/* Collapsible Step Header */
.step-header.collapsible {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.step-header.collapsible:hover {
    background: rgba(255, 68, 68, 0.1);
}

[data-theme="dark"] .step-header.collapsible:hover {
    background: rgba(55, 55, 55, 0.5);
}

.expand-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    color: var(--dark-color);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] .expand-icon {
    color: var(--light-color);
}

.expand-icon svg {
    width: 16px;
    height: 16px;
}

.expand-icon.expanded {
    transform: rotate(90deg);
}

/* Collapsible Content */
.step-content.collapsible {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
}

.step-content.collapsible.expanded {
    max-height: 2000px;
}

@media (max-width: 768px) {
    .expand-icon {
        width: 25px;
        height: 25px;
    }

    .expand-icon svg {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 480px) {
    .expand-icon {
        width: 20px;
        height: 20px;
    }

    .expand-icon svg {
        width: 12px;
        height: 12px;
    }
}

/* Order Confirmation Icon */
.order-confirmation-icon {
    width: 120px;
    height: 98px;
    max-width: 100%;
    height: auto;
}

/* Responsive sizing for mobile */
@media (max-width: 768px) {
    .order-confirmation-icon {
        width: 80px;
        height: 65px;
    }
}

@media (max-width: 480px) {
    .order-confirmation-icon {
        width: 60px;
        height: 49px;
    }
}

.sticky-footer-mascot {
    width: 300px;
    height: 180px;
    border: 2px none green;
    z-index: 1000;
    position: absolute;
    right: -200px;
    top: -180px;
    background-image: url('https://gitlab.com/19rose8-dev-team/airunion/-/raw/media/media/AUmascot1.png?ref_type=heads');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
}

/* Hire a Technician CTA Button */
.homecta {
    position: relative;
    width: 90%;
    height: 80px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
    margin: 0px auto;
    margin-top: 5px;
    /* Force the button size */
    max-width: 500px;
    max-height: 50px;
    /* Link styling */
    text-decoration: none;
    color: white;
    transition: transform 0.3s ease, all 0.1s ease;
    box-shadow: 0px 0px 20px rgba(146, 146, 146, 0);
    background-color: var(--primary-color);
    border: 2px none var(--light-color);
    box-sizing: border-box;
}

/* Hide gradient background by default */
.homecta .gradient-bg {
    opacity: 0.25;
    transition: opacity 0.4s ease;
    --circle-size: 80% !important;
}

@media (max-width: 768px) {
    .homecta .gradient-bg {
        opacity: .75;
    }
}

/* Disable gradient animations for homecta to prevent background movement */
.homecta .gradient-bg .g1,
.homecta .gradient-bg .g2,
.homecta .gradient-bg .g3,
.homecta .gradient-bg .g4,
.homecta .gradient-bg .g5 {
    animation: none !important;
}

@media (max-width: 768px) {
    .homecta .gradient-bg {
        --circle-size: 130% !important;
    }
}

/* Show gradient background on hover */
.homecta:hover .gradient-bg {
    opacity: 1;
}

.homecta:hover {
    box-shadow: 0px 0px 20px rgba(255, 46, 46, 0.25);
    color: white;
    border: 1.5px none var(--light-color);
}





.homecta .cta-text {
    position: relative;
    z-index: 1;
    color: white;
    font-family: 'Outfit', 'SFProBold', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 1.2px;
    user-select: none;
    text-transform: uppercase;
    /* Premium text styling */
    transition: all 0.3s ease;
    letter-spacing: .6;
}

.homecta:hover .cta-text {
    color: white !important;
}

.homecta:hover .cta-text span {
    color: white !important;
}