@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
:root {
    --ptaj-red: #ff2d2e;
    --ptaj-blue: #20203b;
    --ptaj-glauc: #547aa5;
    --ptaj-robin: #50d8d7;
    --ptaj-winkle: #d1d2f9;
    --ptaj-oxford: #234240;
    --ptaj-grey: #cccccc;
    --ptaj-wasap: #25D366;
    --ptaj-body: "Lato", sans-serif;
    --ptaj-title: "Abril Fatface", serif;
}
* { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
*:focus { outline: none; }
html,body{min-height:100%;margin:0px;padding:0px;}
body{background-color:var(--ptaj-blue);color:white;font-family:var(--ptaj-body);font-size:18px;font-weight:500;}
input,select,button,textarea{font-family:inherit;font-size:inherit;}
a{text-decoration:none;color:white;}
a:hover{color:var(--ptaj-winkle);}
#particles-js {
    position: fixed;
    z-index: -99999999999999999999;
    width: 100%;
    height: 100%;
}

.mg-b-10 { margin-bottom: 10px; }
.mg-b-15 { margin-bottom: 15px; }
.mg-b-20 { margin-bottom: 20px; }
.mg-b-25 { margin-bottom: 25px; }
.mg-b-30 { margin-bottom: 30px; }
.mg-b-35 { margin-bottom: 35px; }
.mg-b-40 { margin-bottom: 40px; }
.mg-b-45 { margin-bottom: 45px; }
.mg-b-50 { margin-bottom: 50px; }

.callout-balloon {
  position: absolute;
  background-color: var(--ptaj-winkle);
  border: 3px solid var(--ptaj-oxford);
  border-radius: 12px;
  padding: 15px;
  margin: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  color: #333;
}

/* Triangle pointer (pointing left) */
.callout-balloon::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  border: 10px solid transparent;
  border-right-color: var(--ptaj-oxford)
}

.callout-balloon::after {
  content: '';
  position: absolute;
  left: -16px;
  top: 50%;
  transform: translateY(-50%);
  border: 8px solid transparent;
  border-right-color: var(--ptaj-winkle);
}

/* Alternative positioning variations */
.callout-balloon.top::before {
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  border: 10px solid transparent;
  border-bottom-color: var(--ptaj-oxford);
}

.callout-balloon.top::after {
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-bottom-color: var(--ptaj-winkle);
}

.callout-balloon.right::before {
  left: auto;
  right: -22px;
  border: 10px solid transparent;
  border-left-color: var(--ptaj-oxford);
}

.callout-balloon.right::after {
  left: auto;
  right: -18px;
  border: 10px solid transparent;
  border-left-color: var(--ptaj-winkle);
}

.callout-balloon.bottom::before {
  top: auto;
  bottom: -28px;
  right: 30px;
  left: auto;
  /*transform: translateX(-50%);*/
  transform: none;
  border: 14px solid transparent;
  border-top-color: var(--ptaj-oxford);
}

.callout-balloon.bottom::after {
  top: auto;
  bottom: -24px;
  right: 32px;
  left: auto;
  /*transform: translateX(-50%);*/
  transform: none;
  border: 12px solid transparent;
  border-top-color: var(--ptaj-winkle);
}

.cards {
    display: grid;
    gap: 20px;
    width: 100%;
}

.cards-2 {
    grid-template-columns: repeat(2, 1fr);
}
.cards-3 {
    grid-template-columns: repeat(3, 1fr);
}
.cards-4 {
    grid-template-columns: repeat(4, 1fr);
}

.card {
    width: 100%;
    position: relative;
    background-color: whitesmoke;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    color: black;
    opacity: 0.85;
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transform: scale(1.02);
    opacity: 1;
    transition: all 0.3s ease;
}

.card > img {
    display: block;
    width: 100%;
}

.card > h3,
.card > p {
    margin: 0px;
    padding: 15px;
}

.card > h3 {
    font-size: 24px;
}

.card-2 {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    aspect-ratio: 1 / 1;
    border: solid 2px whitesmoke;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 10px;
}

.card-2 > p {
    margin: 0px;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.9));
    z-index: 1;
    transition: all 0.2s ease;
}

.card-2 > span,
.card-2 > h3 {
    position: relative;
    z-index: 2;
}

.card-2 > span {
    font-weight: 500;
    font-size: 18px;
}

.card-2 > h3 {
    font-size: 24px;
}

.card-2:hover {
    color: yellow;
    transition: all 0.2s ease;
}

.card-2:hover > p {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 1));
    transition: all 0.2s ease;
}

#main {
    position: relative;
    width: 1200px;
    margin: 50px auto;
}

#no-show {
    display: none;
}

@media all and (max-width: 1365px) {
    #main {
        width: 90%;
    }
}

@media all and (max-width: 374px){
    #no-show {
        height: 100vh;
        display: block;
        font-size: 16px;
        margin: 0px;
        padding: 20px;
        text-align: center;
    }
    #main {
        display: none;
    }
}

#main .topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 100px;
}

#main .topbar a.logo {
    position: relative;
    width: 150px;
    display: block;
}

#main .topbar a.logo img {
    display: block;
    width: 100%;
}

#main .topbar nav {
    display: flex;
    align-items: flex-end;
    column-gap: 20px;
    position: relative;
}

#main .topbar nav ul.nav {
    list-style: none;
    padding: 0px;
    margin: 0px;
    display: flex;
    column-gap: 10px;
    font-size: 20px;
}

#main .topbar nav ul.nav > span {
    position: absolute;
    left: 15px;
    top: 0px;
    font-size: 16px;
    color: var(--ptaj-grey);
}

#main .topbar nav ul.nav li {
    position: relative;
}

#main .topbar nav ul.nav li:not(:last-child)::after {
    content: "";
    display: block;
    width: 1px;
    height: 50%;
    background-color: var(--ptaj-grey);
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
}

#main .topbar nav ul.nav li a {
    display: block;
    padding: 5px 15px;
}

#main .topbar nav > a.contact {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 15px;
    width: 220px;
    height: 60px;
    border-radius: 30px;
    border: solid 1px white;
    background-color: var(--ptaj-wasap);
}

#main .topbar nav > a.contact > .wasap-icon {
    position: relative;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6em;
    color: black;
}

#main .topbar nav > a.contact > .text {
    text-align: right;
    font-size: 0.8em;
    color: black;
    font-weight: 600;
}

#main .topbar nav > a.contact:hover {
    opacity: 0.9;
}

#main .banner {
    width: 100%;
    position: relative;
}

#main .banner > img {
    display: block;
    width: 100%;
}

#main .banner > .model {
    position: absolute;
    display: block;
    right: 0px;
    bottom: 0px;
    width: 360px;
}

#main .banner > .model > img {
    display: block;
    width: 100%;
}

#main .banner > .callout-balloon {
    top: 0px;
    right: 100px;
    font-size: 28px;
    font-weight: 600;
    width: 500px;
    padding: 20px 25px;
    background-color: var(--ptaj-winkle);
}

#main .banner > .meet-notice {
    position: absolute;
    bottom: 10px;
    left: 30px;
    font-size: 20px;
    background-color: var(--ptaj-oxford);
    padding: 15px 20px;
    border: 3px solid var(--ptaj-winkle);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

#main .banner > .meet-notice > span {
    display: block;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
}

#main .banner > .meet-notice ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

#main .banner > .meet-notice ul > li {
    padding: 10px 0px;
}

#main .banner > .meet-notice ul > li:not(:last-child) {
    border-bottom: solid 1px rgba(255, 255, 255, 0.3);
}

#main .banner > .meet-notice ul > li > strong {
    display: inline-block;
    width: 90px;
}

#main .section {
    margin: 100px 0px;
    text-align: center;
    position: relative;
}

#main .section.two-col {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
}

#main .section > h2 {
    font-size: 52px;
    font-weight: 400;
    margin: 0px 0px 50px;
    color: var(--ptaj-winkle);
}

#main .section > h4 {
    font-size: 30px;
    font-weight: 300;
    margin: 0px 0px 30px;
    color: white;
}

#main .section .col.bordered {
    border: dashed 2px whitesmoke;
    border-radius: 10px;
}

#main .section .col > h2 {
    font-size: 40px;
}

#main .card-2.maritime-logistics { background-image: url('../img/card-maritime-logistics-ptaj.jpg'); }
#main .card-2.a-levels           { background-image: url('../img/card-a-levels-ptaj.jpg'); }
#main .card-2.igcse              { background-image: url('../img/card-igcse-ptaj.jpg'); }
#main .card-2.summer-camp        { background-image: url('../img/card-summercamp-ptaj.jpg'); }

#banner-vc > img {
    display: block;
    width: 100%;
}

#banner-vc .text {
    position: absolute;
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#banner-vc .text > span {
    font-size: 34px;
    font-weight: 500;
}

#banner-vc .text > h2 {
    margin: 0px;
    font-size: 40px;
}

#banner-vc .text > a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    height: 60px;
    width: 280px;
    border-radius: 30px;
    background-color: var(--ptaj-red);
    font-weight: 800;
    font-size: 24px;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

#banner-vc .text > a:hover {
    color: yellow;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(50, 50, 50, 0.5);
    transition: all 0.2s ease;
}

#specials .col ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 20px;
}

#specials .col ul > li {
    display: flex;
    align-items: center;
    gap: 20px;
}

#specials .col ul > li:not(:last-child) {
    border-bottom: dotted 1px var(--ptaj-robin);
    padding-bottom: 10px;
}

#articles a.card:hover {
    color: var(--ptaj-oxford);
}

#become-agent {
    position: relative;
}

#become-agent > .text {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

#become-agent > .text > h2 {
    font-size: 66px;
    font-weight: 400;
    margin: 0px;
}

#become-agent > .text > p {
    margin: 0px;
    font-size: 24px;
}

#become-agent .text > a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    height: 60px;
    width: 280px;
    border-radius: 30px;
    background-color: var(--ptaj-red);
    font-weight: 800;
    font-size: 24px;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

#become-agent .text > a:hover {
    color: black;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(50, 50, 50, 0.5);
    transition: all 0.2s ease;
}

.fp-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 30px;
}

.fp-form label {
    display: flex;
    align-items: center;
}

.fp-form label > span {
    display: block;
    width: 150px;
    flex-grow: 0;
    flex-shrink: 0;
    text-align: left;
}

.fp-form label > input,
.fp-form label > select,
.fp-form label > textarea {
    flex-grow: 1;
    padding: 10px;
}

.fp-form button[type='submit']{
    margin-top: 20px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

#main footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 50px 0px;
}

#main footer > h4 {
    margin: 0px;
    font-size: 16px;
}

#main footer > span {
    font-size: 13px;
}

/* Currency Converter Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: var(--ptaj-blue);
    border: 3px solid var(--ptaj-winkle);
    border-radius: 15px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.modal-header h2 {
    margin: 0;
    color: var(--ptaj-winkle);
    font-size: 24px;
}

.modal-close {
    background: none;
    border: none;
    color: var(--ptaj-red);
    font-size: 28px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--ptaj-winkle);
    transform: scale(1.1);
}

.currency-converter {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.currency-row {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border: 1px solid var(--ptaj-grey);
}

.currency-row.base {
    background-color: rgba(80, 216, 215, 0.2);
    border-color: var(--ptaj-robin);
}

.currency-select {
    width: 80px;
    padding: 8px;
    border: 1px solid var(--ptaj-grey);
    border-radius: 5px;
    background-color: var(--ptaj-blue);
    color: white;
    font-size: 16px;
}

.currency-input {
    flex: 1;
    padding: 10px;
    border: 1px solid var(--ptaj-grey);
    border-radius: 5px;
    background-color: var(--ptaj-blue);
    color: white;
    font-size: 18px;
    text-align: right;
}

.currency-input:disabled {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--ptaj-grey);
}

/* Hide number input spinners */
.currency-input[type="number"]::-webkit-outer-spin-button,
.currency-input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.currency-input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}

.currency-label {
    font-size: 14px;
    color: var(--ptaj-grey);
    width: 60px;
}

.currency-row.base .currency-label {
    color: var(--ptaj-robin);
    font-weight: bold;
}

.loading-indicator {
    display: none;
    text-align: center;
    color: var(--ptaj-robin);
    font-size: 14px;
    margin-top: 10px;
}

.error-message {
    display: none;
    color: var(--ptaj-red);
    font-size: 14px;
    text-align: center;
    margin-top: 10px;
}

/* Time Converter Modal */
.time-converter {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.time-row {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border: 1px solid var(--ptaj-grey);
}

.time-row.base {
    background-color: rgba(80, 216, 215, 0.2);
    border-color: var(--ptaj-robin);
}

.timezone-select {
    flex: 1;
    padding: 8px;
    border: 1px solid var(--ptaj-grey);
    border-radius: 5px;
    background-color: var(--ptaj-blue);
    color: white;
    font-size: 16px;
}

.time-display {
    flex: 1;
    padding: 10px;
    border: 1px solid var(--ptaj-grey);
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 18px;
    text-align: center;
    font-weight: bold;
}

.time-display.editable {
    cursor: text;
    border: 2px solid var(--ptaj-robin);
    background-color: rgba(80, 216, 215, 0.2);
    color: var(--ptaj-robin);
}

.time-display.editable:focus {
    outline: none;
    border-color: var(--ptaj-winkle);
    background-color: rgba(80, 216, 215, 0.3);
}

.time-display.editable:hover {
    background-color: rgba(80, 216, 215, 0.25);
}

.time-display-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.time-display.editable {
    cursor: text;
    border: 2px solid var(--ptaj-robin);
    background-color: rgba(80, 216, 215, 0.2);
    color: var(--ptaj-robin);
}

.time-label {
    font-size: 14px;
    color: var(--ptaj-grey);
    width: 60px;
}

.time-row.base .time-label {
    color: var(--ptaj-robin);
    font-weight: bold;
}

/* Meeting Booking Modal */
.meeting-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0;
}

.meeting-form::-webkit-scrollbar {
    width: 8px;
}

.meeting-form::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.meeting-form::-webkit-scrollbar-thumb {
    background: var(--ptaj-robin);
    border-radius: 4px;
}

.form-row {
    display: flex;
    flex-direction: column;
}

.form-row label {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-row label > span {
    font-size: 14px;
    color: var(--ptaj-winkle);
    font-weight: bold;
}

.required {
    color: var(--ptaj-red);
}

.form-row input,
.form-row select,
.form-row textarea {
    padding: 10px;
    border: 1px solid var(--ptaj-grey);
    border-radius: 5px;
    background-color: var(--ptaj-blue);
    color: white;
    font-size: 16px;
    font-family: inherit;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--ptaj-robin);
    background-color: rgba(80, 216, 215, 0.1);
}

.form-row input::placeholder,
.form-row textarea::placeholder {
    color: var(--ptaj-grey);
}

.form-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 30px;
    background-color: var(--ptaj-red);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 200px;
}

.btn-submit:hover {
    background-color: var(--ptaj-robin);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(50, 50, 50, 0.5);
}

.btn-submit:disabled {
    background-color: var(--ptaj-grey);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.form-loading {
    display: none;
    color: var(--ptaj-robin);
    font-size: 14px;
}

.form-success {
    display: none;
    color: var(--ptaj-robin);
    font-size: 14px;
    text-align: center;
    padding: 15px;
    background-color: rgba(80, 216, 215, 0.2);
    border-radius: 8px;
    border: 1px solid var(--ptaj-robin);
}

.form-error {
    display: none;
    color: var(--ptaj-red);
    font-size: 14px;
    text-align: center;
    padding: 15px;
    background-color: rgba(255, 45, 46, 0.2);
    border-radius: 8px;
    border: 1px solid var(--ptaj-red);
}

.contact-error {
    display: none;
    color: var(--ptaj-red);
    font-size: 14px;
    text-align: center;
    padding: 15px;
    margin: 15px 0;
    background-color: rgba(255, 45, 46, 0.2);
    border-radius: 8px;
    border: 1px solid var(--ptaj-red);
}

/* Quick Contact Form Specific Styles */
#quick-contact-form .form-row {
    margin-bottom: 15px;
}

#quick-contact-form button[type="submit"] {
    width: 100%;
    padding: 12px;
    background: var(--ptaj-robin);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

#quick-contact-form button[type="submit"]:hover:not(:disabled) {
    background: var(--ptaj-oxford);
    transform: translateY(-2px);
}

#quick-contact-form button[type="submit"]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Agent Application Modal Styles */
.agent-modal {
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
}

.agent-form {
    padding: 0;
}

.form-section {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 15px;
}

.form-section h3 {
    color: var(--ptaj-robin);
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--ptaj-winkle);
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--ptaj-robin);
    background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.agent-error {
    display: none;
    color: var(--ptaj-red);
    font-size: 14px;
    text-align: center;
    padding: 15px;
    margin: 15px 0;
    background-color: rgba(255, 45, 46, 0.2);
    border-radius: 8px;
    border: 1px solid var(--ptaj-red);
}

.form-actions {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.form-actions .btn-submit {
    background: var(--ptaj-robin);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
}

.form-actions .btn-submit:hover:not(:disabled) {
    background: var(--ptaj-oxford);
    transform: translateY(-2px);
}

.form-actions .btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-loading {
    color: var(--ptaj-robin);
    font-size: 14px;
    margin-bottom: 15px;
}

/* Responsive adjustments for agent modal */
@media (max-width: 768px) {
    .agent-modal {
        margin: 10px;
        max-width: calc(100% - 20px);
        max-height: calc(100vh - 20px);
    }
    
    .form-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .form-group {
        margin-bottom: 10px;
    }
    
    .form-section {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }
}