@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* Reset default margins and padding */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

/* Reset box-sizing */
*, *::before, *::after {
    box-sizing: border-box;
}

/* Remove default list styles */
ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Remove default text decoration */
a {
    text-decoration: none;
    color: inherit;
}

/* Remove default button styles */
button {
    border: none;
    margin: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
}

/* Remove default input styles */
input, textarea, select {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
}

body{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 2;
    color: #333;
}

.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.header-section-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    top: 0;
    z-index: 100;
    background-color: #fff;
    padding: 15px 0;
    transition: transform 0.3s ease-in-out;
    transform: translateY(-100%);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header-text-tel {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #1e40af;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
}

.header-text-tel-icon > svg {
    width: 20px !important;
    height: 20px !important;
}

.header-text-tel-icon > a {
    transition: all 0.3s ease;
}

.header-text-tel-icon > a:hover {
    opacity: 0.8;
}

.header-text-tel-icon {
    display: flex;
    align-items: center;
    gap: .5rem;
}
  
.header-text-tel-link {
    background: #f56c42;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.header-text-tel-link:hover {
    background: #e55a35;
    transform: translateY(-1px);
    color: white;
}

.header-text-tel-number {
    font-weight: 700;
    white-space: nowrap;
}

@media (max-width: 376px) {
    .header-text-tel-number {
        font-size: 12px !important;
    }
}

/*header*/
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-text {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-image-main-img {
    width: 120px;
    object-fit: contain;
}

.header-image-main-link {
    display: flex;
    align-items: center;
}

.site-main {
    flex: 1 1 0%;
}

.available-pill-header {
    display: flex;
    align-items: center;
    gap: 5px;
    background-color: #059669;
    color: #fff;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    height: 100%;
    min-height: 10px;
}

.pulse-circle {
    width: 7px;
    height: 7px;
    background: #fff;
    border-radius: 50%;
    position: relative;
    animation: intensePulse 1.5s infinite cubic-bezier(0.4, 0, 0.6, 1);
}

@keyframes intensePulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.4;
    }
    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

.container{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    color: #fff;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

.hero-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #d4bbff;
    color: #333;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.hero-button:hover {
    background-color: #c4a5ff;
    transform: translateY(-2px);
}

/* footer */
.footer-wrapper {
    flex-shrink: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-disclaimer {
    padding: 30px 0;
}

.footer-disclaimer-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 2;
    text-align: left;
}

.site-footer {
    padding: 60px 0;
    background-color: #d4bbff;
}

.footer-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    padding: 20px 0;
}

.footer-menu a {
    font-size: 14px;
    font-weight: 600;
    line-height: 2;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #6339f3;
}

@media (max-width: 1024px) {
    .footer-menu {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .footer-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .hero-button {
        padding: 12px 24px;
    }

    div.terms-content h1 {
        font-size: 24px;
        line-height: 1.2;
    }

    .terms-content h2 {
        font-size: 20px;
        line-height: 1.2;
    }

    .container {
        max-width: 100%;
        padding: 0 10px;
    }

    .footer-wrapper {
        flex-direction: column;
    }

    .site-footer {
        padding: 10px;
        padding-top: 30px;
    }

    div.terms-content {
        padding: 10px;
    }

    .copyright {
        text-align: center;
        width: 100%;
        padding-top: 30px;
        font-size: 12px;
    }
}   

@media (max-width: 480px) {
    .available-pill-header {
        font-size: 10px;
        margin-right: 5px;
    }

    .header-text-tel {
        font-size: 14px;
    }

    .header-image-main-img {
        width: 80px !important;
    }

    .header-content {
        flex-direction: row;
        gap: 12px;
        text-align: left;
        padding: 12px 0;
    }
}


@media (max-width: 360px) {
    .available-pill-header {
        display: none;
    }
}
