/* ========== RESET & BASE ========== */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

:root {
--pink: #d22e80;
--blue: #13154e;
--blue-deep: #0b0d2e;
--blue-light: #1f226b;
--blue-muted: #4a4d7a;
--white: #ffffff;
--black: #000000;
--gray-50: #f8f7fa;
--gray-100: #f0eef4;
--gray-200: #e2dfe8;
--gray-300: #c5c0d0;
--gray-400: #a39db8;
--gray-500: #7a7392;
--gray-600: #5a5470;
--gray-700: #3d3852;
--ink: var(--black);
--paper: var(--gray-50);
--card: var(--white);
--line: var(--gray-200);
--muted: var(--gray-600);
/* Using Roboto as the primary font */
--font-primary: "Roboto", system-ui, sans-serif;
--wrap: 80%;
--radius: 12px;
}

html {
scroll-behavior: smooth;
}
body {
font-family: var(--font-primary);
color: var(--ink);
background: var(--paper);
line-height: 1.6;
-webkit-font-smoothing: antialiased;
}
a {
color: inherit;
text-decoration: none;
}
h1,
h2,
h3,
h4 {
font-family: var(--font-primary);
line-height: 1.1;
font-weight: 700;
letter-spacing: -0.02em;
}
.wrap {
max-width: var(--wrap);
margin: 0 auto;
padding: 0 24px;
}
section {
position: relative;
padding: 114px 0;
}

/* ========== BUTTONS ========== */
.btn {
display: inline-flex;
align-items: center;
gap: 0.5em;
font-family: var(--font-primary);
font-weight: 600;
font-size: 0.95rem;
padding: 0.7em 1.6em;
border-radius: 6px;
cursor: pointer;
border: 1.5px solid transparent;
transition: all 0.2s ease;
}
.btn-primary {
background: var(--pink);
color: var(--white);
border-color: var(--pink);
}
.btn-primary:hover {
background: #b8226a;
border-color: #b8226a;
transform: translateY(-1px);
box-shadow: 0 4px 12px rgba(210, 46, 128, 0.3);
}
.btn-ghost {
background: transparent;
border-color: var(--blue);
color: var(--blue);
}
.btn-ghost:hover {
background: var(--blue);
color: var(--white);
}
.btn-lg {
font-size: 1.05rem;
padding: 0.8em 2em;
}

/* ========== HEADER ========== */
header {
position: sticky;
top: 0;
z-index: 50;
background: rgba(255, 255, 255, 0.92);
backdrop-filter: blur(8px);
border-bottom: 1px solid var(--line);
}
.nav {
display: flex;
align-items: center;
justify-content: space-between;
height: 100px;
gap: 20px;
}
.brand {
display: flex;
flex-shrink: 0;
align-items: center;
gap: 0.6rem;
font-family: var(--font-primary);
font-weight: 700;
font-size: 1.2rem;
color: var(--blue);
}
.brand .logo {
height: 100px;
width: auto;
max-height: 83px;
display: block;
object-fit: contain;
}
.brand .dot {
width: 28px;
height: 28px;
border-radius: 50%;
background: var(--pink);
position: relative;
flex: none;
}
.brand .dot::after {
content: "";
position: absolute;
inset: 7px;
border-radius: 50%;
border: 2px solid var(--white);
}
.nav-links {
display: flex;
align-items: center;
gap: 28px;
}
.nav-links a {
font-weight: 500;
font-size: 20px;
color: var(--muted);
}
.nav-links a:hover {
color: var(--blue);
}
@media (max-width: 860px) {
.nav-links {
    display: none;
}
}
@media (max-width: 768px) {
.brand .logo {
    height: 35px;
    max-height: 35px;
}
.nav {
    height: 60px;
}
}

/* ========== HERO ========== */
.hero {
padding: 56px 0 64px;
background: linear-gradient(165deg, #f8f7fa 0%, #f0eef4 100%);
border-bottom: 1px solid var(--line);
}
.hero-grid {
display: grid;
grid-template-columns: 1.3fr 0.9fr;
gap: 48px;
align-items: center;
}
@media (max-width: 900px) {
.hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
}
}
.hero h1 {
font-size: 50px;
max-width: 100%;
letter-spacing: -0.03em;
margin-bottom: 5px;
}
.hero .head{
  font-family: var(--font-d);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--blue);
  margin-top: 22px;
  line-height: 1.4rem;
}
.hero .subhead {
font-size: 1.1rem;
color: var(--muted);
margin-top: 5x;
max-width: 50ch;
}
.hero .meta {
display: flex;
flex-wrap: wrap;
gap: 12px;
margin: 24px 0 28px;
}
.hero .meta span {
background: var(--white);
padding: 0.3em 1em;
border-radius: 4px;
border: 1px solid var(--line);
font-size: 0.9rem;
font-weight: 500;
color: var(--blue);
}
.hero .actions {
display: flex;
flex-wrap: wrap;
gap: 12px;
}

/* Countdown Card */
.count-card {
background: var(--blue);
color: var(--white);
border-radius: var(--radius);
padding: 28px 24px;
box-shadow: 0 20px 40px -16px rgba(19, 21, 78, 0.4);
border: 1px solid rgba(255, 255, 255, 0.06);
}
.count-card .label {
font-size: 0.8rem;
text-transform: uppercase;
letter-spacing: 0.12em;
color: #a8aad4;
font-weight: 600;
}
.count-card h3 {
font-size: 1.3rem;
margin: 6px 0 16px;
color: var(--white);
}
.cd-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 8px;
margin-bottom: 16px;
}
.cd-grid .unit {
background: rgba(255, 255, 255, 0.06);
border-radius: 8px;
padding: 10px 4px;
text-align: center;
border: 1px solid rgba(255, 255, 255, 0.06);
}
.cd-grid .num {
font-family: var(--font-primary);
font-size: 1.8rem;
font-weight: 700;
line-height: 1;
color: var(--white);
}
.cd-grid .lab {
font-size: 0.6rem;
text-transform: uppercase;
color: #a8aad4;
letter-spacing: 0.08em;
margin-top: 4px;
}
.count-card .deadline {
font-size: 16px;
color: #bfe1d6;
border-top: 1px solid rgba(255, 255, 255, 0.06);
padding-top: 14px;
}
.count-card .deadline b {
color: var(--pink);
}

/* ========== SECTION HEADERS ========== */
.sec-eyebrow {
font-weight: 600;
font-size: 0.8rem;
letter-spacing: 0.16em;
text-transform: uppercase;
color: var(--pink);
margin-bottom: 8px;
}
.sec-title {
font-size: 40px;
max-width: 100%;
}
.sec-intro {
color: var(--muted);
font-size: 1.05rem;
max-width: 80ch;
margin-top: 12px;
}

/* ========== THE IDEA ========== */
.idea {
background: var(--blue);
color: var(--white);
/*padding: 72px 0;*/
}
.idea .sec-eyebrow {
color: var(--pink);
}
.idea .sec-title {
color: var(--white);
}
.idea p {
color: #c7d6cf;
font-size: 1.1rem;
max-width: 80%;
margin-top: 16px;
}
.pullquote-container{
    margin-top: 40px;
}
.pullquote-container .pullquote{
    margin-top: 10px;
}
.pullquote {
font-family: var(--font-primary);
font-weight: 700;
font-size: clamp(1.6rem, 4vw, 2.8rem);
color: var(--white);
line-height: 1.15;
margin-top: 32px;
max-width: 80%;
}
.pullquote .hl {
color: var(--pink);
}
span.pm:before {
content: "+";
position: absolute;
margin-top: 0px;
margin-left: 0px;
}

/* ========== TOPICS ========== */
.topics {
background: var(--white);
border-bottom: 1px solid var(--line);
}
.topic-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 24px;
margin-top: 40px;
}
@media (max-width: 760px) {
.topic-grid {
    grid-template-columns: 1fr;
}
}
.topic {
background: var(--paper);
padding: 28px 28px 24px;
border-radius: var(--radius);
border: 1px solid var(--line);
transition: all 0.2s ease;
display: flex;
flex-direction: column;
}
.topic:hover {
transform: translateY(-3px);
box-shadow: 0 8px 24px -12px rgba(19, 21, 78, 0.15);
border-color: var(--pink);
}
.topic .num {
font-weight: 700;
font-size: 0.85rem;
color: var(--pink);
letter-spacing: 0.05em;
}
.topic h3 {
font-size: 22px;
margin: 6px 0 4px;
}
.topic .hook {
font-family: var(--font-primary);
font-weight: 600;
color: var(--blue);
font-size: 20px;
margin-bottom: 16px;
}
.topic ul {
list-style: none;
display: flex;
flex-direction: column;
gap: 8px;
margin-bottom: 20px;
flex: 1;
}
.topic li {
position: relative;
padding-left: 20px;
font-size: 16px;
color: var(--muted);
}

.topic li::before {
content: "";
position: absolute;
left: 2px;
top: 10px;
width: 6px;
height: 6px;
border-radius: 50%;
background: var(--pink);
}
.topic .pick {
align-self: flex-start;
background: var(--blue);
color: var(--white);
border: 0;
border-radius: 6px;
padding: 0.3em 1.2em 0.5em;
font-weight: 600;
font-size: 16px;
cursor: pointer;
transition: all 0.2s ease;
font-family: var(--font-primary);
}
.topic .pick:hover {
background: var(--pink);
transform: translateX(4px);
}
.topic-note {
text-align: center;
margin-top: 28px;
font-size: 0.9rem;
color: var(--muted);
text-transform: uppercase;
}

/* ========== BENEFITS ========== */
.benefit-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
margin-top: 40px;
}
@media (max-width: 820px) {
.benefit-grid {
    grid-template-columns: 1fr 1fr;
}
}
@media (max-width: 520px) {
.benefit-grid {
    grid-template-columns: 1fr;
}
}
.benefit {
background: var(--white);
padding: 28px 24px;
border-radius: var(--radius);
border: 1px solid var(--line);
transition: all 0.2s ease;
}
.benefit:hover {
border-color: var(--pink);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}
.benefit .ic {
font-size: 1.8rem;
margin-bottom: 12px;
}
.benefit h4 {
font-size: 20px;
margin-bottom: 4px;
}
.benefit p {
font-size: 16px;
color: var(--muted);
}

/* ========== STEPS ========== */
.steps {
background: var(--gray-100);
border-top: 1px solid var(--line);
border-bottom: 1px solid var(--line);
}
.step-grid {
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: 16px;
margin-top: 40px;
}
@media (max-width: 900px) {
.step-grid {
    grid-template-columns: 1fr 1fr 1fr;
}
}
@media (max-width: 600px) {
.step-grid {
    grid-template-columns: 1fr 1fr;
}
}
.step {
background: var(--white);
padding: 24px 20px;
border-radius: var(--radius);
border: 1px solid var(--line);
text-align: center;
}
.step .n {
font-family: var(--font-primary);
font-weight: 800;
font-size: 2rem;
color: var(--pink);
line-height: 1;
margin-bottom: 15px;
}
.step h4 {
font-size: 20px;
margin-bottom: 15px;
}
.step p {
font-size: 16px;
color: var(--muted);
}

/* ========== FORM ========== */
.form-sec {
background: var(--blue);
color: var(--white);
}
.form-sec .sec-eyebrow {
color: var(--pink);
}
.form-sec .sec-title {
color: var(--white);
}
.form-sec .sec-intro {
color: #bfe1d6;
}
.form-card {
background: var(--white);
color: var(--ink);
border-radius: var(--radius);
padding: 32px 36px;
margin-top: 32px;
max-width: 102%;
box-shadow: 0 24px 48px -24px rgba(0, 0, 0, 0.5);
}
.fgroup-title {
font-family: var(--font-primary);
font-weight: 700;
color: var(--blue);
font-size: 22px;
margin: 28px 0 4px;
display: flex;
align-items: center;
gap: 10px;
}
.fgroup-title:first-child {
margin-top: 0;
}
.fgroup-title span {
flex: none;
width: 28px;
height: 28px;
border-radius: 50%;
background: var(--pink);
color: var(--white);
display: grid;
place-items: center;
font-size: 0.8rem;
font-family: var(--font-primary);
}
.fgroup-title small {
margin-left: auto;
font-weight: 500;
color: var(--gray-400);
font-size: 0.7rem;
letter-spacing: 0.08em;
text-transform: uppercase;
font-family: var(--font-primary);
}
hr.fdiv {
border: 0;
border-top: 1px solid var(--line);
margin: 4px 0 12px;
}
.grid2 {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 16px;
}
@media (max-width: 600px) {
.grid2 {
    grid-template-columns: 1fr;
}
}
.field {
display: flex;
flex-direction: column;
gap: 4px;
margin-top: 12px;
}
.field.full {
grid-column: 1 / -1;
}
label {
font-weight: 600;
font-size: 18px;
color: var(--blue);
}
label .req {
color: var(--pink);
}
input,
select,
textarea {
font-family: var(--font-primary);
font-size: 16px;
padding: 0.7em 0.9em;
border: 1.5px solid var(--line);
border-radius: 6px;
background: var(--white);
color: var(--ink);
width: 100%;
transition: all 0.15s ease;
}
input:focus,
select:focus,
textarea:focus {
outline: none;
border-color: var(--pink);
box-shadow: 0 0 0 3px rgba(210, 46, 128, 0.1);
}
textarea {
resize: vertical;
min-height: 140px;
}
.hint {
font-size: 16px;
color: var(--muted);
margin-top: 2px;
}
.filebox {
border: 1.5px dashed var(--line);
border-radius: 6px;
padding: 0.7em 0.9em;
font-size: 0.9rem;
color: var(--muted);
background: var(--gray-50);
}
.counter {
align-self: flex-end;
font-size: 0.8rem;
font-weight: 600;
color: var(--muted);
margin-top: 2px;
}
.counter.warn {
color: var(--pink);
}
.counter.over {
color: #c0392b;
}
.check {
display: flex;
gap: 5px;
align-items: flex-start;
margin-top: 16px;
font-size: 0.92rem;
color: var(--muted);
}
.check input {
width: 18px;
height: 18px;
flex: none;
margin-top: 3px;
accent-color: var(--pink);
border-radius: 4px;
}
.form-actions {
margin-top: 24px;
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 16px;
}
.preview-note {
font-size: 0.8rem;
color: var(--muted);
}
.or-span{
    width: 100%;
    text-align: center;
    display: block;
    margin: 5px 0px 10px 0px;
    color: #d22e80;
    font-weight: 600; 
    font-size: 20px;
}

/* Confirmation */
.confirm {
display: none;
background: var(--white);
color: var(--ink);
border-radius: var(--radius);
padding: 48px 36px;
margin-top: 32px;
text-align: center;
max-width: 640px;
box-shadow: 0 24px 48px -24px rgba(0, 0, 0, 0.4);
}
.confirm.show {
display: block;
animation: pop 0.4s ease;
}
@keyframes pop {
from {
    transform: scale(0.96);
    opacity: 0;
}
to {
    transform: scale(1);
    opacity: 1;
}
}
.confirm .tick {
width: 72px;
height: 72px;
border-radius: 50%;
background: var(--pink);
color: var(--white);
display: grid;
place-items: center;
margin: 0 auto 16px;
font-size: 2rem;
}
.confirm h3 {
font-size: 1.8rem;
color: var(--blue);
}
.confirm p {
color: var(--muted);
margin-top: 8px;
max-width: 44ch;
margin-inline: auto;
}
.confirm .cbtns {
display: flex;
gap: 12px;
justify-content: center;
flex-wrap: wrap;
margin-top: 20px;
}

/* ========== FAQ ========== */
.faq-wrap {
max-width: 100%;
margin: 40px auto 0;
display: grid;
grid-template-columns: 2fr 2fr;
gap: 14px;
align-items: start;
}
details {
background: var(--white);
border: 1px solid var(--line);
border-radius: 8px;
margin-bottom: 12px;
overflow: hidden;
}
summary {
cursor: pointer;
list-style: none;
padding: 10px 15px;
font-family: var(--font-primary);
font-weight: 600;
font-size: 1.05rem;
display: flex;
justify-content: space-between;
align-items: center;
gap: 16px;
transition: background 0.15s ease;
}
summary:hover {
background: var(--gray-50);
}
summary::-webkit-details-marker {
display: none;
}
summary .pm {
flex: none;
width: 28px;
height: 28px;
border-radius: 50%;
background: var(--gray-100);
color: var(--blue);
display: grid;
place-items: center;
font-size: 1.2rem;
transition: all 0.2s ease;
}
details[open] summary .pm {
transform: rotate(45deg);
background: var(--pink);
color: var(--white);
}
details .a {
padding: 5px 24px 20px;
color: var(--muted);
}

/* ========== FINAL CTA ========== */
.final {
background: linear-gradient(135deg, var(--blue), var(--blue-deep));
color: var(--white);
text-align: center;
padding: 72px 0;
border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.final h2 {
font-size: clamp(2rem, 4.5vw, 3rem);
max-width: 85%;
margin: 0 auto;
}
.final p {
color: #bfe1d6;
margin-top: 24px;
font-size: 1.1rem;
}
.final .btn {
margin-top: 28px;
}
.final .hashtags {
margin-top: 24px;
color: #a8aad4;
font-weight: 500;
letter-spacing: 0.04em;
font-size: 0.9rem;
}

.other-city-hide {
    display: none;
}

/* ========== FOOTER ========== */
footer {
background: var(--blue-deep);
color: #a9bcb4;
padding: 48px 0 32px;
font-size: 0.92rem;
border-top: 4px solid var(--pink);
}
.foot-grid {
display: grid;
grid-template-columns: 1.4fr 1fr 1fr;
gap: 32px;
}
@media (max-width: 720px) {
.foot-grid {
    grid-template-columns: 1fr;
}
}
footer .brand {
color: var(--white);
margin-bottom: 12px;
}
footer h5 {
color: var(--white);
font-family: var(--font-primary);
font-size: 20px;
margin-bottom: 12px;
}
footer a {
display: block;
margin-bottom: 6px;
color: #a9bcb4;
}
footer a:hover {
color: var(--pink);
}
.foot-bottom {
border-top: 1px solid rgba(255, 255, 255, 0.06);
margin-top: 32px;
padding-top: 20px;
display: flex;
justify-content: space-between;
flex-wrap: wrap;
gap: 10px;
font-size: 0.8rem;
color: #7f948b;
}
.tags {
color: var(--pink);
font-weight: 600;
}
.footer-block p{
    margin-bottom: 6px;
}
.footer-block a{
    display: inline-block;
}



/* =========================================================
   DO & DON'T GUIDELINES
========================================================= */

.guidelines {
  position: relative;
  padding: 100px 0 90px;
  background: var(--blue);
  color: var(--white);
  overflow: hidden;
}

/* Decorative background circles */
.guidelines::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 200px;
  background: url(../images/writing-pad.png);
  top: 200px;
  background-repeat: no-repeat;
  left: 50px;
  transform: rotate(-22deg);
}

.guidelines::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 240px;
  background: url(../images/award.png);
  top: 160px;
  background-repeat: no-repeat;
  right: 80px;
  transform: rotate(5deg);
}
.policy-container p{
    font-size: 18px;
}
.policy-container .head{
    margin-bottom: 10px;
    font-size: 24px;
    margin-top: 42px;
}
.policy-container ul{
    padding-left: 40px;
}

/* ---------------------------------------------------------
   HEADING
--------------------------------------------------------- */

.guidelines-heading {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 55px;
}

.guidelines-heading .sec-eyebrow {
  color: var(--pink);
  margin-bottom: 12px;
}

.guidelines-title {
  margin: 0;
  font-family: var(--font-d);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.guidelines-title span {
  color: var(--pink);
  position: relative;
}

.guidelines-title span::after {
  content: "";
  position: absolute;
  height: 5px;
  background: var(--pink);
  width: 75%;
  left: 12%;
  bottom: -9px;
  transform: rotate(-2deg);
  border-radius: 10px;
}

.guidelines-heading > p {
  max-width: 650px;
  margin: 28px auto 0;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}


/* ---------------------------------------------------------
   TWO CARDS
--------------------------------------------------------- */

.guidelines-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;

  max-width: 1180px;
  margin: 0 auto;
}


/* ---------------------------------------------------------
   CARD
--------------------------------------------------------- */

.guideline-card {
  border-radius: 22px;
  padding: 34px 34px 28px;
  color: var(--blue);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.do-card {
  background: #ffffff;
}

.dont-card {
  background: #fff7f9;
}


/* ---------------------------------------------------------
   CARD HEADER
--------------------------------------------------------- */

.guideline-card-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}

.guideline-card-header h3 {
  margin: 0;
  font-family: var(--font-d);
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.guideline-icon {
  width: 58px;
  height: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  font-size: 2rem;
  font-weight: 900;

  flex-shrink: 0;
}

.do-icon {
  background: #20b486;
  color: #ffffff;
}

.dont-icon {
  background: var(--pink);
  color: #ffffff;
}

.heading-line {
  width: 48px;
  height: 3px;
  margin-top: 5px;
  border-radius: 10px;
  background: var(--pink);
}


/* ---------------------------------------------------------
   LIST
--------------------------------------------------------- */

.guideline-list {
  display: flex;
  flex-direction: column;
}


/* ---------------------------------------------------------
   ITEM
--------------------------------------------------------- */

.guideline-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;

  padding: 15px 0;

  border-bottom: 1px solid rgba(20, 27, 86, 0.10);
}

.guideline-item:last-child {
  border-bottom: 0;
}

.item-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  font-size: 30px;
  font-weight: 800;

  background: #f5faf8;
  border: 2px solid #dcefe8;

  color: #16a67a;
}

.dont-card .item-icon {
  background: #ffffff;
  border-color: #ffd9e3;
  color: var(--pink);
}


/* ---------------------------------------------------------
   ITEM TYPOGRAPHY
--------------------------------------------------------- */

.guideline-item h4 {
  margin: 2px 0 4px;

  font-family: var(--font-d);
  font-size: 20px;
  line-height: 1.3;

  font-weight: 800;
}

.guideline-item p {
  margin: 0;

  font-size: 16px;
  line-height: 1.5;

  color: #5f6377;
}

.guideline-item strong {
  display: block;
  margin-top: 8px;

  font-size: 0.78rem;
  line-height: 1.4;

  color: var(--pink);
}


/* ---------------------------------------------------------
   NUMBER ICON
--------------------------------------------------------- */

.number-icon {
  font-size: 20px;
  line-height: 1;
  text-align: center;
}


/* ---------------------------------------------------------
   IMPORTANT DON'T RULE
--------------------------------------------------------- */

.important-rule {
  padding: 18px;

  margin-bottom: 3px;

  border: 1px solid rgba(213, 43, 125, 0.25);
  border-radius: 16px;

  background: #fff0f4;
}

.important-rule .item-icon {
  background: var(--pink);
  border: none;
  color: #ffffff;
}


/* ---------------------------------------------------------
   BOTTOM CTA
--------------------------------------------------------- */

.guidelines-cta {
  position: relative;
  z-index: 2;

  max-width: 1180px;
  margin: 55px auto 0;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}

.cta-copy p {
  margin: 0 0 6px;

  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

.cta-copy h3 {
  margin: 0;

  font-family: var(--font-d);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.3;
  font-weight: 800;
}

.cta-copy h3 span {
  color: var(--pink);
}

.cta-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.cta-buttons .btn-ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.7);
}

.cta-buttons .btn-ghost:hover {
  background: #ffffff;
  color: var(--blue);
}

.arrow {
  margin-left: 8px;
  font-size: 1.2em;
}


/* ---------------------------------------------------------
   RESPONSIVE — TABLET
--------------------------------------------------------- */

@media (max-width: 900px) {

  .guidelines {
    padding: 75px 0;
  }

  .guidelines-grid {
    grid-template-columns: 1fr;
    max-width: 700px;
  }

  .guidelines-cta {
    max-width: 700px;

    flex-direction: column;
    text-align: center;
  }

  .cta-buttons {
    justify-content: center;
  }
}


/* ---------------------------------------------------------
   RESPONSIVE — MOBILE
--------------------------------------------------------- */

@media (max-width: 600px) {

  .guidelines {
    padding: 60px 0;
  }

  .guidelines-heading {
    margin-bottom: 35px;
    padding: 0 15px;
  }

  .guidelines-title {
    font-size: 2.5rem;
  }

  .guidelines-heading > p {
    font-size: 0.9rem;
  }

  .guideline-card {
    padding: 25px 18px 20px;
    border-radius: 16px;
  }

  .guideline-card-header {
    gap: 13px;
  }

  .guideline-icon {
    width: 48px;
    height: 48px;
    font-size: 1.6rem;
  }

  .guideline-card-header h3 {
    font-size: 1.6rem;
  }

  .guideline-item {
    grid-template-columns: 42px 1fr;
    gap: 12px;
    padding: 13px 0;
  }

  .item-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .guideline-item h4 {
    font-size: 16px;
  }

  .guideline-item p {
    font-size: 14px;
  }

  .important-rule {
    padding: 13px;
  }

  .guidelines-cta {
    margin-top: 40px;
    padding: 0 15px;
  }

  .cta-copy h3 {
    font-size: 1.25rem;
  }

  .cta-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
    text-align: center;
  }
}





/* ========== REVEAL ========== */
.reveal {
opacity: 0;
transform: translateY(20px);
transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.in {
opacity: 1;
transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
.reveal {
    opacity: 1;
    transform: none;
}
* {
    scroll-behavior: auto;
}
}

.uploaded-file-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px;
  background: #fafafa;
  max-width: 300px;
}

.uploaded-image-wrapper {
  position: relative;
  display: inline-block;
}

.student-id-image {
  display: block;
  width: auto;
  max-width: 260px;
  max-height: 180px;
  object-fit: contain;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.uploaded-file-name {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #222;
  word-break: break-word;
}

.uploaded-file-size {
  margin-top: 3px;
  font-size: 11px;
  color: #777;
}


.document-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.document-icon {
  font-size: 28px;
}

.document-info {
  flex: 1;
  min-width: 0;
}

.document-info strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #222;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.document-info small {
  display: block;
  margin-top: 3px;
  font-size: 11px;
  color: #777;
}

.remove-file {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    border: none;
    border-radius: 50%;
    background: #dc3545;
    color: white;
    cursor: pointer;
    font-size: 14px;
    line-height: 24px;
    padding: 0;
}
#removeEssayFile{
    position: relative;
}

.remove-file:hover {
  opacity: 0.85;
}


#essayBox.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

#essayBox.disabled label {
  cursor: not-allowed !important;
}
.option-label{
    color: #d22e80;
    font-weight: 700;
    text-transform: uppercase; 
}


.pdf-preview {
  width: 100%;
  height: 250px;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-top: 10px;
}
#essayTextError{
    color: #dc3545;
    font-size: 14px;
    margin-top: 15px;
    font-weight: 500;
}
.banner-container{
    padding: 0px;
}
.banner-container img{
    width: 100%;
}
.mobile{
    display: none;
}
.pink-color{
    color:#d22e80;
}
.final h3{
    font-size: 24px;
    margin-top: 10px;
}

@media(max-width: 500px){
    .desktop{
        display: none;
    }
    .mobile{
        display: block;
    }
    .hero h1{
        font-size: 30px;
    }
    .wrap{
        padding: 0 0px;
    }
    .faq-wrap{
        max-width: 100%;
        grid-template-columns: 1fr;
    }
    .btn{
        font-size: 13px;
    }
    .wrap{
        max-width: 85%;
    }
    .form-card{
        padding: 32px 20px;
    }
    .guidelines::before {
        content: "";
        position: absolute;
        width: 100px;
        height: 80px;
        background: url(../images/writing-pad.png);
        top: 28px;
        background-repeat: no-repeat;
        left: 28px;
        transform: rotate(-15deg);
        background-size: 80px;
    }
    .guidelines::after {
        content: "";
        position: absolute;
        width: 100px;
        height: 100px;
        background: url(../images/award.png);
        top: 28px;
        background-repeat: no-repeat;
        right: 0px;
        transform: rotate(5deg);
        background-size: 70px;
    }
    .sec-title{
        font-size: 30px;
    }
    .fgroup-title{
        font-size: 20px;
    }
    label{
        font-size: 16px;
    }
    input, select, textarea{
        font-size: 14px;
    }
    .final h3{
        font-size: 20px;
    }
}

