/* cmsms stylesheet: IA2026 modified: Friday, June 12, 2026 11:41:56 PM */
:root {
    --color-primary-dark: #3a0f88;
    /* Dark Purple for headings */
    --color-primary: #3b28b5;
    --color-teal: #71bfc8;
    /* Light cyan/teal for primary buttons */
    --color-cyan: #3db8bd;
    /* Cyan for icons and accents */
    --color-cyan-light: #e6f6f7;
    --color-text-dark: #33334d;
    --color-text-light: #ffffff;
    --color-button-dark: #3934b9;
    --color-bg-light: #ffffff;
    --color-gray-light: #f4f6fa;
    --font-primary: 'Roboto', 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-primary);
    color: var(--color-text-dark);
    line-height: 1.6;
    background-color: var(--color-bg-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utilities */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-white {
    color: var(--color-text-light);
}

.text-purple {
    color: var(--color-primary-dark);
}

.text-cyan {
    color: var(--color-cyan);
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.font-weight-bold {
    font-weight: bold;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-large {
    padding: 14px 36px;
    font-size: 1.1rem;
    border-radius: 20px;
}

.btn-teal {
    background-color: var(--color-teal);
    color: var(--color-text-light);
}

.btn-teal:hover {
    background-color: #382fc0;
}

.btn-dark-blue {
    background-color: var(--color-button-dark);
    color: var(--color-text-light);
}

.btn-dark-blue:hover {
    background-color: #2b278f;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    color: #3a0f88;
    letter-spacing: 2px;
}

.logo-accent {
    color: #71bfc8;
}

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-primary-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--color-teal);
}

.nav-links .btn-teal {
    color: white;
}

/* Hero Section */
.bg-gradient-blue {
    background: linear-gradient(135deg, #1b3be8 0%, #459deb 50%, #67dedf 100%);
    position: relative;
    overflow: hidden;
    background-image: url('/uploads/ia2026/images/banner.png');
    background-size: cover;
}

.bg-gradient-blue-stats {
    background: linear-gradient(135deg, #1b3be8 0%, #459deb 50%, #67dedf 100%);
    position: relative;
    overflow: hidden;
    background-image: url('/uploads/ia2026/images/banner.png');
    background-size: cover;
}

.hero {
    padding: 80px 0;
}

.hero-img {
    width: 100%;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.hero-left {
    flex: 1;
}

.hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 30px;
}

.hero-title-wrapper {
    background-color: #1e1b85;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 20px;
    margin-bottom: 30px;
}

.hero-title {
    font-size: 6rem;
    font-weight: 800;
    margin: 0;
    line-height: 1;
    letter-spacing: 4px;
}

.hero-title-wrapper-small {
    background-color: #1e1b85;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 8px;
}

.hero-title-wrapper-small .hero-title {
    font-size: 2.5rem;
}

.hero-subtitle.pill {
    background-color: white;
    color: var(--color-cyan);
    display: inline-block;
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 560px;
}

.hero-buttons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-buttons-grid .btn {
    border-radius: 8px;
    padding: 15px 10px;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 600;
}

.hero-action {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.contact-text {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 10px;
}

.contact-text-dark {
    font-size: 0.9rem;
    color: var(--color-text-dark);
    margin-top: 10px;
}

/* Hero Right Details */
.event-details-banner {
    background-color: white;
    color: var(--color-primary-dark);
    display: inline-flex;
    border-radius: 50px;
    padding: 10px 30px;
    gap: 30px;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.event-details-banner.event-details-purple {
    background-color: rgba(59, 40, 181, 0.85);
    color: white;
    border-radius: 30px;
    padding: 12px 30px;
    box-shadow: 0 4px 20px rgba(59, 40, 181, 0.3);
}

.event-details-purple .detail-item {
    color: white;
}

.event-details-purple .detail-item strong {
    color: white;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    line-height: 1.3;
}

.detail-item .icon {
    font-size: 1.5rem;
}

.speech-bubble-wrapper {
    margin-top: 60px;
    position: relative;
}

.speech-bubble {
    background-color: white;
    color: var(--color-primary-dark);
    padding: 30px;
    border-radius: 20px;
    border-bottom-right-radius: 0;
    max-width: 400px;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
}

.speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: 0;
    border-width: 20px 20px 0 0;
    border-style: solid;
    border-color: white transparent transparent transparent;
}

/* Discover Section */
.discover-section {
    padding: 80px 20px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 700;
}

.discover-section .section-title {
    font-style: italic;
    font-weight: 400;
}

.discover-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 60px;
}

.discover-video-area {
    flex: 1;
}

.video-mockup {
    background-color: var(--color-gray-light);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.video-header {
    padding: 15px 20px;
    font-weight: 600;
    color: var(--color-text-dark);
    border-bottom: 1px solid #eee;
}

.video-body {
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f9f9f9;
}

.play-button {
    width: 70px;
    height: 50px;
    background-color: #ff0000;
    color: white;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    cursor: pointer;
}

.video-footer {
    padding: 15px 20px;
    color: #666;
    font-size: 0.9rem;
    text-align: right;
    border-top: 1px solid #eee;
}

.discover-text {
    flex: 1;
}

.large-subtitle {
    font-size: 1.8rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.discover-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.features-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
}

.feature-item {
    font-size: 1.5rem;
    color: var(--color-cyan);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0;
}

.feature-item-block {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.feature-underline {
    width: 60px;
    height: 3px;
    background-color: var(--color-cyan);
    border-radius: 2px;
}

.features-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
    margin-top: 60px;
    justify-items: center;
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.why-participate ul {
    list-style-position: inside;
    margin-bottom: 20px;
    padding-left: 20px;
}

.why-participate li {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 20px;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Program Section */
.program-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #eef7f8 0%, #f0fafa 40%, #e8f5f0 100%);
}

.program-section .container {
    padding: 0 20px;
}

.program-list {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: var(--color-primary-dark);
}

.program-item {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.program-item .icon {
    font-size: 1.5rem;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.room-card {
    background-color: var(--color-cyan-light);
    color: var(--color-primary-dark);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    font-size: 1.3rem;
}

/* Exhibitors */
.exhibitors-section {
    padding: 60px 20px;
}

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

.logo-placeholder {
    background-color: transparent;
    height: 100px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #999;
    font-weight: 600;
}

.logo-placeholder img {
    max-width: 80%;
    max-height: 90%;
}

.logo-placeholder.small {
    height: 60px;
}

.bg-white {
    background-color: white !important;
}

.text-dark {
    color: var(--color-text-dark) !important;
}

/* Practical Info */
.practical-info-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #eef7f8 0%, #f2fafa 40%, #eaf5f1 100%);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.info-icon {
    font-size: 3rem;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.option-card {
    padding: 30px;
    border-radius: 12px;
    background-color: transparent;
    text-align: center;
}

.options-split {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    max-width: 800px;
    margin: 0 auto;
    align-items: flex-start;
}

.option-divider {
    width: 1px;
    background-color: var(--color-cyan);
    align-self: stretch;
    opacity: 0.5;
}

.info-divider {
    width: 60%;
    max-width: 600px;
    height: 2px;
    background-color: var(--color-cyan);
    margin: 40px auto;
    opacity: 0.4;
    border-radius: 1px;
}

.option-title {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    padding: 60px 0;
}

.footer-content {
    display: flex;
    gap: 60px;
}

.footer-left {
    flex: 1;
}

.footer-right {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
}

.organizer-logos,
.partners-logos {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    background-color: #fff;
    border-radius: 20px;
}

.organizer-logos .logo-placeholder {
    width: 150px;
}

.partners-logos .logo-placeholder {
    width: 110px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
}

.phone-input {
    display: flex;
    gap: 10px;
}

.country-code {
    padding: 12px;
    border: none;
    border-radius: 8px;
    background-color: white;
}

/* ================================================
   HAMBURGER MENU (hidden on desktop)
   ================================================ */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1100;
    position: relative;
}

.hamburger-line {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--color-primary-dark);
    border-radius: 3px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* When navbar is scrolled, hamburger lines stay visible */
.navbar.scrolled .hamburger-line {
    background-color: var(--color-primary-dark);
}

/* ================================================
   RESPONSIVE - Tablet (max-width: 992px)
   ================================================ */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-right {
        align-items: center;
        margin-top: 40px;
    }

    .hero-subtitle.pill {
        width: auto;
        max-width: 100%;
    }

    .hero-buttons-grid {
        max-width: 100%;
    }

    .hero-action {
        align-items: center;
    }

    .event-details-banner {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .speech-bubble {
        max-width: 100%;
    }

    .discover-content {
        flex-direction: column;
    }

    .discover-video-area,
    .discover-text {
        flex: none;
        width: 100%;
    }

    .large-subtitle {
        font-size: 1.5rem;
    }

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

    .stat-number {
        font-size: 3rem;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
    }

    .info-grid,
    .options-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-right {
        padding: 30px;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-list {
        gap: 20px;
    }

    .features-grid-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }

    .feature-item {
        font-size: 1.2rem;
    }

    .options-split {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .option-divider {
        width: 100%;
        height: 1px;
        align-self: auto;
    }
}

/* ================================================
   RESPONSIVE - Small Tablet / Large Phone (max-width: 768px)
   ================================================ */
@media (max-width: 768px) {

    /* Show hamburger, hide desktop nav */
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        z-index: 1050;
        padding: 80px 20px 40px;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        font-size: 1.25rem;
        color: var(--color-primary-dark);
    }

    .nav-links .btn-teal {
        margin-top: 10px;
        padding: 14px 36px;
        font-size: 1.1rem;
    }

    /* Navbar adjustments */
    .navbar {
        padding: 15px 20px;
    }

    body {
        padding-top: 65px;
    }

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

    .hero-title {
        font-size: 4rem;
    }

    .hero-subtitle.pill {
        width: auto;
        max-width: 100%;
        font-size: 1rem;
        padding: 12px 20px;
    }

    .hero-buttons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .hero-buttons-grid .btn {
        padding: 12px 8px;
        font-size: 0.8rem;
    }

    .event-details-banner {
        padding: 10px 20px;
        gap: 15px;
        border-radius: 20px;
        flex-direction: column;
    }

    .speech-bubble-wrapper {
        margin-top: 30px;
    }

    .speech-bubble {
        padding: 20px;
        font-size: 0.95rem;
    }

    /* Sections */
    .discover-section,
    .program-section,
    .practical-info-section {
        padding: 50px 15px;
    }

    .section-title {
        font-size: 1.7rem;
        margin-bottom: 30px;
    }

    .large-subtitle {
        font-size: 1.3rem;
    }

    /* Stats */
    .stats-section {
        padding: 40px 0;
    }

    .stat-number {
        font-size: 2.8rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    /* Program */
    .program-list {
        font-size: 1rem;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .room-card {
        padding: 20px;
        font-size: 1.1rem;
    }

    /* Exhibitors */
    .exhibitors-section {
        padding: 40px 15px;
    }

    .exhibitors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    /* Practical info */
    .options-grid {
        gap: 15px;
    }

    .option-card {
        padding: 20px;
    }

    /* Footer */
    .footer {
        padding: 40px 0;
    }

    .footer-content {
        gap: 30px;
    }

    .footer-right {
        padding: 25px;
    }

    .organizer-logos .logo-placeholder,
    .partners-logos .logo-placeholder {
        width: 100px;
        height: 50px;
        font-size: 0.8rem;
    }

    /* Forms */
    .newsletter-form .form-control {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    /* Features list */
    .features-list {
        gap: 15px;
        margin-top: 40px;
    }

    /* Features */
    .features-grid-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 15px;
    }

    .feature-item {
        font-size: 1rem;
    }

    .why-participate li {
        font-size: 0.95rem;
    }

    .subtitle {
        font-size: 1.3rem;
    }
}

/* ================================================
   RESPONSIVE - Phone (max-width: 480px)
   ================================================ */
@media (max-width: 480px) {

    body {
        padding-top: 60px;
    }

    .container {
        padding: 0 12px;
    }

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

    .hero-title {
        font-size: 3rem;
        letter-spacing: 2px;
    }

    .hero-title-wrapper {
        padding: 8px 20px;
        margin-bottom: 20px;
    }

    .hero-subtitle.pill {
        font-size: 0.85rem;
        padding: 10px 16px;
        margin-bottom: 25px;
    }

    .hero-buttons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin-bottom: 25px;
    }

    .hero-buttons-grid .btn {
        padding: 10px 6px;
        font-size: 0.75rem;
        border-radius: 6px;
    }

    .btn-large {
        padding: 12px 28px;
        font-size: 1rem;
    }

    .event-details-banner {
        padding: 15px;
        gap: 12px;
        border-radius: 16px;
    }

    .detail-item {
        font-size: 0.8rem;
    }

    .detail-item .icon {
        font-size: 1.2rem;
    }

    .speech-bubble {
        padding: 15px;
        font-size: 0.85rem;
        border-radius: 14px;
    }

    .contact-text,
    .contact-text-dark {
        font-size: 0.8rem;
    }

    /* Sections */
    .discover-section,
    .program-section,
    .practical-info-section {
        padding: 35px 12px;
    }

    .section-title {
        font-size: 1.4rem;
        margin-bottom: 25px;
    }

    .large-subtitle {
        font-size: 1.1rem;
    }

    .discover-text p {
        font-size: 0.9rem;
    }

    /* Video */
    .video-body {
        height: 180px;
    }

    .play-button {
        width: 55px;
        height: 40px;
        font-size: 1.2rem;
    }

    /* Stats */
    .stats-section {
        padding: 30px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    /* Program */
    .program-list {
        font-size: 0.9rem;
    }

    .program-item {
        gap: 10px;
    }

    .room-card {
        padding: 15px;
        font-size: 1rem;
    }

    /* Exhibitors */
    .exhibitors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .logo-placeholder {
        height: 70px;
        font-size: 0.85rem;
    }

    /* Info section */
    .info-icon {
        font-size: 2.2rem;
    }

    .option-card {
        padding: 15px;
    }

    .option-title {
        font-size: 1rem;
    }

    /* Footer */
    .footer {
        padding: 30px 0;
    }

    .hero-title-wrapper-small {
        padding: 4px 12px;
    }

    .hero-title-wrapper-small .hero-title {
        font-size: 2rem;
    }

    .footer-right {
        padding: 20px;
        border-radius: 14px;
    }

    .organizer-logos .logo-placeholder,
    .partners-logos .logo-placeholder {
        width: 85px;
        height: 45px;
        font-size: 0.7rem;
    }

    /* Features */
    .features-list {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-top: 30px;
    }

    .features-grid-3 {
        grid-template-columns: 1fr 1fr;
        gap: 15px 10px;
    }

    .feature-item {
        font-size: 0.95rem;
    }

    .why-participate ul {
        padding-left: 10px;
    }

    .why-participate li {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    /* Navigation overlay text on small screens */
    .nav-links a {
        font-size: 1.1rem;
    }
}

/* ================================================
   SCROLL ANIMATIONS
   ================================================ */

/* Base hidden state for all animated elements */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Slide from left */
.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* Slide from right */
.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* Scale up effect */
.reveal-scale {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* Fade in only (no movement) */
.reveal-fade {
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity;
}

.reveal-fade.revealed {
    opacity: 1;
}

/* Stagger delays for grid children */
.stagger-1 {
    transition-delay: 0.05s !important;
}

.stagger-2 {
    transition-delay: 0.1s !important;
}

.stagger-3 {
    transition-delay: 0.15s !important;
}

.stagger-4 {
    transition-delay: 0.2s !important;
}

.stagger-5 {
    transition-delay: 0.25s !important;
}

.stagger-6 {
    transition-delay: 0.3s !important;
}

.stagger-7 {
    transition-delay: 0.35s !important;
}

.stagger-8 {
    transition-delay: 0.4s !important;
}

/* Sticky Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    max-width: 100%;
    transition: background-color 0.4s ease,
        box-shadow 0.4s ease,
        padding 0.4s ease;
    background-color: transparent;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
    padding: 12px 20px;
}

.navbar .nav-links a {
    transition: color 0.3s ease;
}

.navbar.scrolled .logo {
    color: var(--color-primary-dark);
}

/* Push body content down for fixed navbar */
body {
    padding-top: 80px;
}

/* Hero parallax layer */
.hero {
    position: relative;
    overflow: hidden;
}

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

/* Animated counter glow */
.stat-number {
    transition: transform 0.3s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
}

/* Feature items hover effect */
.feature-item {
    transition: transform 0.3s ease, color 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-4px);
    color: var(--color-primary-dark);
}

/* Room cards interactive hover */
.room-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Option cards hover */
.option-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.option-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Logo placeholders hover */
.logo-placeholder {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-placeholder:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Smooth section transitions */
section {
    position: relative;
}

/* ================================================
   COMPACT HERO VARIANT (for inner pages)
   ================================================ */
.hero.hero-compact {
    padding: 40px 0;
}

.hero.hero-compact .hero-subtitle.pill {
    margin-bottom: 20px;
    font-size: 1.1rem;
    padding: 12px 24px;
}

.hero.hero-compact .hero-action {
    gap: 8px;
}

.hero.hero-compact .hero-right {
    gap: 20px;
}

.hero.hero-compact .hero-img {
    max-width: 280px;
}

@media (max-width: 992px) {
    .hero.hero-compact {
        padding: 30px 0;
    }

    .hero.hero-compact .hero-img {
        max-width: 220px;
    }
}

@media (max-width: 768px) {
    .hero.hero-compact {
        padding: 25px 0;
    }

    .hero.hero-compact .hero-subtitle.pill {
        font-size: 0.95rem;
        padding: 10px 18px;
    }

    .hero.hero-compact .hero-img {
        max-width: 180px;
    }
}

@media (max-width: 480px) {
    .hero.hero-compact {
        padding: 20px 0;
    }

    .hero.hero-compact .hero-subtitle.pill {
        font-size: 0.85rem;
        padding: 8px 14px;
        margin-bottom: 15px;
    }

    .hero.hero-compact .hero-img {
        max-width: 140px;
    }
}

/* ================================================
   COMPACT NAVBAR VARIANT (for inner pages)
   ================================================ */
.navbar.navbar-compact {
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.navbar.navbar-compact .logo {
    font-size: 1.5rem;
}

.navbar.navbar-compact.scrolled {
    padding: 8px 20px;
}

/* ================================================
   PAGE CONTENT SECTION (single text block)
   ================================================ */
.page-content-section {
    padding: 60px 20px 80px;
}

.page-content-section .section-title {
    font-size: 2.2rem;
    margin-bottom: 30px;
    font-style: normal;
}

.page-content {
    max-width: 860px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text-dark);
}

.page-content p {
    margin-bottom: 1.2em;
}

.page-content h2 {
    color: var(--color-primary-dark);
    font-size: 1.6rem;
    margin-top: 2em;
    margin-bottom: 0.8em;
}

.page-content h3 {
    color: var(--color-primary-dark);
    font-size: 1.3rem;
    margin-top: 1.5em;
    margin-bottom: 0.6em;
}

.page-content ul,
.page-content ol {
    padding-left: 1.5em;
    margin-bottom: 1.2em;
}

.page-content li {
    margin-bottom: 0.5em;
}

.page-content a {
    color: var(--color-cyan);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-content a:hover {
    color: var(--color-primary-dark);
}

@media (max-width: 768px) {
    .page-content-section {
        padding: 40px 15px 60px;
    }

    .page-content-section .section-title {
        font-size: 1.7rem;
    }

    .page-content {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .page-content-section {
        padding: 30px 12px 50px;
    }

    .page-content-section .section-title {
        font-size: 1.4rem;
    }

    .page-content {
        font-size: 0.9rem;
        line-height: 1.7;
    }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {

    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-scale,
    .reveal-fade {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
