@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,600;1,14..32,600&family=Tinos:wght@400;700&family=Inter:opsz@14..32&family=Inter:opsz,wght@14..32,800&display=swap');

*{
    margin: 0;
    padding: 0;
}
/* VARIABLES */
:root{
    --color-primary: #48A6A7;
    --color-text: #1C1C1E;
    --color-lighterText: #434347;
    --color-altText: #ffffff;
    --color-accent: #FFC857;
    --color-bronze: #CD7F32;
    --color-silver: #C4C4C4;
    --color-gold: #EFBF04;
    --color-platinum: #D9D9D9;
    --shadow-light: 0 4px 20px rgba(72, 166, 167, 0.1);
    --shadow-strong: 0 8px 30px rgba(0, 0, 0, 0.3);
}

a{
  text-decoration: none;
}

body{
    font-family: "Inter", sans-serif;
    display: flex;
    flex-direction: column;
}
.nav-bar{
    background: var(--color-primary);
    width: 100vw;
    height: 10vh;
    min-height: 90px;
    position: sticky;
    top: 0%;
    box-shadow: var(--shadow-strong);
    z-index: 900;
}

#company-name{
    width: fit-content;
    font-family: "Tinos", serif;
    font-weight: 600;    
    color: var(--color-altText);
    margin-left: 8rem;
    margin-top: 0.5rem;
}
#company-name a{
    color: var(--color-altText);
}
#company-name #gcva{
    font-size: 2.5rem;
}
#company-name #service-provider{
    font-size: 1rem;
    text-align: center;
}

/*HAMBURGER*/

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1001;
    transition: transform 0.3s ease;
    position: absolute;
    left: 1rem;
    top: 1.7rem;
    z-index: 1;
}

.hamburger:hover {
    transform: scale(1.1);
}



.bars {
    width: 25px;
    height: 3px;
    background: var(--color-altText);
    margin: 3px 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
    border-radius: 10px;
    z-index: 1;

}

.hamburger-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 60vw;
    height: 100vh;
    background: var(--color-altText);
    transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 5px 0 20px rgba(0, 0, 0, 0.3);
}

.hamburger-menu.active {
    left: 0;
}

.dropdown-content {
    width: 60vw;
    height: 100%;
    background: var(--color-altText);
    font-family: "Inter", sans-serif;
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    color: var(--color-primary);
    position: static;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    z-index: 99;
}

.dropdown-content a {
    padding: 20px 30px;
    display: block;
    border-right: 4px solid transparent;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.3s ease;
    text-align: center;
    color: var(--color-text);
}

.dropdown-content a:before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-primary);
}



.dropdown-content a:hover {
    border-right-color: var(--color-primary);
    transform: translateX(-10px);
}

.dropdown-content a:hover:before {
    right: 100%;
}

/* Menu Items Animation */
.hamburger-menu.active .dropdown-content a {
    opacity: 1;
    transform: translateX(0);
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 80vw;
    width: 20vw;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.desktop-nav{
    display: none;
}

/*HAMBURGER*/

.nav-button{
    position: absolute;
    left: 78%;
    top: 1.3rem;
}
.nav-button button:hover{
    background: var(--color-accent);
}
.nav-button button{
    width: 5rem;
    height: 2.5rem;
    border-radius: 30px;
    border: none;
    box-shadow: var(--shadow-light);
    background: var(--color-altText);
}
.nav-button a{
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    text-decoration: none;
    color: var(--color-primary);
}

.hero{
    position: relative;
    height: 100vh;
}
.hero-content{
    position: relative;
    height: 100%;
}
.hero-content img{
    width: 100vw;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.hero-content h1{
    width: 20rem;
    position: relative;
    font-family: "Inter", sans-serif;
    font-weight: 800;
    font-size: clamp(1.5rem, calc(12vw + 1rem), 15rem);
    color: var(--color-altText);
    text-align: start;
    top: -97vh;
    left: 5vw;
}
.hero-content p{
    width:10rem;
    position: relative;
    font-family: "Inter", sans-serif;
    font-weight: 800;
    font-size: clamp(0.25rem, calc(3vw + 1rem), 4rem);
    color: var(--color-altText);
    text-align: start;
    top: -95vh;
    left: 5vw;
}
.cta-buttons {
    width: fit-content;
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
    opacity: 0;
    animation: slideUp 1s ease forwards 0.9s;
    position: relative;
    top: -90vh;
    left: 1rem;
}
.cta-buttons .btn-primary, .btn-secondary {
    width: 10rem;
    padding: 15px 30px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-decoration: none;
    text-align: center;
}
.cta-buttons .btn-primary {
    background: var(--color-accent);
    color: var(--color-text);
    box-shadow: 0 4px 15px rgba(255, 200, 87, 0.3);
}
.cta-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 200, 87, 0.4);
}
.cta-buttons .btn-secondary {
    background: transparent;
    color: var(--color-altText);
    border: 2px solid var(--color-altText);
}
.cta-buttons .btn-secondary:hover {
    background: var(--color-altText);
    color: var(--color-primary);
    transform: translateY(-3px);
}
@keyframes slideUp {
    to {
    opacity: 1;
    transform: translateY(0);
        }
        from {
    opacity: 0;
    transform: translateY(30px);
    }
}

.features{
    position: relative;
    padding: 100px 20px
}
.container{
    position: relative;
    margin: 0 auto;
}
.section-title{
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    transition: all 0.3s;
    text-decoration: none;
    text-align: center;
}
.section-subtitle{
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    transition: all 0.3s;
    text-decoration: none;
    text-align: center;
    margin-top: 1rem;
}
.features-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}
.feature-card {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(72, 166, 167, 0.1), transparent);
    transition: all 0.6s ease;
}
.feature-card:hover::before {
    left: 100%;
}
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}
.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--color-altText);
    position: relative;
    z-index: 2;
}
.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--color-text);
    position: relative;
    z-index: 2;
}
.feature-card p {
    color: var(--color-lighterText);
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.services{
    position: relative;
    padding: 100px 20px;
    background: var(--color-primary);
}
.header h1{
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    transition: all 0.3s;
    text-decoration: none;
    text-align: center;
}
.header p{
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    transition: all 0.3s;
    text-decoration: none;
    text-align: center;
}
.tiers-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
    justify-items: center;
}
.tier-card {
    background: var(--color-altText);
    width: 260px;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.tier-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.tier-header {
    margin-bottom: 30px;
}
.tier-name {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    transition: all 0.3s;
    text-decoration: none;
    text-align: center;
    margin-bottom: 10px;
    color: var(--color-text);
}
.tier-price {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    transition: all 0.3s;
    text-decoration: none;
    text-align: center;
    margin-bottom: 5px;
}
.tier-additional{
    opacity: 0.7;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    transition: all 0.3s;
    text-decoration: none;
    text-align: center;
}
.tier-features, .tier-features .reim-analysis {
    list-style: none;
}
.tier-features li {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    transition: all 0.3s;
    text-decoration: none;
    text-align: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.reim-analysis i{
    font-size: 1.5rem;
}
.reim-analysis li{
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    transition: all 0.3s;
    text-decoration: none;
    text-align: center;
    margin-bottom: 5px;
    list-style: none;
    text-align: start;
    border: none;
    display: flex;
    align-items: center;
    justify-content: start;
}
.solutions {
    position: relative;
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.container {
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    text-align: center;
    color: var(--color-text);
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1s ease forwards 0.2s;
}

.section-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    text-align: center;
    color: var(--color-lighterText);
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1s ease forwards 0.4s;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.solution-card {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(72, 166, 167, 0.1);
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 1s ease forwards;
}

.solution-card:nth-child(1) { animation-delay: 0.1s; }
.solution-card:nth-child(2) { animation-delay: 0.2s; }
.solution-card:nth-child(3) { animation-delay: 0.3s; }
.solution-card:nth-child(4) { animation-delay: 0.4s; }
.solution-card:nth-child(5) { animation-delay: 0.5s; }
.solution-card:nth-child(6) { animation-delay: 0.6s; }
.solution-card:nth-child(7) { animation-delay: 0.7s; }
.solution-card:nth-child(8) { animation-delay: 0.8s; }
.solution-card:nth-child(9) { animation-delay: 0.9s; }

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(72, 166, 167, 0.1), transparent);
    transition: all 0.6s ease;
}

.solution-card:hover::before {
    left: 100%;
}

.solution-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-strong);
    border-color: var(--color-primary);
}

.solution-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary), #5bb5b6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--color-altText);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.solution-card:hover .solution-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--color-accent), #ffb347);
}

.solution-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-text);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.solution-card:hover h3 {
    color: var(--color-primary);
}

.solution-card p {
    color: var(--color-lighterText);
    line-height: 1.7;
    position: relative;
    z-index: 2;
    font-size: 0.95rem;
}

.solution-cta {
    margin-top: 25px;
    padding: 12px 25px;
    background: transparent;
    border: 2px solid var(--color-primary);
    border-radius: 25px;
    color: var(--color-primary);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.solution-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-primary);
    transition: all 0.3s ease;
    z-index: -1;
}

.solution-cta:hover::before {
    left: 0;
}

.solution-cta:hover {
    color: var(--color-altText);
    transform: translateY(-2px);
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
    from {
        opacity: 0;
        transform: translateY(30px);
    }
}

.cta-section{
    position: relative;
    padding: 100px 20px
}
.cta-content{
    text-align: center;
}
.cta-content h2{
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    transition: all 0.3s;
    text-decoration: none;
    margin-bottom: 5px;
}
.cta-content p{
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1em;
    transition: all 0.3s;
    text-decoration: none;
    margin-bottom: 5px;
}
.cta-content .btn-primary{
    width: 10rem;
    padding: 15px 30px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-decoration: none;
    text-align: center;
    background: var(--color-accent);
    color: var(--color-text);
    box-shadow: 0 4px 15px rgba(255, 200, 87, 0.3);
    display: inline-block;
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1s ease forwards 0.9s;
}
.cta-content .btn-primary:hover {
    transform: translateY(-30px);
    box-shadow: 0 8px 25px rgba(255, 200, 87, 0.4);
}

.footer{
    position: relative;
    padding: 80px 20px;
    background-color: var(--color-primary);
}
.footer-content{
    display: flex;
    flex-direction: column;
}
.brand h1{
    font-family: "Tinos", serif;
    font-weight: 600;
    font-size: 6rem;
    color: var(--color-altText);
    text-align: center;
}
.brand h2{
    margin-top: -1rem;
    font-family: "Tinos", serif;
    font-weight: 600;
    font-size: 2rem;
    color: var(--color-altText);
    letter-spacing: 0.24rem;
    text-align: center;
}
.brand a{
    text-align: center;
    color: var(--color-altText);
    margin-bottom: 1rem;
}
.contact-section{
    text-align: start;
}
i{
    font-size: 2rem;
}
.footer-section h3{
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--color-altText);
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.footer-section p{
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1rem;
}
.footer-section a{
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-altText);

}  
#service-plans h3{
    font-family: 'Inter', sans-serif;
    font-weight: 00;
    font-size: 1.5rem;
    color: var(--color-altText);
    margin-top: 1rem;
    margin-bottom: 1rem;
}
#service-plans a{
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight:600;
    font-size: 1rem;
    color: var(--color-altText);
}

.footer-section h3::after,
#service-plans h3::after {
    content: '';
    display: block;
    width: 4rem;
    height: 3px;
    background: var(--color-accent);
    margin: 0.5rem 0 1rem 0;
    border-radius: 2px;
}


@media (orientation: landscape) and (min-width: 768px){
    .nav-bar{
        height: 20vh;
    }
    #gcva{
        position: absolute;
        left: 1rem;
    }
    #service-provider{
        position: absolute;
        top: 3rem;
        left: 1rem;
    }
    .hamburger{
        display: none;
    }
    .desktop-nav{
        width: fit-content;
        display: block;
        text-decoration: none;
        font-family: 'Inter', sans-serif;
        font-weight:600;
        font-size: 1rem;
        color: var(--color-altText);
        position: relative;
        left: 40vw;
        padding: 1.3rem 2rem;
    }
    .desktop-nav a{
        padding: 0rem 1rem;
        text-decoration: none;
        font-family: 'Inter', sans-serif;
        font-weight:600;
        font-size: 1rem;
        color: var(--color-altText);
    }
    .nav-button{
        top: 1.2rem;
        left: 85vw;
    }
    .nav-button button{
        width: 7rem;
    }
    .hero-content h1{
        width: 30rem;
        font-size: clamp(1.5rem, calc(3vw + 1rem), 15rem);
    }
    .hero-content p{
        width: 20rem;
        font-size: clamp(0.25rem, calc(1vw + 1rem), 4rem);
    }

    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 5px;
        justify-content: center;
        opacity: 0;
        animation: slideUp 1s ease forwards 0.9s;
        position: relative;
        top: -90vh;
        left: 2.5rem;
    }
    .cta-buttons .btn-primary, .btn-secondary {
        width: 10rem;
        padding: 15px 30px;
        border-radius: 50px;
        font-family: 'Inter', sans-serif;
        font-weight: 600;
        font-size: 1rem;
        cursor: pointer;
        transition: all 0.3s ease;
        border: 2px solid transparent;
        text-decoration: none;
        text-align: center;
    }
    .cta-buttons .btn-primary {
        background: var(--color-accent);
        color: var(--color-text);
        box-shadow: 0 4px 15px rgba(255, 200, 87, 0.3);
    }
    .cta-buttons .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(255, 200, 87, 0.4);
    }
    .cta-buttons .btn-secondary {
        background: transparent;
        color: var(--color-altText);
        border: 2px solid var(--color-altText);
    }
    .cta-buttons .btn-secondary:hover {
        background: var(--color-altText);
        color: var(--color-primary);
        transform: translateY(-3px);
    }
    @keyframes slideUp {
        to {
        opacity: 1;
        transform: translateY(0);
            }
            from {
        opacity: 0;
        transform: translateY(30px);
        }
    }
    .header h1{
        font-family: 'Inter', sans-serif;
        font-weight: 800;
        font-size: 3rem;
        transition: all 0.3s;
        text-decoration: none;
        text-align: center;
    }
    .header p{
        font-family: 'Inter', sans-serif;
        font-weight: 400;
        font-size: 1.5rem;
        transition: all 0.3s;
        text-decoration: none;
        text-align: center;
    }
    .section-title{
        font-family: 'Inter', sans-serif;
        font-weight: 800;
        font-size: 2rem;
        transition: all 0.3s;
        text-decoration: none;
        text-align: center;
    }
    .section-subtitle{
        font-family: 'Inter', sans-serif;
        font-weight: 400;
        font-size: 1.2rem;
        transition: all 0.3s;
        text-decoration: none;
        text-align: center;
        margin-top: 1rem;
    }
    .footer{
        position: relative;
        padding: 40px 20px;
        background-color: var(--color-primary);
    }
    .footer-content{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-evenly;
    }
    .brand h1{
        font-family: "Tinos", serif;
        font-weight: 600;
        font-size: 5rem;
        color: var(--color-altText);
        text-align: center;
    }
    .brand h2{
        margin-top: 0rem;
        font-family: "Tinos", serif;
        font-weight: 600;
        font-size: 2rem;
        color: var(--color-altText);
        letter-spacing: 0rem;
        text-align: center;
    }
    .brand a{
        text-align: center;
        color: var(--color-altText);
        margin-bottom: 1rem;
    }
    .contact-section{
        text-align: start;
    }
    i{
        font-size: 2rem;
    }
    .footer-section h3{
        font-family: 'Inter', sans-serif;
        font-weight: 800;
        font-size: 1.5rem;
        color: var(--color-altText);
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    .footer-section p{
        font-family: 'Inter', sans-serif;
        font-weight: 800;
        font-size: 1rem;
    }
    .footer-section a{
        text-decoration: none;
        font-family: 'Inter', sans-serif;
        font-weight: 600;
        font-size: 1rem;
        color: var(--color-altText);

    }  
    #service-plans h3{
        font-family: 'Inter', sans-serif;
        font-weight: 00;
        font-size: 1.5rem;
        color: var(--color-altText);
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    #service-plans a{
        text-decoration: none;
        font-family: 'Inter', sans-serif;
        font-weight:600;
        font-size: 1rem;
        color: var(--color-altText);
    }

    .footer-section h3::after,
    #service-plans h3::after {
        content: '';
        display: block;
        width: 4rem;
        height: 3px;
        background: var(--color-accent);
        margin: 0.5rem 0 1rem 0;
        border-radius: 2px;
    }
}
@media (orientation: portrait) and (min-width: 768px){
    .nav-bar{
        height: 5.5vh;
    }
    #gcva{
        position: absolute;
        left: 1rem;
    }
    #service-provider{
        position: absolute;
        top: 3rem;
        left: 1rem;
    }
    .hamburger{
        display: none;
    }
    .desktop-nav{
        width: fit-content;
        display: block;
        text-decoration: none;
        font-family: 'Inter', sans-serif;
        font-weight:600;
        font-size: 1rem;
        color: var(--color-altText);
        position: relative;
        left: 40vw;
        padding: 1.5rem 2rem;
    }
    .desktop-nav a{
        padding: 0rem 1rem;
        text-decoration: none;
        font-family: 'Inter', sans-serif;
        font-weight:600;
        font-size: 1rem;
        color: var(--color-altText);
    }
    .nav-button{
        top: 1.4rem;
        left: 85vw;
    }
    .nav-button button{
        width: 7rem;
    }
    .hero-content h1{
        top: -90vh;
        width: 30rem;
        font-size: clamp(1.5rem, calc(10vw + 1rem), 15rem);

    }
    .hero-content p{
        top: -87vh;
        width: 20rem;
    }
    .hero-content img{
        height: 95vh;
    }
    .cta-buttons {
        width: fit-content;
        display: flex;
        flex-direction: column;
        gap: 20px;
        justify-content: center;
        opacity: 0;
        animation: slideUp 1s ease forwards 0.9s;
        position: relative;
        top: -80vh;
        left: 2.5rem;
    }
    .cta-buttons .btn-primary, .btn-secondary {
        width: 20rem;
        height: 3rem;
        padding-top: 25px;
        border-radius: 50px;
        font-family: 'Inter', sans-serif;
        font-weight: 800;
        font-size: 2rem;
        cursor: pointer;
        transition: all 0.3s ease;
        border: 2px solid transparent;
        text-decoration: none;
        text-align: center;
        top: 100%;
        
    }
    .cta-buttons .btn-primary {
        background: var(--color-accent);
        color: var(--color-text);
        box-shadow: 0 4px 15px rgba(255, 200, 87, 0.3);
    }
    .cta-buttons .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(255, 200, 87, 0.4);
    }
    .cta-buttons .btn-secondary {
        background: transparent;
        color: var(--color-text);
        border: 2px solid var(--color-altText);
    }
    .cta-buttons .btn-secondary:hover {
        background: var(--color-altText);
        color: var(--color-primary);
        transform: translateY(-3px);
    }
    @keyframes slideUp {
        to {
        opacity: 1;
        transform: translateY(0);
            }
            from {
        opacity: 0;
        transform: translateY(30px);
        }
    }
    .header h1{
        font-family: 'Inter', sans-serif;
        font-weight: 800;
        font-size: 4rem;
        transition: all 0.3s;
        text-decoration: none;
        text-align: center;
    }
    .header p{
        font-family: 'Inter', sans-serif;
        font-weight: 400;
        font-size: 1.5rem;
        transition: all 0.3s;
        text-decoration: none;
        text-align: center;
    }
    .tiers-container {
        display: grid;
        grid-template-columns: repeat(space-e, minmax(350px, 1fr));
        gap: 5px;
        margin-top: 40px;
        justify-items: center;
    }
    .footer{
        position: relative;
        padding: 40px 20px;
        background-color: var(--color-primary);
    }
    .footer-content{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-evenly;
    }
    .brand h1{
        font-family: "Tinos", serif;
        font-weight: 600;
        font-size: 5rem;
        color: var(--color-altText);
        text-align: center;
    }
    .brand h2{
        margin-top: 0rem;
        font-family: "Tinos", serif;
        font-weight: 600;
        font-size: 2rem;
        color: var(--color-altText);
        letter-spacing: 0rem;
        text-align: center;
    }
    .brand a{
        text-align: center;
        color: var(--color-altText);
        margin-bottom: 1rem;
    }
    .contact-section{
        text-align: start;
    }
    i{
        font-size: 2rem;
    }
    .footer-section h3{
        font-family: 'Inter', sans-serif;
        font-weight: 800;
        font-size: 1.5rem;
        color: var(--color-altText);
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    .footer-section p{
        font-family: 'Inter', sans-serif;
        font-weight: 800;
        font-size: 1rem;
    }
    .footer-section a{
        text-decoration: none;
        font-family: 'Inter', sans-serif;
        font-weight: 600;
        font-size: 1rem;
        color: var(--color-altText);

    }  
    #service-plans h3{
        font-family: 'Inter', sans-serif;
        font-weight: 00;
        font-size: 1.5rem;
        color: var(--color-altText);
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    #service-plans a{
        text-decoration: none;
        font-family: 'Inter', sans-serif;
        font-weight:600;
        font-size: 1rem;
        color: var(--color-altText);
    }

    .footer-section h3::after,
    #service-plans h3::after {
        content: '';
        display: block;
        width: 4rem;
        height: 3px;
        background: var(--color-accent);
        margin: 0.5rem 0 1rem 0;
        border-radius: 2px;
    }
}
@media (orientation: landscape) and (min-width: 1024px){
    .nav-bar{
        height: 10vh
    }
    #gcva{
        position: absolute;
        top: 0.8rem;
        left: 1rem;
    }
    #service-provider{
        position: absolute;
        top: 3.4rem;
        left: 1.1rem;
    }
    .hamburger{
        display: none;
    }
    .desktop-nav{
        width: fit-content;
        display: block;
        text-decoration: none;
        color: var(--color-altText);
        position: absolute;
        
        left: min( calc(100vw - 90px), 40%);
        padding: 1.3rem 2rem;
    }
    .desktop-nav a{
        padding: 0rem 1rem;
        text-decoration: none;
        font-family: 'Inter', sans-serif;
        font-weight:600;
        font-size: 1.5rem;
        color: var(--color-altText);
    }
    .nav-button{
        top: 1.1rem;
        left: 85vw;
    }
    .nav-button button{
        width: 10rem;
        height: 3rem;
    }
    .nav-button a{
        font-size: 1.3rem;
    }
    .hero-content h1{
        top: -90vh;
        width: 45rem;
        font-size: clamp(1.5rem, calc(6vw + 1rem), 15rem);
    }
    .hero-content p{
        top: -90vh;
        width: 20rem;
        font-size: clamp(1.5rem, calc(2vw + 1rem), 15rem);
    }
    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
        justify-content: center;
        opacity: 0;
        animation: slideUp 1s ease forwards 0.9s;
        position: relative;
        top: -87vh;
        left: 5vw;
    }
    .cta-buttons .btn-primary, .btn-secondary {
        width: 10rem;
        padding: 15px 30px;
        border-radius: 50px;
        font-family: 'Inter', sans-serif;
        font-weight: 600;
        font-size: 1rem;
        cursor: pointer;
        transition: all 0.3s ease;
        border: 2px solid transparent;
        text-decoration: none;
        text-align: center;
    }
    .cta-buttons .btn-primary {
        background: var(--color-accent);
        color: var(--color-text);
        box-shadow: 0 4px 15px rgba(255, 200, 87, 0.3);
    }
    .cta-buttons .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(255, 200, 87, 0.4);
    }
    .cta-buttons .btn-secondary {
        background: transparent;
        color: var(--color-altText);
        border: 2px solid var(--color-altText);
    }
    .cta-buttons .btn-secondary:hover {
        background: var(--color-altText);
        color: var(--color-primary);
        transform: translateY(-3px);
    }
    @keyframes slideUp {
        to {
        opacity: 1;
        transform: translateY(0);
            }
            from {
        opacity: 0;
        transform: translateY(30px);
        }
    }
    .section-title{
        font-family: 'Inter', sans-serif;
        font-weight: 800;
        font-size: 3rem;
        transition: all 0.3s;
        text-decoration: none;
        text-align: center;
    }
    .section-subtitle{
        font-family: 'Inter', sans-serif;
        font-weight: 400;
        font-size: 1.5rem;
        transition: all 0.3s;
        text-decoration: none;
        text-align: center;
        margin-top: 1rem;
    }
    .footer{
        position: relative;
        padding: 40px 20px;
        background-color: var(--color-primary);
    }
    .footer-content{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-evenly;
    }
    .brand h1{
        font-family: "Tinos", serif;
        font-weight: 600;
        font-size: 5rem;
        color: var(--color-altText);
        text-align: center;
    }
    .brand h2{
        margin-top: 0rem;
        font-family: "Tinos", serif;
        font-weight: 600;
        font-size: 2rem;
        color: var(--color-altText);
        letter-spacing: 0rem;
        text-align: center;
    }
    .brand a{
        text-align: center;
        color: var(--color-altText);
        margin-bottom: 1rem;
    }
    .contact-section{
        text-align: start;
    }
    i{
        font-size: 2rem;
    }
    .footer-section h3{
        font-family: 'Inter', sans-serif;
        font-weight: 800;
        font-size: 1.5rem;
        color: var(--color-altText);
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    .footer-section p{
        font-family: 'Inter', sans-serif;
        font-weight: 800;
        font-size: 1rem;
    }
    .footer-section a{
        text-decoration: none;
        font-family: 'Inter', sans-serif;
        font-weight: 600;
        font-size: 1rem;
        color: var(--color-altText);

    }  
    #service-plans h3{
        font-family: 'Inter', sans-serif;
        font-weight: 00;
        font-size: 1.5rem;
        color: var(--color-altText);
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    #service-plans a{
        text-decoration: none;
        font-family: 'Inter', sans-serif;
        font-weight:600;
        font-size: 1rem;
        color: var(--color-altText);
    }

    .footer-section h3::after,
    #service-plans h3::after {
        content: '';
        display: block;
        width: 4rem;
        height: 3px;
        background: var(--color-accent);
        margin: 0.5rem 0 1rem 0;
        border-radius: 2px;
    }
}
@media (orientation: portrait) and (min-height: 1024px){
     
    .hero-content h1{
        width: 30rem;
        font-size: clamp(1.5rem, calc(10vw + 1rem), 15rem);
    }
    .hero-content p{
        width: 30rem;
        font-size: clamp(1.5rem, calc(3vw + 1rem), 15rem);
    }
    .hero-content img{
        height: 95vh;
    }
    .cta-buttons {
        width: fit-content;
        display: flex;
        flex-direction: column;
        gap: 20px;
        justify-content: center;
        opacity: 0;
        animation: slideUp 1s ease forwards 0.9s;
        position: relative;
        top: -85vh;
        left: 2.5rem;
    }
    .cta-buttons .btn-primary, .btn-secondary {
        width: 20rem;
        height: 3rem;
        padding-top: 25px;
        border-radius: 50px;
        font-family: 'Inter', sans-serif;
        font-weight: 800;
        font-size: 2rem;
        cursor: pointer;
        transition: all 0.3s ease;
        border: 2px solid transparent;
        text-decoration: none;
        text-align: center;
        top: 100%;
        
    }
    .cta-buttons .btn-primary {
        background: var(--color-accent);
        color: var(--color-text);
        box-shadow: 0 4px 15px rgba(255, 200, 87, 0.3);
    }
    .cta-buttons .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(255, 200, 87, 0.4);
    }
    .cta-buttons .btn-secondary {
        background: transparent;
        color: var(--color-text);
        border: 2px solid var(--color-altText);
    }
    .cta-buttons .btn-secondary:hover {
        background: var(--color-altText);
        color: var(--color-primary);
        transform: translateY(-3px);
    }
    @keyframes slideUp {
        to {
        opacity: 1;
        transform: translateY(0);
            }
            from {
        opacity: 0;
        transform: translateY(30px);
        }
    }
    .header h1{
        font-family: 'Inter', sans-serif;
        font-weight: 800;
        font-size: 5rem;
        transition: all 0.3s;
        text-decoration: none;
        text-align: center;
    }
    .header p{
        font-family: 'Inter', sans-serif;
        font-weight: 400;
        font-size: 1.5rem;
        transition: all 0.3s;
        text-decoration: none;
        text-align: center;
    }
    .tiers-container {
        display: grid;
        grid-template-columns: repeat(space-e, minmax(350px, 1fr));
        gap: 5px;
        margin-top: 40px;
        justify-items: center;
    }
    .footer{
        position: relative;
        padding: 40px 20px;
        background-color: var(--color-primary);
    }
    .footer-content{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-evenly;
    }
    .brand h1{
        font-family: "Tinos", serif;
        font-weight: 600;
        font-size: 5rem;
        color: var(--color-altText);
        text-align: center;
    }
    .brand h2{
        margin-top: 0rem;
        font-family: "Tinos", serif;
        font-weight: 600;
        font-size: 2rem;
        color: var(--color-altText);
        letter-spacing: 0rem;
        text-align: center;
    }
    .brand a{
        text-align: center;
        color: var(--color-altText);
        margin-bottom: 1rem;
    }
    .contact-section{
        text-align: start;
    }
    i{
        font-size: 2rem;
    }
    .footer-section h3{
        font-family: 'Inter', sans-serif;
        font-weight: 800;
        font-size: 1.5rem;
        color: var(--color-altText);
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    .footer-section p{
        font-family: 'Inter', sans-serif;
        font-weight: 800;
        font-size: 1rem;
    }
    .footer-section a{
        text-decoration: none;
        font-family: 'Inter', sans-serif;
        font-weight: 600;
        font-size: 1rem;
        color: var(--color-altText);

    }  
    #service-plans h3{
        font-family: 'Inter', sans-serif;
        font-weight: 00;
        font-size: 1.5rem;
        color: var(--color-altText);
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    #service-plans a{
        text-decoration: none;
        font-family: 'Inter', sans-serif;
        font-weight:600;
        font-size: 1rem;
        color: var(--color-altText);
    }

    .footer-section h3::after,
    #service-plans h3::after {
        content: '';
        display: block;
        width: 4rem;
        height: 3px;
        background: var(--color-accent);
        margin: 0.5rem 0 1rem 0;
        border-radius: 2px;
    }
}
@media (min-width: 1300px){
    .nav-bar{
        height: 10vh;
    }
    #gcva{
        position: absolute;
        top: 20%;
        left: 3rem;
    }
    #service-provider{
        position: absolute;
        top: 60%;
        left: 3.1rem;
    }
    .hamburger{
        display: none;
    }
    .desktop-nav{
        width: fit-content;
        display: block;
        text-decoration: none;
        color: var(--color-altText);
        position: relative;
        top: min( calc(10vh - 90px), 10%);
        left: min( calc(100vw - 720px), 60%);
        padding: 1.3rem 2rem;
    }
    .desktop-nav a{
        padding: 0rem 1rem;
        text-decoration: none;
        font-family: 'Inter', sans-serif;
        font-weight:600;
        font-size: 1.5rem;
        color: var(--color-altText);
    }
    .nav-button{
        top: min( calc(10vh - 70px), 30%);
        left: 85vw;
    }
    .nav-button button{
        width: 10rem;
        height: 3rem;
    }
    .nav-button a{
        font-size: 1.3rem;
    }
    .hero-content h1{
        top: -95vh;
        font-size: clamp(1.5rem, calc(6vw + 1rem), 7rem);
        width: 55rem;
    }
    .hero-content p{
        font-size: clamp(1.5rem, calc(3vw + 1rem), 3rem);
        width: 40rem;
        top: -93vh;
    }
    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
        justify-content: center;
        opacity: 0;
        animation: slideUp 1s ease forwards 0.9s;
        position: relative;
        top: -90vh;
        left: 5vw;
    }
    .cta-buttons .btn-primary, .btn-secondary {
        width: 30vw;
        height: 5vh;
        padding: 15px 30px;
        border-radius: 50px;
        font-family: 'Inter', sans-serif;
        font-weight: 600;
        font-size: 2.5rem;
        cursor: pointer;
        transition: all 0.3s ease;
        border: 2px solid transparent;
        text-decoration: none;
        text-align: center;
    }
    .cta-buttons .btn-primary {
        background: var(--color-accent);
        color: var(--color-text);
        box-shadow: 0 4px 15px rgba(255, 200, 87, 0.3);
    }
    .cta-buttons .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(255, 200, 87, 0.4);
    }
    .cta-buttons .btn-secondary {
        background: transparent;
        color: var(--color-altText);
        border: 2px solid var(--color-altText);
    }
    .cta-buttons .btn-secondary:hover {
        background: var(--color-altText);
        color: var(--color-primary);
        transform: translateY(-3px);
    }
    @keyframes slideUp {
        to {
        opacity: 1;
        transform: translateY(0);
            }
            from {
        opacity: 0;
        transform: translateY(30px);
        }
    }
    .section-title{
        font-family: 'Inter', sans-serif;
        font-weight: 800;
        font-size: 3rem;
        transition: all 0.3s;
        text-decoration: none;
        text-align: center;
    }
    .section-subtitle{
        font-family: 'Inter', sans-serif;
        font-weight: 400;
        font-size: 1.5rem;
        transition: all 0.3s;
        text-decoration: none;
        text-align: center;
        margin-top: 1rem;
    }
    .footer{
        position: relative;
        padding: 40px 20px;
        background-color: var(--color-primary);
    }
    .footer-content{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-evenly;
    }
    .brand h1{
        font-family: "Tinos", serif;
        font-weight: 600;
        font-size: 5rem;
        color: var(--color-altText);
        text-align: center;
    }
    .brand h2{
        margin-top: 0rem;
        font-family: "Tinos", serif;
        font-weight: 600;
        font-size: 2rem;
        color: var(--color-altText);
        letter-spacing: 0rem;
        text-align: center;
    }
    .brand a{
        text-align: center;
        color: var(--color-altText);
        margin-bottom: 1rem;
    }
    .contact-section{
        text-align: start;
    }
    i{
        font-size: 2rem;
    }
    .footer-section h3{
        font-family: 'Inter', sans-serif;
        font-weight: 800;
        font-size: 1.5rem;
        color: var(--color-altText);
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    .footer-section p{
        font-family: 'Inter', sans-serif;
        font-weight: 800;
        font-size: 1rem;
    }
    .footer-section a{
        text-decoration: none;
        font-family: 'Inter', sans-serif;
        font-weight: 600;
        font-size: 1rem;
        color: var(--color-altText);

    }  
    #service-plans h3{
        font-family: 'Inter', sans-serif;
        font-weight: 00;
        font-size: 1.5rem;
        color: var(--color-altText);
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    #service-plans a{
        text-decoration: none;
        font-family: 'Inter', sans-serif;
        font-weight:600;
        font-size: 1rem;
        color: var(--color-altText);
    }

    .footer-section h3::after,
    #service-plans h3::after {
        content: '';
        display: block;
        width: 4rem;
        height: 3px;
        background: var(--color-accent);
        margin: 0.5rem 0 1rem 0;
        border-radius: 2px;
    }
}





