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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #000;
    line-height: 1.6;
    background: #fff;
}

/* === UTILITY CLASSES === */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-fluid {
    width: 100%;
}

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

.col {
    flex: 1;
}

/* === HEADER === */
header {
    background: #fff;
    padding: 30px 40px;
    text-align: center;
}

.logo img {
    height: 120px;
    width: auto;
}

/* === NAV BAR === */
.navbar {
    background: #fff;
    padding: 16px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-logo img {
    height: 30px;
    width: auto;
}

/* Hamburger menu button - hidden on desktop */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 200;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #000;
    margin: 6px 0;
    transition: all 0.3s ease;
}

/* Hamburger animation when menu is open */
.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links li a {
    color: #000;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #F5B731;
}

/* === HERO SECTION === */
.hero {
    background: #fff;
    padding: 0 60px 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    z-index: 2;
}

.hero-tagline {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    line-height: 1.2;
}

.hero-image {
    text-align: center;
    width: 100%;
}

.hero-image img {
    width: 100%;
    height: auto;
}

/* Bottom bar below hero image */
.hero-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-top: 30px;
}

.cta-btn {
    background: #000;
    color: #FFC107;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-btn:hover {
    background: #333;
    transform: translateY(-2px);
}

/* === ABOUT SECTION === */
.about-section {
    padding: 80px 60px;
    background: #fff;
    max-width: 1400px;
    margin: 0 auto;
}

.about-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.about-text {
    flex: 1;
}

.about-heading {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.15;
}

.about-heading .highlight {
    color: #F5B731;
}

.about-description {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 30px;
}

.about-list {
    list-style: none;
    font-size: 18px;
    color: #000;
    font-weight: 500;
}

.about-list li {
    margin-bottom: 16px;
    padding-left: 24px;
    position: relative;
}

.about-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #000;
    font-weight: bold;
    font-size: 20px;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.about-image img {
    width: 100%;
    max-width: 520px;
    height: auto;
    border-radius: 24px;
    object-fit: cover;
}

.logo-small {
    margin-top: 50px;
}

.logo-small img {
    height: 30px;
    width: auto;
}

/* === SERVICES SECTION === */
.services-section {
    padding: 80px 60px 60px;
    background: linear-gradient(180deg, #E8F6F8 0%, #F9DDD0 100%);
}

.services-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
}

.services-title {
    font-size: 48px;
    font-weight: 800;
}

.services-header-icon img {
    width: 120px;
    height: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    text-align: center;
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.service-label {
    padding: 14px 0;
    font-weight: 500;
    color: #000;
    font-size: 16px;
    text-align: center;
    margin: 0;
}

/* === WHY VYRL SECTION === */
.why-section {
    padding: 100px 60px 60px;
    background: #fff;
    display: flex;
    align-items: flex-start;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.why-content {
    flex: 0 0 45%;
    padding-bottom: 80px;
}

.why-heading {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 28px;
    line-height: 1.1;
}

.why-heading .highlight {
    background: linear-gradient(90deg, #F5B731, #E8823A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-description {
    font-size: 18px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 40px;
}

.sign-up-btn {
    background: #000;
    color: #F5B731;
    border: none;
    padding: 16px 44px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.sign-up-btn:hover {
    background: #222;
}

.why-logo {
    position: absolute;
    bottom: 60px;
    left: 60px;
}

.why-logo img {
    height: 30px;
    width: auto;
}

.why-image {
    flex: 1;
    text-align: right;
    margin-right: -60px;
}

.why-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
}

/* === GOLD STANDARD SECTION === */
.gold-section {
    padding: 80px 60px;
}

.gold-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.gold-title {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 60px;
}

.gold-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gold-card {
    background: linear-gradient(180deg, #EDF8FA 0%, #F2CEBC 100%);
    padding: 40px 30px 40px;
    border-radius: 20px;
    text-align: center;
}

.gold-label {
    font-size: 22px;
    color: #E8A030;
    font-weight: 500;
    font-style: italic;
    margin-bottom: 20px;
}

.gold-icon {
    margin: 0 auto 24px;
}

.gold-icon img {
    width: 160px;
    height: 160px;
    object-fit: contain;
}

.gold-subtitle {
    font-size: 16px;
    font-weight: 500;
    color: #000;
}

/* === TEAMS SECTION === */
.teams-section {
    padding: 80px 60px;
    background: #fff;
}

.teams-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.teams-title {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 50px;
}

.teams-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-card {
    background: linear-gradient(180deg, #D6F2F8 0%, #F2CEBC 100%);
    padding: 50px 30px 120px;
    border-radius: 20px;
    text-align: center;
}

.team-description {
    font-size: 1.5em;
    color: #000;
    line-height: 1.7;
}

/* === CTA + FOOTER SECTION === */
.cta-footer-section {
    background: linear-gradient(180deg, #E8F6F8 0%, #F2CEBC 100%);
    position: relative;
    overflow: hidden;
}

.cta-footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* CTA area */
.cta-area {
    position: relative;
}

.cta-area-inner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 60px 60px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 3;
}

.cta-area-bg img {
    width: 100%;
    height: auto;
    display: block;
}

.cta-large-title {
    font-size: 56px;
    font-weight: 800;
    color: #000;
    line-height: 1.15;
    max-width: 550px;
}

.cta-large-btn {
    background: #000;
    color: #F5B731;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
}

.cta-large-btn:hover {
    background: #222;
}

/* Background image */
.cta-bg-image {
    display: none;
}

/* Footer area */
.footer-area {
    padding: 40px 60px 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.footer-brand-name {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}

.footer-brand-name .highlight {
    color: #E8A030;
}

.footer-brand-logo {
    margin-top: 8px;
}

.footer-brand-logo img {
    height: 28px;
    width: auto;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #000;
}

.footer-col p,
.footer-col ul li {
    font-size: 13px;
    line-height: 1.8;
    color: #333;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li a {
    color: #333;
    text-decoration: none;
}

.footer-col ul li a:hover,
.footer-col p a:hover {
    color: #000;
}

.footer-col p a {
    color: #333;
    text-decoration: none;
}

/* === REGISTER INTEREST SECTION === */
.register-section {
    background: linear-gradient(180deg, #f7f0f0 0%, #d6f2f4 30%, #e8f6f8 50%, #f5d6c4 100%);
    padding: 80px 60px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.register-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
    width: 100%;
}

/* Left side: heading + subtitle + logo */
.register-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 500px;
}

.register-heading {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.05;
    color: #000;
    margin-bottom: 40px;
}

.register-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: #000;
    max-width: 440px;
}

.register-logo {
    margin-top: auto;
    padding-top: 60px;
}

.register-logo img {
    height: 30px;
    width: auto;
}

/* Right side: form card */
.register-right {
    flex: 1;
    max-width: 580px;
}

.register-form-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 36px;
}

.register-form-card .form-group {
    margin-bottom: 20px;
}

.register-form-card label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    margin-bottom: 6px;
}

.register-form-card input,
.register-form-card textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    background: #fff;
    color: #000;
    transition: border-color 0.3s ease;
    /* Remove default iOS input styling */
    -webkit-appearance: none;
    appearance: none;
}

.register-form-card input:focus,
.register-form-card textarea:focus {
    outline: none;
    border-color: #000;
}

.register-form-card textarea {
    resize: vertical;
    min-height: 100px;
}

.register-submit-btn {
    width: 100%;
    padding: 16px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 10px;
    /* Remove default iOS button styling */
    -webkit-appearance: none;
    appearance: none;
}

.register-submit-btn:hover {
    background: #333;
}

.register-submit-btn:focus {
    outline: 2px solid #F5B731;
    outline-offset: 2px;
}

/* Disabled state while form is submitting */
.register-submit-btn:disabled {
    background: #666;
    cursor: not-allowed;
}

.register-disclaimer {
    text-align: center;
    font-size: 11px;
    color: #888;
    margin-top: 12px;
}

/* Inline error messages for form validation */
.form-error {
    color: #d32f2f;
    font-size: 12px;
    margin-top: 4px;
    display: none;
}

/* Success message after form submit */
.form-success {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 14px 20px;
    border-radius: 10px;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    margin-top: 16px;
    display: none;
}

/* Error banner for server errors */
.form-server-error {
    background: #fbe9e7;
    color: #c62828;
    padding: 14px 20px;
    border-radius: 10px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    margin-top: 16px;
    display: none;
}

/* ===================================================================
   RESPONSIVE — Tablet (max-width: 1024px)
   =================================================================== */
@media (max-width: 1024px) {
    /* Stack service cards into 2 columns on tablet */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Reduce large headings */
    .register-heading {
        font-size: 56px;
    }

    .cta-large-title {
        font-size: 40px;
    }

    .why-heading {
        font-size: 44px;
    }

    .gold-title,
    .teams-title {
        font-size: 40px;
    }

    /* Footer goes 2-column */
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

/* ===================================================================
   RESPONSIVE — Mobile (max-width: 768px)
   =================================================================== */
@media (max-width: 768px) {
    /* Show hamburger, hide nav links by default */
    .nav-toggle {
        display: block;
    }

    .navbar {
        padding: 14px 20px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        padding: 20px;
        gap: 16px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        z-index: 99;
    }

    /* When toggled open via JS */
    .nav-links.active {
        display: flex;
    }

    .nav-links li a {
        font-size: 17px;
        padding: 6px 0;
        display: block;
    }

    .container {
        padding: 0 20px;
    }

    /* Stack all grids to single column */
    .services-grid,
    .gold-grid,
    .teams-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }

    /* Stack all flex layouts */
    .about-content,
    .why-section,
    .register-inner,
    .row {
        flex-direction: column;
    }

    /* Header */
    header {
        padding: 20px;
    }

    .logo img {
        height: 80px;
    }

    /* Hero */
    .hero {
        padding: 0 20px 30px;
    }

    .hero-bottom {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .hero-tagline {
        font-size: 24px;
    }

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

    /* About */
    .about-section {
        padding: 50px 20px;
    }

    .about-heading {
        font-size: 30px;
    }

    .about-content {
        gap: 30px;
    }

    .about-image img {
        max-width: 100%;
    }

    /* Services */
    .services-section {
        padding: 50px 20px;
    }

    .services-title {
        font-size: 30px;
    }

    .services-header-icon img {
        width: 60px;
    }

    .service-card img {
        height: 180px;
    }

    /* Why VYRL */
    .why-section {
        padding: 50px 20px;
    }

    .why-heading {
        font-size: 36px;
    }

    .why-content {
        flex: none;
        width: 100%;
        padding-bottom: 30px;
    }

    .why-image {
        margin-right: 0;
        text-align: center;
    }

    .why-logo {
        position: static;
        margin-top: 20px;
    }

    /* Gold Standard */
    .gold-section {
        padding: 50px 20px;
    }

    .gold-title {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .gold-icon img {
        width: 100px;
        height: 100px;
    }

    /* Teams */
    .teams-section {
        padding: 50px 20px;
    }

    .teams-title {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .team-card {
        padding: 30px 20px 60px;
    }

    .team-description {
        font-size: 1.1em;
    }

    /* Register section */
    .register-section {
        padding: 50px 20px;
        min-height: auto;
    }

    .register-heading {
        font-size: 40px;
        margin-bottom: 20px;
    }

    .register-subtitle {
        font-size: 16px;
    }

    .register-left {
        min-height: auto;
    }

    .register-logo {
        display: none;
    }

    .register-right {
        max-width: 100%;
    }

    .register-form-card {
        padding: 28px 20px;
    }

    .register-form-card input,
    .register-form-card textarea {
        font-size: 16px; /* Prevents iOS zoom on focus */
    }

    /* CTA area */
    .cta-area-inner {
        padding: 20px 20px 0;
        flex-direction: column;
        gap: 16px;
    }

    .cta-large-title {
        font-size: 24px;
    }

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

    /* Footer */
    .footer-area {
        padding: 30px 20px 40px;
    }

    .footer-content {
        gap: 24px;
    }
}

/* ===================================================================
   RESPONSIVE — Small phones (max-width: 480px)
   =================================================================== */
@media (max-width: 480px) {
    .register-heading {
        font-size: 32px;
    }

    .about-heading {
        font-size: 26px;
    }

    .services-title,
    .gold-title,
    .teams-title {
        font-size: 26px;
    }

    .why-heading {
        font-size: 30px;
    }

    .cta-large-title {
        font-size: 20px;
    }

    .hero-tagline {
        font-size: 20px;
    }
}
