* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f5f5f5;
    color: #111111;
    overflow-x: hidden;
}


/* =========================
   CSS VARIABLES
========================= */

:root {

    /* COLORS */
    --primary-color: #ff5a1f;
    --secondary-color: #111111;
    --text-color: #555555;
    --white: #ffffff;
    --bg-light: #f5f5f5;

    --border-light: #d9d9d9;
    --green: #39b68d;
    --blue: #2357ff;
    --yellow: #ffe500;

    /* FONT SIZES */
    --h1-size: 72px;
    --h2-size: 48px;
    --h3-size: 32px;
    --p-size: 18px;

    /* FONT WEIGHT */
    --fw-light: 300;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --fw-extrabold: 800;

    /* CONTAINER */
    --container-width: 1400px;

    /* BORDER RADIUS */
    --radius-sm: 10px;
    --radius-md: 20px;
    --radius-lg: 40px;

    /* TRANSITION */
    --transition: 0.3s ease;
}


/* =========================
    TYPOGRAPHY
========================= */

h1 {
    font-size: var(--h1-size);
    font-weight: var(--fw-extrabold);
    line-height: 1.1;
}

h2 {
    font-size: var(--h2-size);
    font-weight: var(--fw-bold);
    line-height: 1.2;
}

h3 {
    font-size: var(--h3-size);
    font-weight: var(--fw-semibold);
}

p {
    font-size: var(--p-size);
    color: var(--text-color);
    line-height: 1.7;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    display: block;
    max-width: 100%;
}


/* =========================
   CONTAINER
========================= */

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: auto;
    padding: 0 20px;
}


/* =========================
  BUTTONS
========================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: var(--fw-semibold);
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--secondary-color);
}

.btn-outline:hover {
    background: var(--secondary-color);
    color: var(--white);
}


/* =========================
   NAVBAR
========================= */

.navbar {
    width: 100%;
    padding: 10px 0;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-light);
}

.navbar-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.navbar-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.left-logo img {
    width: 160px;
    object-fit: contain;
}

.logo-text h4 {
    font-size: 16px;
    line-height: 1.3;
    color: #ff5a14;
    font-weight: var(--fw-bold);
    font-family: 'Inter', sans-serif;
}

.right-logo img {
    width: 200px;
    object-fit: contain;
}


/* =========================
   HERO SECTION
========================= */

.hero {
    padding: 20px 20px;
}

.hero-wrapper {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.hero-content {
    flex: 0 0 65%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 40px;
}

.hero-subtitle {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: var(--fw-semibold);
    letter-spacing: 4px;
    color: var(--primary-color);
}

.hero-content h1 {
    max-width: 700px;
    margin-bottom: 30px;
    font-size: 90px;
    line-height: 1;
    letter-spacing: -4px;
    font-family: 'Inter', sans-serif;
}

.hero-content h1 span {
    color: var(--primary-color);
    font-style: italic;
}

.hero-content p {
    max-width: 650px;
    margin-bottom: 40px;
    font-size: 22px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-image {
    flex: 0 0 35%;
    display: flex;
}

.hero-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border: 2px solid var(--green);
    border-radius: 40px;
    object-position: left;
}


/* =========================
   REGISTER SECTION
========================= */

.register-section {
    padding: 80px 0;
    border-top: 1px solid var(--border-light);
}

.register-wrapper {
    display: flex;
    align-items: center;
}

.register-form {
    flex: 0 0 40%;
    background: #dddddd;
    padding: 35px;
}

.entry-badge {
    display: table;
    margin: 0 auto 30px;
    padding: 12px 30px;
    background: var(--yellow);
    border-radius: 50px;
    font-size: 14px;
    font-weight: var(--fw-bold);
}

.register-form h2 {
    margin-bottom: 40px;
    text-align: center;
    font-size: 60px;
    line-height: 1.1;
    font-weight: var(--fw-extrabold);
    font-family: 'Inter', sans-serif;
}

.register-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.register-form input,
.register-form select {
    width: 100%;
    height: 65px;
    padding: 0 20px;
    border: none;
    border-radius: 15px;
    background: #ffffff;
    font-size: 16px;
    outline: none;
}

.register-form button {
    width: 100%;
    height: 65px;
    border: none;
    border-radius: 15px;
    background: var(--yellow);
    font-size: 18px;
    font-weight: var(--fw-bold);
    cursor: pointer;
    transition: var(--transition);
}

.register-form button:hover {
    opacity: 0.9;
}

.register-content {
    flex: 0 0 60%;
    padding: 35px;
}

.register-text {
    margin-bottom: 60px;
    font-size: 28px;
    line-height: 1.4;
    color: #e31e24;
}

.register-text span {
    color: var(--secondary-color);
}

.register-content h3 {
    margin-bottom: 60px;
    font-size: 40px;
    line-height: 1.2;
    font-weight: var(--fw-extrabold);
    font-family: 'Inter', sans-serif;
}


/* =========================
   EVENT CARDS
========================= */

.event-wrapper {
    display: flex;
    gap: 80px;
    flex-wrap: nowrap;
}

.event-card .year {
    display: block;
    margin-bottom: 10px;
    font-size: 30px;
    font-weight: var(--fw-extrabold);
    color: var(--blue);
}

.event-card h4 {
    margin-bottom: 10px;
    font-size: 50px;
    line-height: 1;
    color: var(--primary-color);
    font-family: 'Inter', sans-serif;
    font-weight: 900;
}

.event-card h5 {
    margin-bottom: 10px;
    font-size: 42px;
    font-weight: var(--fw-medium);
}

.event-card .hotel {
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: var(--fw-bold);
    color: var(--primary-color);
}

.event-card small {
    font-size: 16px;
    color: #555555;
}


/* =========================
   PARTNERS SECTION
========================= */

.partners-section {
    padding: 60px 0;
    border-top: 1px solid var(--border-light);
    background: #fff;
}

.partners-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: nowrap;
}

.partner-item {
    flex: 1;
    text-align: center;
}

.partner-item h4 {
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 24px;
    font-style: italic;
    font-weight: var(--fw-semibold);
    text-decoration: underline;
}

.partner-item img {
    max-width: 180px;
    width: 100%;
    height: auto;
    object-fit: contain;
    margin: auto;
}


/* =========================
   TABLET
========================= */

@media(max-width:992px) {

    :root {
        --h1-size: 54px;
        --h2-size: 40px;
    }

    .hero-content {
        padding-right: 0;
    }

    .hero-content h1 {
        font-size: 65px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .register-wrapper {
        flex-direction: column;
    }

    .register-form,
    .register-content {
        width: 100%;
        text-align: center;
    }

    .register-text {
        font-size: 22px;
    }

    .register-content h3 {
        font-size: 32px;
    }

    .event-wrapper {
        justify-content: center;
        text-align: center;
    }

    .partners-wrapper {
        justify-content: center;
        gap: 40px;
        flex-wrap: wrap;
    }

    .partner-item {
        width: 45%;
        flex: 0 0 45%;
    }

}


/* =========================
   MOBILE
========================= */

@media(max-width:768px) {

    :root {
        --h1-size: 42px;
        --h2-size: 32px;
        --p-size: 16px;
    }

    .navbar-left {
        gap: 10px;
    }

    .left-logo img {
        width: 90px;
    }

    .right-logo img {
        width: 110px;
    }

    .logo-text h4 {
        font-size: 12px;
        line-height: 1.2;
    }

    .hero {
        padding: 40px 0 60px;
    }

    .hero-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .hero-content {
        text-align: center;
        padding-right: 0;
    }

    .hero-content h1 {
        max-width: 100%;
        font-size: 48px;
        letter-spacing: -2px;
    }

    .hero-content p {
        max-width: 100%;
        font-size: 16px;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-image {
        width: 100%;

    }

    .hero-image img {
        border-radius: 25px;
        height: auto;
    }

    .register-section {
        padding: 60px 0;
    }

    .register-wrapper {
        gap: 40px;
    }

    .register-form {
        padding: 40px 20px;
    }

    .register-form h2 {
        font-size: 42px;
    }

    .register-content {
        text-align: center;
        padding: 0;
    }

    .register-text {
        margin-bottom: 40px;
        font-size: 18px;
    }

    .register-content h3 {
        margin-bottom: 50px;
        font-size: 26px;
    }

    .event-wrapper {
        justify-content: center;
        text-align: center;
        gap: 20px;
    }

    .event-card {
        width: 50%;
        text-align: center;
    }

    .event-card .year {
        font-size: 20px;
    }

    .event-card h4 {
        font-size: 30px;
    }

    .event-card h5 {
        font-size: 30px;
    }

    .partners-section {
        padding: 50px 0;
    }

    .partners-wrapper {
        gap: 30px;
        flex-wrap: wrap;
    }

    .partner-item {
        width: 45%;
        flex: 0 0 45%;
    }

    .partner-item h4 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .partner-item img {
        max-width: 120px;
    }

}


/* =========================
   SMALL MOBILE
========================= */

@media(max-width:480px) {

    :root {
        --h1-size: 34px;
    }

    .left-logo img {
        width: 90px;
    }

    .right-logo img {
        width: 110px;
    }

    .logo-text h4 {
        font-size: 11px;
    }

    .navbar-left {
        gap: 8px;
    }

    .navbar-wrapper {
        gap: 10px;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-subtitle {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .partners-wrapper {
        gap: 20px;
    }

    .partner-item {
        width: 45%;
        flex: 0 0 45%;
    }

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

    .partner-item img {
        max-width: 100px;
    }

}


/* ---------- Blank template overrides ---------- */

/* REMOVE HEADER */
/* .srs-landing-page header {
    display: none !important;
} */

.wp-block-template-part {
    display: none !important;
}

/* REMOVE FOOTER */
.srs-landing-page footer {
    display: none !important;
}

/* REMOVE PAGE TITLE */
.srs-landing-page .entry-title,
.srs-landing-page .wp-block-post-title {
    display: none !important;
}
.wp-site-blocks .wp-block-post-title{
    display: none !important;
}

/* REMOVE CONTENT SPACING */
.srs-landing-page main,
.srs-landing-page .site-main,
.srs-landing-page .wp-site-blocks {
    padding: 0 !important;
    margin: 0 !important;
}

/* REMOVE DEFAULT WIDTH */
.srs-landing-page .entry-content {
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    /* background: #fff; */
}

.is-layout-constrained {
    width: 100%;
    padding-right: 0 !important;
    padding-left: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
    /* background-image: url('../assets/bg.jpg'); */
    background-size: cover;
    background-position: center;
    background-position: top;
    margin-top: 0 !important;
}

.is-layout-constrained> :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
    max-width: 100%;
}

body.hostinger-ai-builder-elementor,
body.hostinger-ai-builder-gutenberg {
    padding-top: 0px !important;
}

/* ---------- Blank template overrides ends here ---------- */


/* =========================
      WHATSAPP FLOAT BUTTON
========================= */

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
    z-index: 9999;
    transition: 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
}

.whatsapp-float img {
    width: 34px;
    height: 34px;
}

/* Pulse Animation */

@keyframes whatsappPulse {

    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }

}

/* =========================
      MOBILE
========================= */

@media(max-width:768px) {

    .whatsapp-float {
        width: 58px;
        height: 58px;
        right: 15px;
        bottom: 15px;
    }

    .whatsapp-float img {
        width: 30px;
        height: 30px;
    }

}

/* =========================
      WHATSAPP FLOAT BUTTON ENDS
========================= */



/* =========================
      VERIFY FORM STYLES
========================= */

/* Scope everything under srs-wrapper to avoid conflicts with your WordPress theme */
.srs-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background-color: #f8fafc; /* Ultra-light grayish blue background */
    
    /* Makes the wrapper exactly 100% of the device viewport height */
    min-height: 100dvh; 
    width: auto;
    box-sizing: border-box;
}

/* Card Container */
.srs-wrapper .srs-card {
    background: #ffffff;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 10px 15px -3px rgba(0, 0, 0, 0.03);
    width: 100%;
    max-width: 440px;
    border: 1px solid #e2e8f0;
    box-sizing: border-box;
}

/* Typography */
.srs-wrapper .srs-title {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b; /* Deep slate */
    margin: 0 0 6px 0;
    text-align: center;
}

.srs-wrapper .srs-subtitle {
    font-size: 14px;
    color: #64748b; /* Cool gray */
    margin: 0 0 28px 0;
    text-align: center;
}

/* Form Layout */
.srs-wrapper .srs-form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.srs-wrapper .srs-form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 8px;
}

/* Inputs with smooth focus transitions */
.srs-wrapper .srs-form-control {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background-color: #f8fafc;
    color: #334155;
    outline: none;
    transition: all 0.2s ease-in-out;
    box-sizing: border-box;
}

.srs-wrapper .srs-form-control:focus {
    background-color: #ffffff;
    border-color: #3b82f6; /* Modern Blue */
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
}

/* Modern Button with hover feedback */
.srs-wrapper .srs-btn {
    width: 100%;
    padding: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    background-color: #2563eb;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    margin-bottom: 8px;
}

.srs-wrapper .srs-btn:hover {
    background-color: #1d4ed8;
}

.srs-wrapper .srs-btn:active {
    transform: scale(0.98);
}

/* Smooth Result Notices */
.srs-wrapper .srs-success,
.srs-wrapper .srs-error {
    margin-top: 24px;
    padding: 20px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.6;
    animation: srsFadeIn 0.3s ease-out;
}

/* Success Card */
.srs-wrapper .srs-success {
    background-color: #f0fdf4; /* Soft green */
    border: 1px solid #bbf7d0;
    color: #166534;
}

.srs-wrapper .srs-success h3 {
    margin: 0 0 12px 0;
    font-size: 16px;
    font-weight: 700;
    color: #14532d;
}

.srs-wrapper .srs-success p {
    margin: 6px 0;
    color: #14532d;
}

.srs-wrapper .srs-success strong {
    color: #166534;
    display: inline-block;
    width: 70px; /* Aligns the labels nicely */
}

/* Error Card */
.srs-wrapper .srs-error {
    background-color: #fef2f2; /* Soft red */
    border: 1px solid #fecaca;
    color: #991b1b;
    text-align: center;
    font-weight: 600;
}

/* Keyframe for a smooth entry animation */
@keyframes srsFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
      VERIFY FORM STYLES
========================= */




/* =========================
   SUCCESS PAGE EXTENSIONS
========================= */

.success-wrapper {
    display: flex;
    justify-content: center;
    text-align: center;
    width: 100%;
    padding: 60px 0;
}

.success-content {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.success-icon-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    background: var(--green);
    color: var(--white);
    border-radius: 50%;
    margin-bottom: 30px;
    box-shadow: 0 10px 25px rgba(57, 182, 141, 0.2);
}

.success-content h1 {
    max-width: 100%;
}

.success-buttons {
    justify-content: center;
    margin-top: 20px;
}

.success-info-cards {
    display: flex;
    gap: 20px;
    width: 100%;
    max-width: 600px;
    margin: 30px 0;
}

.info-card {
    flex: 1;
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
    text-align: center;
}

.card-label {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--text-color);
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.card-value {
    font-size: 18px;
    font-weight: var(--fw-bold);
    color: var(--secondary-color);
}

.card-value.value-free {
    color: var(--green);
}

.success-details-wrapper {
    align-items: flex-start;
    gap: 50px;
}

/* Responsive adjustment for Success Section */
@media(max-width: 992px) {
    .success-details-wrapper {
        flex-direction: column;
    }
    .success-info-cards {
        flex-direction: column;
        gap: 15px;
    }
}