* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    font-family: 'Forum';
    max-width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    overflow-y: auto;
}

:root {
    --theme-color: #6FD1D4;
}

ul,
ol {
    list-style: none;
}

i,
a {
    display: inline-block;
}

a {
    text-decoration: none;
}

img {
    display: block;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 10px;
}

.text-center {
    text-align: center;
}

.relative {
    position: relative;
}

.absoulte {
    position: absolute;
}

.flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.items-center {
    align-items: center;
}

.forum {
    font-family: 'Forum';
}

.madimione {
    font-family: 'Madimi One';
}

.roboto {
    font-family: 'Roboto Condensed';
}

.LeagueGothic {
    font-family: 'League Gothic Condensed';
}

.advent {
    font-family: 'Advent Pro Expanded';
}

.lancelot {
    font-family: 'Lancelot';
}

.tenorsans {
    font-family: 'Tenor Sans';
}

/* HEADER */
.logo {
    width: 130px;
    height: 120px;
    object-fit: contain;
}

.header {
    padding: 15px 20px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

main {
    padding: 10px 10px 0 10px;
}

.header .menu-icon i {
    font-size: 24px;
    cursor: pointer;
    color: #000;
    background-color: #fff;
    padding: 10px 12px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.header .menu-icon:hover i {
    background-color: var(--theme-color);
    color: #000;
}

/* MOBILE MENU */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-logo {
    width: 120px;
    height: auto;
    object-fit: contain;
}

.menu-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 45px;
    height: 45px;
}

.menu-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.mobile-nav {
    padding: 30px 20px;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav ul li {
    margin-bottom: 5px;
}

.mobile-nav ul li a {
    display: block;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    padding: 15px 20px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: 'Forum', sans-serif;
}

.mobile-nav ul li a:hover {
    background-color: var(--theme-color);
    color: #000;
    transform: translateX(10px);
}

/* HERO */
.hero {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
    background-image: url("../assets/blogHero.png");
    background-size: cover;
    background-position: right bottom;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 48px;
    display: flex;
    flex-direction: column;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 67px;
    font-weight: 700;
    margin-top: auto;
}

.hero-btn {
    width: fit-content;
    padding: 10px 10px 10px 90px;
    background: #6fd4d4;
    color: #000;
    font-weight: 600;
    border-radius: 99px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.hero-btn i {
    margin-left: 40px;
    color: #000;
    background-color: #fff;
    padding: 10px 12px;
    border-radius: 50%;
}

.hero-btn:hover {
    background: #5bc2c2;
}

.hero-btn-container {
    background-color: #fff;
    position: absolute;
    bottom: 0%;
    right: 4%;
    border-radius: 40px 0px 0px 10px;
}

/* CONTACT SECTION */
.contact-section {
    padding: 60px 0 0 0;
}

.contact-heading {
    font-size: 50px;
    font-weight: 400;
    color: #333;
    margin-bottom: 40px;
    line-height: 1.2;
}

.contact-heading span {
    color: var(--theme-color);
}

/* CONTACT FORM */
.contact-form-wrapper {
    background-color: #6FD1D44D;
    border-radius: 20px;
    padding: 30px 40px;
    margin-bottom: 60px;
}
.contact-bg{
    background-image: url(../assets/contactform-bg.png);
    background-size: cover;
    border-radius: 20px;
    padding: 50px;
}
.form-title {
    font-size: 36px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    font-family: 'Tenor Sans', sans-serif;
    line-height: 1.2;
}

.form-intro {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
    font-family: 'Forum', sans-serif;
}

.contact-form {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}
.form-row2{
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 24px;
}

.form-group {
    width: 100%;
    margin-bottom: 0;
}

.form-group:not(.form-row .form-group) {
    margin-bottom: 24px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Forum', sans-serif;
    background-color: #fff;
    color: #333;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--theme-color);
}

.form-group select {
    cursor: pointer;
    /* appearance: none; */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 45px;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
    font-family: 'Forum', sans-serif;
    line-height: 1.5;
}

.radio-label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
    font-family: 'Forum', sans-serif;
    line-height: 1.5;
}

.radio-group {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
}
.radio-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 16px;
  }
  
  .radio-white input {
    display: none;
  }
  
  .radio-white span {
    width: 18px;
    height: 18px;
    border: 2px solid #fff; /* WHITE BORDER */
    border-radius: 50%;
    position: relative;
  }
  
  .radio-white input:checked + span::after {
    content: "";
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  

.radio-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-family: 'Forum', sans-serif;
    white-space: nowrap;
}

.radio-option input[type="radio"] {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    cursor: pointer;
    accent-color:#fff;
    flex-shrink: 0;
}

.radio-option span {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}

.form-submit {
    display: flex;
    justify-content:center;
    margin-top: 40px;
}

.submit-btn {
    padding: 14px 20px;
    background: var(--theme-color);
    color: #000;
    font-weight: 600;
    border-radius: 99px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-family: 'Madimi One', sans-serif;
    white-space: nowrap;
}

.submit-btn i {
    margin-left: 20px;
    color: #000;
    background-color: #fff;
    padding: 8px 10px;
    border-radius: 50%;
    font-size: 16px;
    flex-shrink: 0;
}

.submit-btn:hover {
    background: #5bc2c2;
}

/* CONTACT INFORMATION SECTION */
.contact-info-section {
    margin-top: 60px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 0 100px 40px 100px;
}

.contact-info-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px;
}
.form-group label{
    font-weight: 600;
    margin-bottom: 5px;
}

.info-card-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    font-family: 'Forum', sans-serif;
}

.info-card-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-label {
    font-size: 24px;
    color: var(--theme-color);
    font-weight: 600;
    margin-bottom: 10px;
    font-family: 'Forum', sans-serif;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: 'Forum', sans-serif;
}

.info-item i {
    color: var(--theme-color);
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.info-item span {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    line-height: 1.6;
}

/* MAP SECTION */
.map-container {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 30px;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

/* FOOTER */
footer {
    padding-top: 40px;
    background-color: #2F6466;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 4fr 3fr 4fr;
    gap: 40px;
    color: #fff;
}

.footer-grid .footer-content:first-child img {
    width: 270px;
}

.footer-grid .footer-content:first-child h4 {
    font-size: 17px;
    margin: 5px 0;
    margin-top: 15px;
    font-weight: 500;
}

.footer-content a {
    font-size: 14px;
    text-decoration: underline;
    display: inline-block;
    color: #fff;
    margin: 10px 0;
}

.footer-grid .footer-content:first-child i {
    background-color: rgb(60, 205, 60);
    padding: 10px 12px;
    font-weight: 500;
    font-size: 35px;
    color: green;
    border-radius: 50%;
    margin-top: auto;
}

.footer-content .whatsapp-icon {
    margin-top: auto;
}

.footer-grid .footer-content h3 {
    font-size: 20px;
    position: relative;
    display: inline-block;
}

.footer-grid .footer-content h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 200px;
    height: 1px;
    background: #fff;
}

.footer-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.footer-content ul {
    padding-top: 30px;
}

.footer-content ul li {
    margin: 10px 0;
}

.footer-content ul li i {
    margin-right: 10px;
}

.footer-grid .footer-content:last-child img {
    width: 300px;
}

.copyright {
    color: #fff;
    border-top: 1px solid #fff;
    padding: 15px 0 0 0;
}

.copyright ul li:first-child i {
    color: #000;
    background-color: #fff;
    padding: 8px 9px;
    border-radius: 50%;
    font-size: 20px;
}

.copyright ul li:nth-child(2) i {
    color: #fff;
    background-color: rgb(60, 209, 60);
    padding: 8px 9px;
    border-radius: 50%;
    font-size: 20px;
    margin: 0 15px;
}

.copyright ul li:last-child i {
    color: #fff;
    padding: 8px 9px;
    border-radius: 50%;
    font-size: 20px;
    background: linear-gradient(45deg,
            #f58529,
            #feda77,
            #dd2a7b,
            #8134af,
            #515bd4);
}

#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: #6fd4d4;
    color: #000;
    font-size: 22px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    z-index: 999;
}

#backToTop:hover {
    transform: translateY(-4px);
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
}
