*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


:root{
    --primary : rgb(250, 250, 250);
    --nav-btns : rgb(78, 78, 78);
    --black : rgb(50, 50, 50);
    --primary-blue : rgb(10, 0, 76);
    --text-white : rgb(250, 250, 250);
    --nav-back : rgb(255, 106, 0);
}


.parent-div > p{
    padding: 0 50px;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    text-align: justify;
}

.parent-div > ul, .parent-div > ol{
    padding: 0 70px;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    text-align: justify;
}

.ads-hidden {
    display: none;
}


body{
    background-color: var(--primary);
}

.parent-container{
    display: grid;
    grid-template-columns: 3fr 1fr;
    grid-template-areas: "header header"
    "middle middle"
    "footer footer";
}

.info-container{
    grid-area: header;
    display: flex;
    width: 100%;
    height: clamp(5rem, 8vw, 8rem);
    justify-content: center;
    align-items: stretch;
} 


.header-section{
    background-color: var(--primary-blue);
    grid-area: header;
    display: grid;
    grid-template-columns: 1fr 7fr 2fr;
    grid-template-rows: auto auto;
} 


.info-container.logo-div{
    grid-column: 1;
    grid-row: 1;
}

.info-container.web-info{
    grid-column: 2;
    grid-row: 1;    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.logo-div a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.logo-div img {
  display: block;
  width: auto;
  height: auto;
}

.footer-logo-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.footer-logo img {
  display: block;
  width: auto;
  height: auto;
}

.info-container.search-container{
    grid-column: 3;
    grid-row: 1;   
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    flex-direction: column;
    text-align: center; 
    gap: 2px;
}

 
.logo-div {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.logo-div img {
    height: 80%;
    width: auto;
    border-radius: 8px;
}


.founder-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
}

.founder-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.web-info>h1{
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
    color: var(--nav-back);
}

.web-info>p, #noresult{
    font-size: clamp(0.8rem, 1.2vw, 1.2rem);
    color: var(--text-white);
    word-spacing: clamp(0.2rem, 0.5vw, 0.5rem);;
    text-align: center;
}
 

#noresult{
    font-size: 1rem;
    word-spacing: 0.2rem;
    text-align: center;
    color: var(--primary-blue);
    padding: 10px;
}


.search-container label {
    font-size: clamp(1rem, 1.5vw, 1.5rem);
    font-weight: 600;
    color: var(--nav-back);
    transition: 0.3s ease;
}


.search-ir-dir{
    position: relative;
}


.search-container input {
    padding: 5px 14px;
    border-radius: 8px;
    width: clamp(90px, 15vw, 20vw);
    min-height: 35px;
    margin: 5px 5px;
    border: 2px solid rgba(0, 13, 132, 0.3);
    outline: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-container input:focus {
    border-color: #f97316; 
    box-shadow: 0 0 8px rgba(249, 115, 22, 0.4);
    transform: scale(1.02);
}

.search-container input:hover {
    border-color: var(--primary-blue);
}


.results-container {
    position: absolute;
    top: 85.5%;
    left: 5.2%;
    width: 89.5%;
    max-height: 200px;
    overflow-y: auto;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 2px 2px 8px 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

.results-container button {
    width: 100%;
    padding: 8px 12px;
    text-align: left;
    border: none;
    background: none;
    cursor: pointer;
}

.results-container button:hover {
    background-color: #f0f0f0;
}




.nav-container {
    grid-column: 1 / -1;
    grid-row: 2;
    display: grid;
    grid-template-columns: 1fr 7fr 2fr;
    grid-template-rows: auto;
    background-color: var(--nav-back);
}

.site-nav {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    justify-content: center;
    gap: 2rem;
    list-style: none;
}

.user-nav {
    grid-column: 3;
    grid-row: 1;
    display: flex;
    justify-content: center;
    gap: 1rem;
    list-style: none;
}

.nav-container>ul{
    display: flex;
    list-style-type: none;
    justify-content: center;
    align-items: center;
    gap: clamp(1rem, 2vw, 2rem);
    width: 100%;
    height: 100%;
}


.nav-container li{
    display: flex;
    height: fit-content;

}

.nav-container a, .toggleBtn, #contributeword{
    text-decoration: none;
    border: 1px solid black;
    padding: clamp(.7rem, 1vw, 1rem);
    margin: 8px 0;
    border-radius: 10px;
    color: var(--text-white);
    background-color: var(--nav-btns);
    transition: all 0.2s ease;
    font-size: 0.9rem;
}
 
#contributeword{
    display: inline-flex;
    width: 150px;
    height: 40px;
    justify-content: center;
    align-items: center;
}

.toggleBtn{
    width: 150px;
    cursor: pointer;
    align-self: center;
    word-spacing: 5px;
    display: none;
}



.nav-container a:hover, .toggleBtn:hover,#contributeword:hover{
    background-color: var(--primary-blue);
}




.middle-and-right-container{
    grid-area: middle;
    display: flex;    
    gap: 2px;
    justify-content: space-evenly;
    align-items: stretch;
    min-height: fit-content;
} 


.middle-section{
    background-color: white;
    flex: 3;
}

.right-section{
    flex: 1;
}


.quick-links{
    display: flex;
    width: 100%;
    min-height: fit-content;
    justify-content: center;
    align-items: center;
    padding: 12px; 
    flex-direction: column;
    background-color: rgba(255, 255, 255,1);
}

/* List reset */
.quick-links ul {
    list-style: none;
    padding: 0;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}
 
/* List items */
.quick-links ul li {
    display: flex;
    width: 90%;
    margin: 5px 0;
    transform: translateX(0);
    transition: all 0.3s ease;
}

/* Links */
.quick-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 8px;
    text-decoration: none;
    color: #333;
    background: #ffffff;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    border: 1px solid black;
    font-weight: 600;
}

/* Hover effects */
.quick-links a:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateX(6px);
    box-shadow: 0 4px 10px rgba(74,144,226,0.3);
}

/* Smooth entry animation */
.quick-links li {
    animation: fadeSlide 0.4s ease forwards;
    opacity: 0;
    width: 75%;
    text-align: center;
}

/* Delay each item */
.quick-links li:nth-child(1)  { animation-delay: 0.05s; }
.quick-links li:nth-child(2)  { animation-delay: 0.1s; }
.quick-links li:nth-child(3)  { animation-delay: 0.15s; }
.quick-links li:nth-child(4)  { animation-delay: 0.2s; }
.quick-links li:nth-child(5)  { animation-delay: 0.25s; }
.quick-links li:nth-child(6)  { animation-delay: 0.3s; }
.quick-links li:nth-child(7)  { animation-delay: 0.35s; } 
.quick-links li:nth-child(8)  { animation-delay: 0.4s; }
.quick-links li:nth-child(9)  { animation-delay: 0.45s; } 
.quick-links li:nth-child(10) { animation-delay: 0.5s; }
.quick-links li:nth-child(11) { animation-delay: 0.55s; }
.quick-links li:nth-child(12) { animation-delay: 0.6s; }
.quick-links li:nth-child(13) { animation-delay: 0.65s; }
.quick-links li:nth-child(14) { animation-delay: 0.7s; }
.quick-links li:nth-child(15) { animation-delay: 0.75s; }

/* Animation keyframes */
@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateX(-5px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}








.footer-section{
    grid-area: footer;
}









.lang-choose-search-wrapper {
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

/* Wrap select separately for arrow */
.lang-choose-search-wrapper .select-box {
    position: relative;
    display: inline-block;
}

/* Style select */
.lang-choose-search-wrapper select {
    width: 100px;

    padding: 5px; 

    font-size: clamp(13px, 1.2vw, 15px);
    font-weight: bold;

    border: 2px solid #ccc;
    border-radius: 8px;

    background-color: white;
    cursor: pointer;

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    line-height: 1.2;
}


.lang-choose-search-wrapper .select-box::after {
    content: "▼";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    color: #555;
    pointer-events: none;
}



#gamemesOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: rgba(0,0,0,0.25);
    z-index: 999;
}



#gamemes {
    background: white;
    padding: 25px;
    width: 450px;
    max-width: 90%;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    position: relative; 
}


#gamemesOverlay .closeBtn {
    position: absolute;
    top: -20px;     
    right: -20px;   
    font-size: 22px;
    cursor: pointer;
    background: red;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 3px 8px rgba(0,0,0,0.3);
    transition: 0.2s;
}


#gamemes h1 {
    font-size: 28px;
    margin-bottom: 15px;
    text-align: center;
    color: #333;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

#gamemes p {
    font-size: clamp(1rem, 1.3vw, 1.5rem);
    margin-bottom: 12px;
    color: #444;
}

#gamemes::-webkit-scrollbar {
    width: 8px;
}

#gamemes::-webkit-scrollbar-thumb {
    background: #bbb;
    border-radius: 6px;
}

#gamemes::-webkit-scrollbar-thumb:hover {
    background: #999;
}


#gamemesOverlay .closeBtn:hover {
    background: #ff4d4d;
    color: white;
    transform: scale(1.1);
}






/* CSS for About Page */
/* ===== ABOUT PAGE SPECIFIC STYLES ===== */

.about-hero {
  background: linear-gradient(145deg, #faf9ff, #f0eff7);
  border-radius: 40px;
  padding: 2.8rem 2.8rem 2.8rem 3.2rem;
  margin-bottom: 2.5rem;
  border: 1px solid rgba(10, 0, 76, 0.05);
  box-shadow: 0 12px 30px rgba(10, 0, 76, 0.04);
}

.about-hero h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 800;
  color: var(--primary-blue);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.about-hero h1 span {
  color: var(--nav-back);
}

.about-hero > p {
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  max-width: 750px;
  margin-top: 0.8rem;
  color: #1e1e2a;
  opacity: 0.85;
  line-height: 1.6;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin: 30px 0 18px;
}

.feature-item {
  background: white;
  padding: 22px 18px 18px;
  border-radius: 24px;
  text-align: center;
  box-shadow: var(--card-shadow, 0 8px 20px rgba(0, 0, 0, 0.06));
  border: 1px solid rgba(0, 0, 0, 0.02);
  transition: all 0.2s ease;
}

.feature-item:hover {
  transform: translateY(-4px);
  border-color: var(--nav-back);
  box-shadow: 0 12px 28px rgba(10, 0, 76, 0.08);
}

.feature-item i {
  font-size: 2.4rem;
  color: var(--nav-back);
  background: #fff0e0;
  padding: 16px;
  border-radius: 60px;
  margin-bottom: 14px;
  width: 66px;
  height: 66px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.feature-item h3 {
  font-size: 1.2rem;
  color: var(--primary-blue);
  margin-bottom: 6px;
}

.feature-item p {
  font-size: 0.9rem;
  color: #3d3d4a;
  opacity: 0.8;
}

.about-story {
  background: white;
  border-radius: 32px;
  padding: 2.2rem 2.8rem;
  margin: 2rem 0 2.5rem;
  box-shadow: var(--card-shadow, 0 8px 20px rgba(0, 0, 0, 0.06));
  border: 1px solid rgba(10, 0, 76, 0.04);
}

.about-story h2 {
  font-size: 1.8rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-story h2 i {
  color: var(--nav-back);
  font-size: 2rem;
}

.about-story p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #1e1e2a;
  opacity: 0.85;
  max-width: 800px;
}

/* ===== FOUNDER SECTION ===== */
.founder-section {
  background: linear-gradient(135deg, #ffffff, #f8f7ff);
  border-radius: 32px;
  padding: 2.5rem 2.8rem;
  margin: 2rem 0 2.5rem;
  box-shadow: 0 12px 30px rgba(10, 0, 76, 0.06);
  box-shadow: var(--card-shadow, 0 8px 20px rgba(0, 0, 0, 0.06));
  border: 1px solid rgba(10, 0, 76, 0.04);  
}

.founder-content {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}

.founder-avatar {
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, var(--primary-blue), var(--nav-back));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: white;
  box-shadow: 0 8px 24px rgba(255, 106, 0, 0.25);
}

.founder-info {
  flex: 1;
}

.founder-info h2 {
  font-size: 1.6rem;
  color: var(--primary-blue);
  margin-bottom: 0.3rem;
}

.founder-info h3 {
  font-size: 2rem;
  color: var(--nav-back);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.founder-qualification {
  font-size: 1.1rem;
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.founder-qualification i {
  color: var(--nav-back);
  margin-right: 8px;
}

.founder-thesis {
  background: #f0eff7;
  padding: 12px 18px;
  border-radius: 12px;
  margin: 10px 0 15px;
  font-size: 1rem;
  color: #1e1e2a;
  border-left: 4px solid var(--nav-back);
}

.founder-thesis i {
  color: var(--nav-back);
  margin-right: 10px;
}

.founder-bio {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #2d2d3a;
  margin-bottom: 16px;
}

.founder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 5px;
}

.founder-tags span {
  background: white;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  color: var(--primary-blue);
  border: 1px solid rgba(10, 0, 76, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.founder-tags span i {
  margin-right: 6px;
  color: var(--nav-back);
}

/* ===== VISION & MISSION ===== */
.vision-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 3rem 0 2.5rem;
}

.vision-box,
.mission-box {
  background: white;
  padding: 2rem 2rem;
  border-radius: 28px;
  text-align: center;
  box-shadow: var(--card-shadow, 0 8px 20px rgba(0, 0, 0, 0.06));
  border: 1px solid rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.vision-box:hover,
.mission-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(10, 0, 76, 0.08);
}

.vision-box i,
.mission-box i {
  font-size: 2.8rem;
  color: var(--nav-back);
  background: #fff0e0;
  padding: 16px;
  border-radius: 60px;
  margin-bottom: 16px;
  width: 74px;
  height: 74px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.vision-box h3,
.mission-box h3 {
  font-size: 1.4rem;
  color: var(--primary-blue);
  margin-bottom: 10px;
}

.vision-box p,
.mission-box p {
  font-size: 1rem;
  line-height: 1.6;
  color: #3d3d4a;
  opacity: 0.85;
}

/* ===== CTA BOX ===== */
.cta-box {
  background: var(--primary-blue);
  border-radius: 40px;
  padding: 2.8rem 2.8rem;
  margin: 2.8rem 0 1rem;
  text-align: center;
  color: white;
}

.cta-box h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.cta-box p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 550px;
  margin: 0 auto 1.6rem;
}

.cta-box .play-link {
  background: white;
  color: var(--primary-blue);
  font-size: 1rem;
  padding: 12px 36px;
}

.cta-box .play-link:hover {
  background: var(--nav-back);
  color: white;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .founder-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .founder-avatar {
    width: 120px;
    height: 120px;
    font-size: 3.2rem;
  }
  
  .founder-thesis {
    text-align: left;
  }
  
  .founder-tags {
    justify-content: center;
  }
  
  .vision-mission {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .about-hero {
    padding: 2rem 1.5rem;
  }
  .about-story {
    padding: 1.8rem 1.5rem;
  }
  .founder-section {
    padding: 1.8rem 1.5rem;
  }
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cta-box {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== CONTACT PAGE SPECIFIC STYLES ===== */

/* Contact Hero */
.contact-hero {
  background: linear-gradient(145deg, #faf9ff, #f0eff7);
  border-radius: 40px;
  padding: 2.8rem 2.8rem 2.8rem 3.2rem;
  margin-bottom: 2.5rem;
  border: 1px solid rgba(10, 0, 76, 0.05);
  box-shadow: 0 12px 30px rgba(10, 0, 76, 0.04);
}

.contact-hero h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 800;
  color: var(--primary-blue);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.contact-hero h1 span {
  color: var(--nav-back);
}

.contact-hero p {
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  max-width: 750px;
  margin-top: 0.8rem;
  color: #1e1e2a;
  opacity: 0.85;
  line-height: 1.6;
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-bottom: 2.5rem;
}

.contact-card {
  background: white;
  border-radius: 28px;
  padding: 2rem 1.8rem;
  text-align: center;
  box-shadow: var(--card-shadow, 0 8px 20px rgba(0, 0, 0, 0.06));
  border: 1px solid rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  border-color: var(--nav-back);
  box-shadow: 0 14px 32px rgba(10, 0, 76, 0.08);
}

.contact-icon-wrapper {
  width: 70px;
  height: 70px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, #fff5ed, #ffede0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.contact-card:hover .contact-icon-wrapper {
  background: var(--primary-blue);
  transform: scale(1.05);
}

.contact-icon-wrapper img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.contact-card:hover .contact-icon-wrapper img {
  filter: brightness(0) invert(1);
}

.contact-card h3 {
  font-size: 1.2rem;
  color: var(--primary-blue);
  margin-bottom: 8px;
}

.contact-detail {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--nav-back);
  margin-bottom: 4px;
}

.contact-label {
  font-size: 0.85rem;
  color: #3d3d4a;
  opacity: 0.7;
  margin-bottom: 14px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-blue);
  color: white;
  padding: 10px 22px;
  border-radius: 60px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-link:hover {
  background: var(--nav-back);
  transform: scale(1.02);
  box-shadow: 0 8px 16px rgba(255, 106, 0, 0.25);
}

.contact-link i {
  font-size: 1rem;
}

/* Quick Response */
.quick-response {
  margin-bottom: 2.5rem;
}

.response-box {
  background: white;
  border-radius: 28px;
  padding: 2rem 2.5rem;
  border: 2px solid var(--nav-back);
  box-shadow: 0 8px 20px rgba(10, 0, 76, 0.04);
}

.response-box h3 {
  font-size: 1.4rem;
  color: var(--primary-blue);
  margin-bottom: 8px;
}

.response-box h3 i {
  color: var(--nav-back);
  margin-right: 10px;
}

.response-box > p {
  font-size: 1rem;
  color: #3d3d4a;
  opacity: 0.8;
  margin-bottom: 20px;
}

.response-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}

.stat {
  text-align: center;
  background: #f8f7fc;
  padding: 16px;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.stat:hover {
  background: #fff0e0;
}

.stat-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--nav-back);
}

.stat-label {
  font-size: 0.85rem;
  color: #3d3d4a;
}

/* Contact Form Section */
.contact-form-section {
  background: white;
  border-radius: 32px;
  padding: 2.5rem 2.8rem;
  margin-bottom: 2.5rem;
  box-shadow: var(--card-shadow, 0 8px 20px rgba(0, 0, 0, 0.06));
  border: 1px solid rgba(10, 0, 76, 0.04);
}

.form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-header h2 {
  font-size: 1.8rem;
  color: var(--primary-blue);
  margin-bottom: 6px;
}

.form-header h2 i {
  color: var(--nav-back);
  margin-right: 10px;
}

.form-header p {
  font-size: 1rem;
  color: #3d3d4a;
  opacity: 0.8;
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.form-group label i {
  color: var(--nav-back);
  margin-right: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e8e8ed;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fafaff;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--nav-back);
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.1);
  background: white;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-blue);
  color: white;
  padding: 14px 40px;
  border: none;
  border-radius: 60px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 6px;
}

.submit-btn:hover {
  background: var(--nav-back);
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(255, 106, 0, 0.3);
}

.submit-btn i {
  font-size: 1rem;
}

/* FAQ Section */
.faq-section {
  margin-bottom: 2.5rem;
}

.faq-section > h2 {
  font-size: 1.8rem;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-section > h2 i {
  color: var(--nav-back);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.faq-item {
  background: white;
  padding: 1.5rem 1.8rem;
  border-radius: 20px;
  box-shadow: var(--card-shadow, 0 4px 12px rgba(0, 0, 0, 0.04));
  border: 1px solid rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  border-color: var(--nav-back);
  box-shadow: 0 8px 20px rgba(10, 0, 76, 0.06);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.faq-question i {
  color: var(--nav-back);
  font-size: 0.9rem;
}

.faq-question h4 {
  font-size: 1.05rem;
  color: var(--primary-blue);
}

.faq-item p {
  font-size: 0.95rem;
  color: #3d3d4a;
  opacity: 0.8;
  line-height: 1.5;
  padding-left: 28px;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-hero {
    padding: 2rem 1.5rem;
  }
  
  .contact-form-section {
    padding: 1.8rem 1.5rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .response-stats {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .response-stats {
    grid-template-columns: 1fr;
  }
}



/* =========================================================
   WORD OF THE DAY / DAILY FEATURE SECTION
   ========================================================= */

.daily-feature-section {
    display: grid;
    grid-template-columns: 3fr 7fr;
    gap: 24px;
    width: 100%;
    /* Space around the complete section */
    margin: 24px 0 2.5rem 0;

    /* Inner breathing space */
    padding: 0 24px;
}


/* =========================================================
   WORD OF THE DAY CARD
   ========================================================= */

.word-of-day-card {
    background: linear-gradient(145deg, #faf9ff, #f0eff7);
    border-radius: 28px;
    padding: 1.6rem;
    border: 1px solid rgba(10, 0, 76, 0.08);
    box-shadow: 0 10px 25px rgba(10, 0, 76, 0.06);
    min-width: 0;
}


/* Header */

.word-of-day-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(10, 0, 76, 0.1);
}

.word-of-day-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.word-of-day-header > div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.word-of-day-label {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--primary-blue);
}

.word-of-day-date {
    font-size: 0.75rem;
    color: #777;
}


/* Word */

.word-of-day-content {
    padding-top: 18px;
}

.daily-word {
    font-size: clamp(2rem, 3vw, 2.7rem);
    line-height: 1.1;
    color: var(--nav-back);
    margin-bottom: 6px;
    font-weight: 800;
    word-break: break-word;
}


/* Part of speech */

.daily-pos {
    display: inline-block;
    font-size: 0.82rem;
    font-style: italic;
    font-weight: 600;
    color: var(--primary-blue);
    background: rgba(10, 0, 76, 0.06);
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
}


/* Pronunciation */

.daily-pronunciation {
    font-size: 0.9rem;
    color: #444;
    margin-bottom: 18px;
    font-weight: 600;
}


/* Meaning / Example */

.daily-word-block {
    margin-top: 14px;
}

.daily-word-block h3 {
    font-size: 0.92rem;
    color: var(--primary-blue);
    margin-bottom: 5px;
    font-weight: 800;
}

.daily-word-block p {
    font-size: 0.92rem;
    line-height: 1.55;
    color: #333;
    margin: 0;
}

.daily-example p {
    font-style: italic;
    color: #555;
}


/* Explore link */

.daily-word-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    padding: 9px 16px;
    border-radius: 30px;
    background: var(--primary-blue);
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    transition: all 0.25s ease;
}

.daily-word-link:hover {
    background: var(--nav-back);
    transform: translateX(3px);
    box-shadow: 0 5px 12px rgba(255, 106, 0, 0.2);
}


/* Empty state */

.word-of-day-empty {
    padding: 30px 5px;
    text-align: center;
    color: #666;
    font-size: 0.95rem;
}


/* =========================================================
   3/4 FEATURE AREA
   ========================================================= */

.daily-feature-placeholder {
    min-width: 0;
    min-height: 320px;

    background:
        linear-gradient(
            145deg,
            rgba(10, 0, 76, 0.96),
            rgba(10, 0, 76, 0.88)
        );

    border-radius: 28px;
    padding: 2.5rem;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 10px 25px rgba(10, 0, 76, 0.08);
    overflow: hidden;
    position: relative;
}


/* Decorative circles */

.daily-feature-placeholder::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 106, 0, 0.12);
    top: -80px;
    right: -50px;
}

.daily-feature-placeholder::after {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    bottom: -70px;
    left: -40px;
}


/* Placeholder content */

.placeholder-inner {
    position: relative;
    z-index: 1;
    max-width: 650px;
    text-align: center;
    color: white;
}

.placeholder-icon {
    display: inline-flex;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    font-size: 2rem;
    margin-bottom: 16px;
}

.placeholder-inner h2 {
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    margin-bottom: 12px;
    color: white;
}

.placeholder-inner p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: auto;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .daily-feature-section {
        grid-template-columns: 3fr 7fr;
        gap: 18px;
    }

    .word-of-day-card {
        padding: 1.3rem;
    }

    .daily-feature-placeholder {
        padding: 2rem;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 680px) {

    .daily-feature-section {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .word-of-day-card {
        border-radius: 24px;
        padding: 1.4rem;
    }

    .daily-feature-placeholder {
        min-height: 260px;
        border-radius: 24px;
        padding: 2rem 1.4rem;
    }

    .daily-word {
        font-size: 2.2rem;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

    .word-of-day-card {
        padding: 1.2rem;
    }

    .word-of-day-header {
        gap: 9px;
    }

    .word-of-day-icon {
        width: 38px;
        height: 38px;
        font-size: 1.15rem;
    }

    .word-of-day-label {
        font-size: 0.75rem;
    }

    .daily-word {
        font-size: 2rem;
    }

    .daily-word-block p {
        font-size: 0.88rem;
    }

    .daily-word-link {
        width: 100%;
    }

}




.daily-pronunciation {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pronunciation-btn {
    border: none;
    background: transparent;
    padding: 4px;
    margin: 0;
    cursor: pointer;
    font-size: 1.25rem;
    line-height: 1;
}

.pronunciation-btn:hover {
    transform: scale(1.15);
}

.pronunciation-btn:active {
    transform: scale(0.95);
}

.phonetic-text {
    font-size: 0.95rem;
    color: #444;
}

/* Keep audio in DOM but completely outside visual layout */
.word-audio {
    position: fixed;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}







/* =========================================================
   DAILY QUESTION
   ========================================================= */

.daily-challenge-section {
    width: 100%;

    background: linear-gradient(145deg, #faf9ff, #f0eff7);

    border-radius: 40px;

    padding: 2.8rem;

    margin: 2.5rem 0;

    border: 1px solid rgba(10, 0, 76, 0.06);

    box-shadow: 0 12px 30px rgba(10, 0, 76, 0.05);
}


/* =========================================================
   HEADING
   ========================================================= */

.challenge-title {
    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    gap: 12px;

    margin-bottom: 2.5rem;
}


.challenge-icon {
    width: 62px;
    height: 62px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: white;

    border-radius: 50%;

    font-size: 2rem;

    box-shadow: 0 6px 18px rgba(10, 0, 76, 0.08);
}


.challenge-title h2 {
    margin: 0;

    color: var(--primary-blue);

    font-size: clamp(1.8rem, 3vw, 2.7rem);

    line-height: 1.2;

    font-weight: 800;
}


/* =========================================================
   QUESTION
   ========================================================= */

.challenge-question {
    width: 100%;

    text-align: center;

    margin-bottom: 2rem;
}


.question-number {
    display: inline-block;

    padding: 6px 14px;

    margin-bottom: 14px;

    background: #fff0e0;

    border-radius: 30px;

    font-size: 0.8rem;

    font-weight: 700;

    letter-spacing: 0.08em;
}


.challenge-question h3 {
    width: 100%;

    margin: 0 auto;

    color: var(--primary-blue);

    font-size: clamp(1.4rem, 2.4vw, 2rem);

    line-height: 1.5;

    font-weight: 700;
}


/* =========================================================
   OPTIONS
   ========================================================= */

.challenge-options {
    width: 100%;

    max-width: 900px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 16px;
}


.challenge-option {
    display: flex;

    align-items: center;

    width: 100%;

    min-height: 68px;

    padding: 14px 18px;

    margin: 0;

    background: white;

    border: 2px solid #e5e5e5;

    border-radius: 16px;

    cursor: pointer;

    text-align: left;

    font-family: inherit;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.2s ease,
        box-shadow 0.25s ease;
}


.challenge-option:hover:not(:disabled) {
    border-color: var(--primary-blue);

    background: #fafaff;

    transform: translateY(-2px);

    box-shadow: 0 6px 16px rgba(10, 0, 76, 0.08);
}


.challenge-option:disabled {
    cursor: default;

    opacity: 1;
}


/* =========================================================
   OPTION LETTER
   ========================================================= */

.option-letter {
    width: 38px;
    height: 38px;

    flex-shrink: 0;

    margin-right: 14px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f0eff7;

    color: var(--primary-blue);

    font-size: 0.95rem;

    font-weight: 800;
}


.option-text {
    flex: 1;

    color: #2d2d3a;

    font-size: 1rem;

    line-height: 1.5;

    font-weight: 600;
}


/* =========================================================
   CORRECT
   ========================================================= */

.challenge-option.correct {
    background: #dff6e7;

    border-color: #20a052;

    box-shadow: 0 5px 16px rgba(32, 160, 82, 0.15);
}


.challenge-option.correct .option-letter {
    background: #20a052;

    color: white;
}


.challenge-option.correct .option-text {
    color: #126b36;
}


/* =========================================================
   WRONG
   ========================================================= */

.challenge-option.wrong {
    background: #fde2e2;

    border-color: #dc3545;

    box-shadow: 0 5px 16px rgba(220, 53, 69, 0.12);
}


.challenge-option.wrong .option-letter {
    background: #dc3545;

    color: white;
}


.challenge-option.wrong .option-text {
    color: #a51d2a;
}


/* =========================================================
   EMPTY
   ========================================================= */

.challenge-empty {
    text-align: center;

    padding: 2rem 1rem;
}


.challenge-empty p {
    margin: 0;

    color: #555;

    font-size: 1.05rem;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 768px) {

    .daily-challenge-section {
        padding: 2rem 1.5rem;

        border-radius: 30px;

        margin: 2rem 0;
    }


    .challenge-title {
        margin-bottom: 2rem;
    }


    .challenge-icon {
        width: 54px;
        height: 54px;

        font-size: 1.7rem;
    }


    .challenge-title h2 {
        font-size: 2rem;
    }


    .challenge-options {
        grid-template-columns: 1fr;

        gap: 12px;
    }


    .challenge-option {
        min-height: 62px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .daily-challenge-section {
        padding: 1.6rem 1rem;

        border-radius: 24px;

        margin: 1.5rem 0;
    }


    .challenge-title {
        gap: 8px;

        margin-bottom: 1.7rem;
    }


    .challenge-icon {
        width: 46px;
        height: 46px;

        font-size: 1.4rem;
    }


    .challenge-title h2 {
        font-size: 1.6rem;
    }


    .question-number {
        font-size: 0.7rem;

        padding: 5px 11px;
    }


    .challenge-question h3 {
        font-size: 1.15rem;

        line-height: 1.45;
    }


    .challenge-option {
        min-height: 58px;

        padding: 12px 14px;

        border-radius: 13px;
    }


    .option-letter {
        width: 34px;
        height: 34px;

        margin-right: 10px;

        font-size: 0.85rem;
    }


    .option-text {
        font-size: 0.92rem;
    }
}


/* =========================================================
   RESULT STATE
   ========================================================= */

.challenge-result-state {
    display: none;

    width: 100%;

    text-align: center;

    animation: challengeResultFade 0.45s ease;
}


/* Show result state */

.daily-challenge-section.show-result
.challenge-question-state {
    display: none;
}


.daily-challenge-section.show-result
.challenge-result-state {
    display: block;
}


/* =========================================================
   RESULT ICON
   ========================================================= */

.result-icon {
    width: 78px;
    height: 78px;

    margin: 0 auto 1.25rem;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ffffff;

    font-size: 2.4rem;

    box-shadow: 0 8px 22px rgba(10, 0, 76, 0.08);
}


/* Correct icon */

.daily-challenge-section.result-correct
.result-icon::before {
    content: "🎉";
}


/* Wrong icon */

.daily-challenge-section.result-wrong
.result-icon::before {
    content: "💡";
}


/* =========================================================
   RESULT MESSAGE
   ========================================================= */

.result-message {
    margin: 20px auto;

    max-width: 800px;

    font-size: clamp(1.8rem, 4vw, 2.8rem);

    line-height: 1.25;

    font-weight: 800;

    color: var(--primary-blue);
}


.daily-challenge-section.result-correct
.result-message {
    color: #159447;
}


.daily-challenge-section.result-wrong
.result-message {
    color: #dc3545;
}


/* =========================================================
   RESULT SUBTITLE
   ========================================================= */

.result-subtitle {
    margin: 0.9rem 0 2rem;

    font-size: 1.1rem;

    font-weight: 700;

    color: #555;

    letter-spacing: 0.04em;
}


/* =========================================================
   EXPLORE CARDS
   ========================================================= */

.explore-cards {
    width: 100%;

    max-width: 1050px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 18px;
}


/* =========================================================
   EXPLORE CARD
   ========================================================= */

.explore-card {
    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: flex-start;

    min-height: 260px;

    padding: 2rem 1.5rem;

    box-sizing: border-box;

    background: #ffffff;

    border: 1px solid rgba(10, 0, 76, 0.07);

    border-radius: 24px;

    text-decoration: none;

    box-shadow: 0 8px 24px rgba(10, 0, 76, 0.06);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}


.explore-card:hover {
    transform: translateY(-6px);

    border-color: rgba(10, 0, 76, 0.14);

    box-shadow: 0 14px 30px rgba(10, 0, 76, 0.11);
}


/* =========================================================
   CARD ICON
   ========================================================= */

.explore-card-icon {
    width: 60px;
    height: 60px;

    margin-bottom: 1rem;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #f3f2fa;

    font-size: 1.8rem;
}


/* =========================================================
   CARD HEADING
   ========================================================= */

.explore-card h3 {
    margin: 0 0 0.7rem;

    color: var(--primary-blue);

    font-size: 1.3rem;

    font-weight: 800;
}


/* =========================================================
   CARD DESCRIPTION
   ========================================================= */

.explore-card p {
    margin: 0;

    color: #555;

    font-size: 0.95rem;

    line-height: 1.6;

    text-align: center;
}


/* =========================================================
   CARD LINK
   ========================================================= */

.explore-card-link {
    margin-top: auto;

    padding-top: 1.25rem;

    color: var(--nav-back);

    font-size: 0.9rem;

    font-weight: 800;
}


/* =========================================================
   ANIMATION
   ========================================================= */

@keyframes challengeResultFade {

    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 850px) {

    .explore-cards {
        grid-template-columns: 1fr;

        max-width: 550px;
    }


    .explore-card {
        min-height: auto;

        padding: 1.75rem 1.5rem;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .result-icon {
        width: 65px;
        height: 65px;

        font-size: 2rem;
    }


    .result-message {
        font-size: 1.7rem;
    }


    .result-subtitle {
        font-size: 1rem;

        margin-bottom: 1.5rem;
    }


    .explore-card {
        padding: 1.5rem 1.25rem;

        border-radius: 20px;
    }

}


/* =========================================================
   CHALLENGE HEADER — FULLY CENTERED
   ========================================================= */

.challenge-header {
    width: 100%;
    max-width: 900px;

    margin: 0 auto 2.5rem;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
}


.challenge-icon {
    width: 64px;
    height: 64px;

    margin: 0 auto 1rem;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;

    border-radius: 50%;

    font-size: 2rem;

    box-shadow: 0 8px 20px rgba(255, 106, 0, 0.25);
}


.challenge-header h2 {
    width: 100%;

    margin: 0;

    text-align: center;

    font-size: clamp(2rem, 4vw, 3rem);

    line-height: 1.2;

    color: var(--primary-blue);

    font-weight: 800;
}


.challenge-subtitle {
    width: 100%;
    max-width: 760px;

    margin: 1rem auto 0;

    text-align: center;

    font-size: 1.05rem;

    line-height: 1.7;

    color: #3d3d4a;

    opacity: 0.9;
}







/* =========================================================
   WORD WISE DICTIONARY FOOTER
   ========================================================= */

.footer-section {
    position: relative;

    width: 100%;

    margin-top: 40px;

    background:
        linear-gradient(
            145deg,
            #0a004c,
            #080035
        );

    color: white;

    overflow: hidden;
}


/* =========================================================
   TOP ACCENT
   ========================================================= */

.footer-section::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            var(--nav-back),
            #ff8a3d,
            var(--nav-back)
        );
}


/* =========================================================
   DECORATIVE BACKGROUND
   ========================================================= */

.footer-section::after {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    right: -180px;
    bottom: -250px;

    background: rgba(255, 106, 0, 0.08);

    pointer-events: none;
}


/* =========================================================
   MAIN FOOTER
   ========================================================= */

.footer-main {
    position: relative;
    z-index: 1;

    width: 100%;

    max-width: 1400px;

    margin: 0 auto;

    padding: 55px 50px 45px;

    display: grid;

    grid-template-columns:
        2.2fr
        1fr
        1fr
        1.5fr;

    gap: 50px;
}


/* =========================================================
   BRAND
   ========================================================= */

.footer-brand {
    max-width: 390px;
}


.footer-logo {
    width: 58px;
    height: 58px;

    margin-bottom: 14px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: white;

    border-radius: 14px;

    overflow: hidden;

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.18);
}


.footer-logo img {
    width: 85%;
    height: 85%;

    object-fit: contain;
}


.footer-brand h2 {
    margin: 0 0 12px;

    color: var(--nav-back);

    font-size: clamp(1.4rem, 2vw, 1.8rem);

    font-weight: 800;

    letter-spacing: -0.02em;
}


.footer-brand > p {
    margin: 0 0 22px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 0.95rem;

    line-height: 1.7;
}


/* =========================================================
   FOOTER CTA
   ========================================================= */

.footer-cta {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 11px 20px;

    border-radius: 30px;

    background: var(--nav-back);

    color: white;

    text-decoration: none;

    font-size: 0.9rem;

    font-weight: 700;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}


.footer-cta:hover {
    background: white;

    color: var(--primary-blue);

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(255, 106, 0, 0.25);
}


/* =========================================================
   FOOTER COLUMNS
   ========================================================= */

.footer-column {
    min-width: 0;
}


.footer-column h3 {
    position: relative;

    margin: 0 0 20px;

    padding-bottom: 10px;

    color: white;

    font-size: 1.05rem;

    font-weight: 800;
}


.footer-column h3::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 35px;
    height: 3px;

    border-radius: 5px;

    background: var(--nav-back);
}


.footer-column ul {
    list-style: none;

    padding: 0;
    margin: 0;
}


.footer-column li {
    margin-bottom: 11px;
}


.footer-column li a {
    position: relative;

    color: rgba(255, 255, 255, 0.72);

    text-decoration: none;

    font-size: 0.9rem;

    transition:
        color 0.2s ease,
        padding-left 0.2s ease;
}


.footer-column li a:hover {
    color: var(--nav-back);

    padding-left: 6px;
}


/* =========================================================
   HIGHLIGHT COLUMN
   ========================================================= */

.footer-highlight > p {
    margin: 0 0 20px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 0.9rem;

    line-height: 1.7;
}


.footer-features {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;
}


.footer-features span {
    display: inline-flex;

    align-items: center;

    padding: 7px 11px;

    border-radius: 20px;

    background: rgba(255, 255, 255, 0.08);

    border: 1px solid rgba(255, 255, 255, 0.08);

    color: rgba(255, 255, 255, 0.85);

    font-size: 0.78rem;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}


.footer-features span:hover {
    background: rgba(255, 106, 0, 0.18);

    transform: translateY(-2px);
}


/* =========================================================
   FOOTER DIVIDER
   ========================================================= */

.footer-bottom {
    position: relative;

    z-index: 1;

    width: 100%;

    max-width: 1400px;

    margin: 0 auto;

    padding: 20px 50px;

    border-top:
        1px solid rgba(255, 255, 255, 0.12);

    display: grid;

    grid-template-columns: 1fr auto 1fr;

    align-items: center;

    gap: 20px;
}


/* =========================================================
   BOTTOM TEXT
   ========================================================= */

.footer-bottom p {
    margin: 0;

    color: rgba(255, 255, 255, 0.55);

    font-size: 0.78rem;
}


.footer-bottom-center {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    color: rgba(255, 255, 255, 0.48);

    font-size: 0.75rem;

    text-align: center;
}


.footer-dot {
    color: var(--nav-back);

    font-weight: 800;
}


/* =========================================================
   BOTTOM LINKS
   ========================================================= */

.footer-bottom-right {
    display: flex;

    justify-content: flex-end;

    gap: 18px;
}


.footer-bottom-right a {
    color: rgba(255, 255, 255, 0.6);

    text-decoration: none;

    font-size: 0.78rem;

    transition: color 0.2s ease;
}


.footer-bottom-right a:hover {
    color: var(--nav-back);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .footer-main {
        grid-template-columns:
            1.5fr
            1fr
            1fr;

        gap: 35px;

        padding: 45px 35px;
    }

    .footer-brand {
        grid-column: 1 / -1;

        max-width: 650px;
    }

    .footer-bottom {
        padding-left: 35px;
        padding-right: 35px;

        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom-center {
        display: none;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 680px) {

    .footer-main {
        grid-template-columns: 1fr;

        gap: 30px;

        padding: 42px 25px 35px;
    }


    .footer-brand {
        grid-column: auto;

        max-width: 100%;
    }


    .footer-column h3 {
        margin-bottom: 14px;
    }


    .footer-bottom {
        grid-template-columns: 1fr;

        text-align: center;

        padding: 18px 20px 24px;

        gap: 12px;
    }


    .footer-bottom-right {
        justify-content: center;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

    .footer-main {
        padding-left: 18px;
        padding-right: 18px;
    }


    .footer-brand h2 {
        font-size: 1.35rem;
    }


    .footer-brand > p {
        font-size: 0.88rem;
    }


    .footer-bottom {
        padding-left: 15px;
        padding-right: 15px;
    }


    .footer-bottom-right {
        gap: 14px;
    }

}





.words-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
}

.word-link {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 45px;
    padding: 10px 12px;

    text-align: center;
    text-decoration: none;

    border: 1px solid #ddd;
    border-radius: 6px;

    word-break: break-word;
}

.word-link:hover {
    text-decoration: underline;
}

.words-buttons {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 10px;

    margin-top: 20px;
}

.words-button {
    padding: 10px 24px;

    border: none;
    border-radius: 6px;

    cursor: pointer;

    font-size: 16px;
}

#seeLessButton {
    display: none;
}


/* Tablet */

@media (max-width: 900px) {

    .words-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

}


/* Mobile */

@media (max-width: 600px) {

    .words-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* Very small mobile */

@media (max-width: 350px) {

    .words-grid {
        grid-template-columns: 1fr;
    }

}