@charset "UTF-8";
/* Your custom styles */

.container-fluid {
	padding-left: unset !important;
	padding-right: unset !important;
}

/* Hero Section */
.hero-section-home {
	position: relative;
	width: 100%;
	height: 130vh;
	min-height: 500px;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: space-between;
	overflow: hidden;
	padding: 90px 0 120px 5.5vw;
}

.hero-overlay-home {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}

.hero-content-home {
	position: relative;
	z-index: 2;
	text-align: left;
	max-width: 550px;
	flex: 1;
	overflow: visible;
    margin-top: -60px;
}

.hero-text-content {
	max-width: 100%;
	overflow: visible;
}

.hero-tagline {
	color: #7B01DE;
	font-size: 22px;
	font-weight: 500;
	margin-bottom: 4px;
	font-family: 'Outfit', Arial, sans-serif;
	opacity: 0;
	animation: fadeInLeft 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
	animation-delay: 0.8s;
}

.hero-title-home .highlight {
	color: #7B01DE;
}

.hero-subtitle-home {
	color: #000000;
	font-size: 18px;
	font-family: 'Outfit', Arial, sans-serif;
	font-weight: 400;
	line-height: 1.6;
	margin-bottom: 40px;
}

/* Hero Search Container */
.hero-search-container {
	margin-top: 30px;
}

.search-input-group {
	display: flex;
	background: white;
	border-radius: 50px;
	padding: 10px 15px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	width: 700px;
	gap: 20px;
	align-items: center;
}

.search-input {
	flex: 1;
	padding: 12px 16px;
	border-radius: 20px;
	position: relative;
	display: flex;
	align-items: center;
	gap: 15px;
    color: black;
}

.search-input:last-child {
	border-right: none;
}

.search-divider {
	width: 2px;
    height: 35px;
    background-color: #BEBEBE;
	margin: 0 10px;
	flex-shrink: 0;
}

.search-input .search-icon {
	color: black;
	width: 23px;
    height: 23px;
    stroke-width: 1.7;
	flex-shrink: 0;
	margin-top: 4px;
}

.input-text-content {
	display: flex;
	flex-direction: column;
	flex: 1;
}

.input-label-text {
	font-size: 14px;
	color: black;
	font-weight: 400;
}

.search-field {
	width: 100%;
	border: none;
	outline: none;
	font-size: 18px;
	color: #2D3748;
	background: transparent;
	font-weight: 400;
}

.search-field::placeholder {
	color: #848484;
	font-weight: 300;
	font-size: 18px;
}

.search-btn {
	background: #8E15F1;
	color: #fff;
	border: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 16px;
	font-weight: 400;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-left: 0;
	white-space: nowrap;
	letter-spacing: 0.5px;
	
}

.search-btn:hover {
	background: #8E15F1;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(123, 1, 222, 0.4);
}

.search-btn:active {
	transform: translateY(0);
}

/* Search field focus states */
.search-field:focus {
	color: #1A202C;
}



/* Animation for search container */
.hero-search-container {
	margin-top: 60px;
	opacity: 0;
	animation: fadeInUp 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
	animation-delay: 2.2s;
    margin-left: -10px;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Hero Visual Section */
.hero-visual-section {
	flex: 1;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	position: relative;
	padding-right: 0;
    margin-left: -50px;
    margin-top: -50px;
}

.hero-visual-image {
	max-width: 100%;
	height: auto;
	object-fit: contain;
	opacity: 0;
	animation: fadeInRight 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
	animation-delay: 1.8s;
	margin-right: 0;
}

/* Hero Section Navbar */
header.home-nav {
    background: transparent;
}

@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translateX(50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* Hero Decoration */
.hero-decoration {
	position: absolute;
	top: 0px;
	left: 14vw;
	z-index: 1;
	pointer-events: none;
    /* z-index: 3000;
    display: none; */
}

.hero-curves {
	max-width: 350px;
	height: auto;
}

.hero-title-home {
	font-family: 'Outfit', Arial, sans-serif;
	font-size: 70px;
	color: #111827;
	font-weight: 700;
	margin-bottom: 25px;
	line-height: 1.1;
	opacity: 0;
	animation: fadeInLeft 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
	animation-delay: 1s;
    margin-top: 0px;
}

.hero-subtitle-container {
	position: relative;
	margin-bottom: 40px;
    width: 500px;
}

.hero-stroke-bg {
	position: absolute;
	top: 60%;
    left: 40%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: auto;
	z-index: 0;
	opacity: 1;
	pointer-events: none;
}

.hero-subtitle-home {
	color: #000000;
	font-size: 18px;
	font-family: 'Outfit', Arial, sans-serif;
	font-weight: 400;
	line-height: 1.2;
	position: relative;
	z-index: 2;
	opacity: 0;
	animation: fadeInLeft 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
	animation-delay: 1.6s;
}

/* --- Common Hero Section  --- */
.hero-section {
	position: relative;
	width: 100%;
	height: 42vh;
	min-height: 240px;
	background: url('/img/home-hero.png') center center/cover no-repeat;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	overflow: hidden;
	padding-top: 70px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    /* set the content to the left */
    margin-left: 6vw;
    margin-right: 6vw;
    text-align: left;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.3);
	z-index: 1;
	pointer-events: none;
}

.hero-title {
	font-family: 'Outfit', Arial, sans-serif;
	font-size: 40px;
	color: #fff;
	font-weight: 400;
	margin-bottom: 10px;
	text-shadow: 0 2px 16px rgba(0,0,0,0.25);
	-webkit-text-stroke: 1px white;
	opacity: 0;
	animation: fadeInLeft 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
	animation-delay: 1.3s;
}

.hero-subtitle {
	color: #fff;
	font-size: 20px;
	font-family: 'Outfit';
	font-weight: 300;
	line-height: 1.3;
	text-shadow: 0 2px 8px rgba(0,0,0,0.18);
	opacity: 0;
	animation: fadeInLeft 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
	animation-delay: 2.3s;
}

.hero-section-aboutus {
	background: url('/img/about-hero.png') center center/cover no-repeat;
}

.hero-section-event {
	background: url('/img/event-hero.png') left top/cover no-repeat;
}

.hero-section-event-detail {
	background: url('/img/event-detail-hero.png') center center/cover no-repeat;
}

.hero-section-contact {
	background: url('/img/contact-us-hero.png') center center/cover no-repeat;
}

.hero-section-profile {
	background: url('/img/profile-hero.png') center center/cover no-repeat;
}

.hero-section-forgot-password {
	background: url('/img/forgot-password-hero.jpg') center center/cover no-repeat;
}

.hero-section-collaborate {
	background: url('/img/collaborate-hero.jpg') center center/cover no-repeat;
}

/* Hero Section Animation */
@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translateX(-50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* Hero Section Media Queries */
@media (max-width: 1200px) {
	.hero-title-home{
		font-size: 65px;
	}

	.hero-subtitle-home {
		font-size: 17px;
        padding-right: 30px;
	}

	.hero-subtitle{
		font-size: 18px;
	}
	
	.hero-section-home {
        height: 110vh;
        padding: 120px 0 60px 5.5vw;
	}

    .hero-content-home{
        max-width: 43vw;
    }
	
    .hero-tagline{
        font-size: 20px;
    }

	.hero-curves {
		max-width: 300px;
	}
	
	.hero-stroke-bg {
		width: 100%;
	}

    .search-input-group{
        width: 670px
    }

    .input-label-text {
        font-size: 14px;
    }

    .search-field {
        font-size: 22px;
        line-height: 1.2;
    }

    .search-field::placeholder {
        font-size: 18px;
    }

    .hero-subtitle-container {
        width: auto;
    }
}

@media (max-width: 1143px) {
    .hero-subtitle-home {
        padding-right: 20px;
	}
}

@media (max-width: 1120px) {
    .hero-subtitle-home {
        padding-right: 0px;
	}
}

@media (max-width: 1100px) {
    .hero-section-home {
        height: 100vh;
        padding: 100px 0 60px 5.5vw;
    }

    .hero-content-home{
        max-width: 40vw;
    }

    .hero-title-home{
		font-size: 60px;
	}

    .hero-subtitle-home {
        font-size: 14px;
        width: 90%;
    }

    .hero-tagline{
        font-size: 18px;
    }

    .hero-decoration {
        left: 15vw;
    }

    .hero-curves {
        max-width: 250px;
    }

    .hero-search-container{
        margin-top: 50px;
    }

    .search-input-group {
        padding: 8px 15px 8px 20px;
        width: 600px;
    }

    .input-label-text {
        font-size: 12px;
    }

    .search-field {
        font-size: 19px;
    }

    .search-field::placeholder {
        font-size: 16px;
    }

    .search-btn{
        padding: 20px 24px;
        font-size: 14px;
    }

    .search-divider{
        height: 40px;
    }

    .search-input{
        padding: 10px 0px;
        gap: 11px;
    }

    .hero-visual-section {
        margin-left: -20px;
        margin-top: -20px;
    }
}

@media (max-width: 1055px) {
    .hero-subtitle-home {
        width: 93%;
	}
}

@media (max-width: 1020px) {
    .hero-subtitle-home {
        width: 95%;
	}
}

@media (max-width: 1000px) {
    .hero-section-home {
        height: 100vh;
        padding: 100px 0 60px 5.5vw;
    }

    .hero-subtitle-home {
        width: 100%;
	}

    .hero-content-home{
        margin-top: -30px;
    }

    .hero-title-home {
        font-size: 53px;
    }
}

@media (max-width: 992px) {
    .hero-section-home {
        height: 90vh;
        padding: 100px 0 50px 5.5vw;
    }

    .hero-content{
        margin-top: 0px;
    }

    .hero-decoration {
        left: 20vw;
    }

    .hero-curves {
        max-width: 290px;
    }

    .search-input-group {
        padding: 8px 15px 8px 25px;
        width: 570px;
    }

    .search-input .search-icon{
        width: 20px;
        height: 20px;
        stroke-width: 2;
    }
}

@media (max-width: 950px) {
    .hero-visual-section {
        margin-left: -10px;
    }

    .search-input-group {
		width: 500px;
	}

	.input-label-text {
		font-size: 12px;
	}

	.search-field {
		font-size: 15px;
	}

	.search-field::placeholder {
		font-size: 15px;
	}

	.search-btn{
		padding: 18px 22px;
		font-size: 12px;
	}

    .search-field{
        margin-top: 0px;
        padding: 0px;
    }

    .hero-subtitle-home{
		width: 100%;
	}
}

@media (max-width: 930px) {
	.hero-title-home{
		font-size: 50px;
        margin-bottom: 20px;
	}

	.hero-subtitle-home {
		font-size: 12px;
		width: 93%;
	}

	.hero-tagline{
		font-size: 16px;
	}
}


@media (max-width: 900px) {
	.hero-subtitle-home{
		width: 95%;
	}

    .hero-title{
        font-size: 30px;
    }

    .hero-subtitle{
        font-size: 18px;
    }

    .hero-content-home {
        margin-top: 0px;
    }
}

@media (max-width: 830px) {
    .hero-content-home {
        max-width: 43vw;
    }

	.hero-title-home{
		font-size: 45px;
	}

    .search-input .search-icon{
        width: 18px;
        height: 18px;
        stroke-width: 1.5;
    }

    .hero-subtitle-home {
        width: 100%;
        font-size: 11.5px;
    }
}

@media (max-width: 730px) {
    .hero-section-home {
        height: 70vh;
        padding: 120px 0 50px 5.5vw;
    }

    .hero-content-home {
        max-width: 41vw;
    }

    .hero-visual-section {
        margin-top: 0px;
    }

    .hero-visual-section img{
        margin-top: -40px;
    }

    .hero-title-home{
		font-size: 40px;
	}

    .hero-subtitle-home {
		font-size: 10px;
	}

    .hero-tagline{
        font-size: 14px;
    }

    .hero-decoration {
        left: 24vw;
    }

    .hero-curves {
        max-width: 220px;
    }

    .hero-search-container{
        margin-top: 30px;
    }

    .search-input-group {
		padding: 3px 13px;
		width: 450px;
	}

    .search-input .search-icon{
        width: 15px;
        height: 15px;
        stroke-width: 1.5;
    }

	.input-label-text {
		font-size: 9px;
	}

	.search-field {
		font-size: 14px;
	}

	.search-field::placeholder {
		font-size: 11px;
	}

	.search-btn{
		padding: 16px 20px;
		font-size: 10px;
	}
}

@media (max-width: 670px) {
    .hero-visual-section {
        margin-left: 0px;
    }
}

@media (max-width: 650px) {
    .hero-section-home {
        min-height: 450px;
        padding: 50px 0 0px 5.5vw;
    }

    .hero-title-home{
		font-size: 35px;
	}

    .hero-subtitle-home {
		font-size: 9px;
        padding-right: 10px;
	}

    .hero-tagline{
        font-size: 12px;
    }

    .hero-curves {
        max-width: 170px;
    }

    .hero-subtitle-container {
        margin-bottom: 10px;
    }

    .hero-subtitle-home{
        margin-bottom: 30px;
    }

    .hero-search-container{
        margin-top: 0px;
    }
    .search-input-group {
		padding: 3px 10px 3px 16px;
		width: 400px;
	}

    .search-input .search-icon{
        width: 14px;
        height: 14px;
        stroke-width: 1;
    }

	.input-label-text {
		font-size: 7px;
	}

	.search-field {
		font-size: 12px;
	}

	.search-field::placeholder {
		font-size: 9px;
	}

         .search-btn {
         padding: 10px 20px;
         font-size: 8px;
     }
 }

 @media (max-width: 630px) {
    .hero-subtitle-home {
        padding-right: 0px;
	}
 }
 
 @media (max-width: 600px) {
     .hero-section-home {
         background: url('/img/home-hero-responsive.png') center center/cover no-repeat;
         height: 100vh;
         min-height: 600px;
         padding: 0 20px;
         flex-direction: column;
         justify-content: center;
         align-items: center;
         text-align: center;
         position: relative;
         margin-bottom: 100px;
     }
     
     .hero-section-home::before {
         content: '';
         position: absolute;
         top: 0;
         left: 0;
         right: 0;
         bottom: 0;
         background: rgba(255, 255, 255, 0.5);
         z-index: 1;
     }
     
     .hero-content-home {
         position: relative;
         z-index: 2;
         max-width: 100%;
         margin: 0 auto;
         text-align: center;
         display: flex;
         flex-direction: column;
         justify-content: center;
         align-items: center;
         height: 100%;
         margin-top: 20px;
     }
     
     .hero-title-home {
         font-size: 42px;
         margin-bottom: 20px;
         color: #111827;
     }
     
     .hero-subtitle-home {
         font-size: 14px;
         margin-bottom: 40px;
         line-height: 1.4;
         width: 350px;
     }
     
     .hero-tagline {
         font-size: 18px;
         margin-bottom: 10px;
     }
     
     .hero-subtitle-container {
         margin-bottom: 30px;
     }
     
     .hero-stroke-bg {
         display: none;
     }
     
     .hero-search-container {
         display: none;
     }
     
     .hero-visual-section {
         display: none;
     }
     
     .hero-decoration {
         display: none;
     }

     header.home-nav {
        background: transparent;
     }

     .hero-section{
        justify-content: center;
     }
     
     .hero-content{
        text-align: center;
        margin-left: 0;
        margin-right: 0;
     }

     .hero-title{
        font-size: 30px;
        font-weight: 400;
     }
 }

 @media (max-width: 550px) {
    .hero-title-home {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .hero-subtitle-home {
        font-size: 12px;
        width: 300px;
    }

    .hero-tagline {
        font-size: 16px;
        margin-bottom: 10px;
    }
 }

 @media (max-width: 450px) {
    .hero-title-home {
        font-size: 33px;
        margin-bottom: 15px;
    }

    .hero-subtitle-home {
        font-size: 12px;
        width: 300px;
        line-height: 1.3;
    }

    .hero-tagline {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .hero-section{
        height: 30vh;
        min-height: 200px;
        padding-top: 40px 0px;
    }

    .hero-title{
        font-size: 24px;
        font-weight: 400;
     }

    .hero-subtitle{
        font-size: 14px;
    }
 }

 @media (max-width: 350px) {
    .hero-subtitle-home {
        font-size: 12px;
        width: 260px;
    }
 }

/* Home Tutorial Section */
.home-tutorial-section {
    background: #fff;
    padding: 70px 0 150px 0;
    position: relative;
}

.home-tutorial-container, .home-event-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 85px;
}

.event-container{
    width: auto;
}

.home-tutorial-header {
    text-align: left;
    margin-bottom: 45px;
}

.home-tutorial-tagline {
    color: #7B01DE;
    font-size: 21px;
    font-weight: 500;
    font-family: 'Outfit', Arial, sans-serif;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.home-tutorial-title {
    font-family: 'Outfit', Arial, sans-serif;
    font-size: 43px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 17px;
    margin-top: 0px;
    line-height: 1.2;
}

.home-tutorial-subtitle {
    color: #383838;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    max-width: 760px;
    margin: 0;
    font-family: 'Outfit', Arial, sans-serif;
}

.home-tutorial-cards {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.home-tutorial-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: #fff;
    border: 2px solid #E5E7EB;
    border-radius: 16px;
    padding: 0;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 48%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.home-tutorial-card:hover {
    border-color: #7B01DE;
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(123, 1, 222, 0.15);
}

.home-tutorial-card-image {
    flex-shrink: 0;
    padding: 15px;
}

.home-tutorial-img {
    width: 210px;
    height: 210px;
    object-fit: cover;
    border-radius: 15px;
    display: block;
}

.home-tutorial-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 10px 20px 10px 5px;
    height: 100%;
}

.home-tutorial-card-title {
    font-family: 'Outfit', Arial, sans-serif;
    font-size: 28px;
    font-weight: 500;
    color: #111827;
    margin-bottom: 8px;
    line-height: 1.2;
}

.home-tutorial-card-link {
    color: #6B7280;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.home-tutorial-card:hover .home-tutorial-card-link {
    color: #7B01DE;
}

.tutorial-arrow {
    width: 16px;
    height: 16px;
    stroke-width: 2;
    margin-left: 4px;
    transition: transform 0.3s ease;
    display: inline-block;
    vertical-align: middle;
}

.home-tutorial-card:hover .tutorial-arrow {
    transform: translateX(4px);
}

/* Home Tutorial Section Responsive Design */
@media (max-width: 1200px) {
    .home-tutorial-card-title{
        font-size: 28px;
    }

    .home-tutorial-cards{
        gap: 30px;
    }

    .home-tutorial-img {
        width: 190px;
        height: 190px;
        border-radius: 15px;
    }
}

@media (max-width: 1050px) {
    .home-tutorial-img {
        width: 170px;
        height: 170px;
        border-radius: 15px;
    }

    .home-tutorial-card-title {
        font-size: 26px;
    }
}


@media (max-width: 992px) {
    .home-tutorial-title {
        font-size: 45px;
    }

    .home-tutorial-header {
        margin-bottom: 60px;
    }

    .home-tutorial-subtitle {
        font-size: 18px;
    }

    .home-tutorial-tagline {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .home-tutorial-card-title{
        font-size: 30px;
    }

    .home-tutorial-card{
        width: 100%;
    }

    .home-tutorial-container, .home-event-container {
        padding: 0 60px;
    }
}

@media (max-width: 850px) {
    .event-container {
        padding: 0px;
    }

    .event-container .row{
        margin-right: 0px;
        margin-left: 0px;
    }

}

@media (max-width: 768px) {
    .home-tutorial-section {
        padding: 20px 0 160px 0;
    }
    
    .home-tutorial-title {
        font-size: 36px;
    }
    
    .home-tutorial-subtitle {
        font-size: 16px;
    }
    
    .home-tutorial-cards {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    
    .home-tutorial-card {
        max-width: 100%;
        padding: 0;
    }
    
    .home-tutorial-img {
        width: 150px;
        height: 150px;
    }
    
    .home-tutorial-card-content {
        padding: 20px;
        margin-top: -80px;
    }
    
    .home-tutorial-card-title {
        font-size: 25px;
    }
    
    .home-tutorial-card-link {
        font-size: 14px;
    }
}

@media (max-width: 650px) {
    .home-tutorial-tagline {
        font-size: 18px;
        margin-bottom: 6px;
    }

    .home-tutorial-title {
        font-size: 37px;
    }

    .home-tutorial-subtitle {
        font-size: 14px;
    }

    .home-tutorial-card-title {
        font-size: 24px;
    }
    
    .home-tutorial-card-link {
        font-size: 15px;
    }

    .home-tutorial-card-content {
        padding: 16px;
        margin-top: -60px;
    }
}

@media (max-width: 560px) {
    .home-tutorial-container, .home-event-container {
        padding: 0 60px;
    }

    .home-tutorial-tagline {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .home-tutorial-title {
        font-size: 35px;
    }

    .home-tutorial-subtitle {
        font-size: 13px;
    }

    .home-tutorial-card-title {
        font-size: 22px;
    }
    
    .home-tutorial-card-link {
        font-size: 13px;
    }

    .home-tutorial-card-content {
        padding: 16px;
        margin-top: -60px;
    }
}

@media (max-width: 480px) {
    .home-tutorial-header {
        margin-bottom: 25px;
    }

    .home-tutorial-container, .home-event-container {
        padding: 0 40px;
    }

    .home-tutorial-section {
        padding: 60px 0;
    }

    .home-tutorial-tagline {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .home-tutorial-title {
        font-size: 32px;
    }

    .home-tutorial-subtitle {
        font-size: 12px;
    }

    .home-tutorial-card-title {
        font-size: 18px;
    }
    
    .home-tutorial-card-link {
        font-size: 12px;
    }

    .home-tutorial-img {
        width: 120px;
        height: 120px;
        border-radius: 10px;
    }

    .home-tutorial-card-content {
        padding: 16px 16px 16px 5px;
        margin-top: -50px;
    }

    .home-tutorial-card-image {
        padding: 15px;
    }
}


@media (max-width: 380px) {
    .home-tutorial-section {
        padding: 60px 0;
    }

    .home-tutorial-tagline {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .home-tutorial-title {
        font-size: 30px;
    }

    .home-tutorial-subtitle {
        font-size: 12px;
    }

    .home-tutorial-card{
        border-radius: 10px;
    }

    .home-tutorial-card-title {
        font-size: 14px;
    }
    
    .home-tutorial-card-link {
        font-size: 11px;
    }

    .home-tutorial-img {
        width: 100px;
        height: 100px;
        border-radius: 5px;
    }

    .home-tutorial-card-content {
        padding: 16px 16px 16px 5px;
        margin-top: -50px;
    }

    .home-tutorial-card-image {
        padding: 10px;
    }
}

/* Home STEP About Us Section */
.home-step-aboutus-section {
    background: #fff;
    padding: 70px 0 150px 0;
    position: relative;
}

.home-step-aboutus-container{
    width: 100%;
    margin: 0 auto;
    padding: 0 85px;
}

.home-step-aboutus-header {
    text-align: left;
    margin-bottom: 45px;
}

.home-step-aboutus-tagline {
    color: #7B01DE;
    font-size: 21px;
    font-weight: 500;
    font-family: 'Outfit', Arial, sans-serif;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.home-step-aboutus-title {
    font-family: 'Outfit', Arial, sans-serif;
    font-size: 43px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 17px;
    margin-top: 0px;
    line-height: 1.2;
}

.home-step-aboutus-subtitle {
    color: #383838;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    max-width: 760px;
    margin: 0;
    font-family: 'Outfit', Arial, sans-serif;
}

.home-step-aboutus-content{
    display: grid;
    grid-template-columns: 0.8fr 1.2fr; /* image narrower, text wider */
    gap: 50px;
    align-items: start;
}

.home-step-aboutus-left{
    width: 100%;
    max-width: 520px; /* portrait visual width */
    overflow: hidden; /* Prevent image overflow */
    min-width: 0; /* Allow grid item to shrink */
}

.step-aboutus-image{
    width: 100%;
    max-width: 100%; /* Ensure image doesn't exceed container */
    height: auto; /* Maintain aspect ratio */
    aspect-ratio: 3 / 4; /* portrait ratio */
    object-fit: cover;
    border-radius: 14px;
    display: block;
}

.home-step-aboutus-right{
    width: 100%;
}

.step-aboutus-heading{
    color: #7B01DE;
    font-size: 24px;
    font-weight: 600;
    font-family: 'Outfit', Arial, sans-serif;
    margin: 10px 0 16px 0;
}

.step-aboutus-text{
    color: #111827;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0 0 24px 0;
    font-family: 'Outfit', Arial, sans-serif;
}

.step-aboutus-list{
    padding-left: 20px;
    margin: 0;
}

.step-aboutus-list li{
    font-family: 'Outfit', Arial, sans-serif;
    color: #111827;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 10px;
}

@media (max-width: 992px){
    .home-step-aboutus-section{ padding: 20px 0 160px 0; }
    .home-step-aboutus-header{ margin-bottom: 60px; }
    .home-step-aboutus-title{ font-size: 45px; }
    .home-step-aboutus-subtitle{ font-size: 18px; }
    .home-step-aboutus-tagline{ font-size: 20px; margin-bottom: 8px; }
    .home-step-aboutus-content{ grid-template-columns: 1fr; gap: 24px; }
    .home-step-aboutus-left{ max-width: none; }
    .home-step-aboutus-container{ padding: 0 60px; }
}

@media (max-width: 576px){
    .home-step-aboutus-section{ padding: 60px 0; }
    .home-step-aboutus-title{ font-size: 32px; }
    .home-step-aboutus-subtitle{ font-size: 16px; }
    .step-aboutus-heading{ font-size: 18px; }
    .step-aboutus-text, .step-aboutus-list li{ font-size: 16px; }
}

/* Home STEP About Us Section Responsive Design */
/* Large screens - prevent excessive width */
@media (min-width: 1400px) {
    .home-step-aboutus-container {
        max-width: 1200px; /* Limit container width on very large screens */
    }
    
    .home-step-aboutus-content {
        gap: 40px; /* Reduce gap on very large screens */
    }
}

@media (max-width: 1200px) {
    .home-step-aboutus-card-title{
        font-size: 28px;
    }

    .step-aboutus-text, .step-aboutus-list li{
        font-size: 18px;
        line-height: 1.4;
    }

    .home-step-aboutus-content{
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .home-step-aboutus-title {
        font-size: 45px;
    }

    .home-step-aboutus-subtitle {
        font-size: 18px;
    }

    .home-step-aboutus-tagline {
        font-size: 20px;
    }
    
    .step-aboutus-image{
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 768px) {
    .home-step-aboutus-section {
        padding: 20px 0 160px 0;
    }
    
    .home-step-aboutus-title {
        font-size: 36px;
    }
    
    .home-step-aboutus-subtitle {
        font-size: 16px;
    }
    
    .home-step-aboutus-cards {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
}

@media (max-width: 650px) {
    .home-step-aboutus-tagline {
        font-size: 18px;
        margin-bottom: 6px;
    }

    .home-step-aboutus-title {
        font-size: 37px;
    }

    .home-step-aboutus-subtitle {
        font-size: 14px;
    }

    .step-aboutus-text, .step-aboutus-list li{
        font-size: 16px;
    }
}

@media (max-width: 560px) {
    .home-step-aboutus-container {
        padding: 0 60px;
    }

    .home-step-aboutus-tagline {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .home-step-aboutus-title {
        font-size: 35px;
    }

    .home-step-aboutus-subtitle {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .home-step-aboutus-header {
        margin-bottom: 25px;
    }

    .home-step-aboutus-container {
        padding: 0 40px;
    }

    .home-step-aboutus-section {
        padding: 60px 0;
    }

    .home-step-aboutus-tagline {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .home-step-aboutus-title {
        font-size: 32px;
    }

    .home-step-aboutus-subtitle {
        font-size: 12px;
    }
}


@media (max-width: 380px) {
    .home-step-aboutus-section {
        padding: 60px 0;
    }

    .home-step-aboutus-tagline {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .home-step-aboutus-title {
        font-size: 30px;
    }

    .home-step-aboutus-subtitle {
        font-size: 12px;
    }
}

/* Home About Section */
.home-about-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.75)), url('../img/home-about-bg.png');
    background-size: cover;
    background-position: center;
    padding: 140px 20px;
    color: #fff;
    position: relative;
}

/* Home About Section Entrance Animations */
.home-about-title {
    font-size: 55px;
    font-weight: 600;
    margin-bottom: 20px;
	color: #fff;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

.home-about-title.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.home-about-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
	font-weight: 400;
	width: 70%;
    text-align: center;
    margin: 0 auto 40px auto;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
    transition-delay: 0.3s;
}

.home-about-subtitle.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.home-about-row{
	margin-top: 100px;
    display: flex;
    justify-content: center;
}

/* Individual card animations */
.home-about-item {
    padding: 0 10px;
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

.home-about-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for each card */
.home-about-item-1 {
    transition-delay: 1s;
}

.home-about-item-2 {
    transition-delay: 1.7s;
}

.home-about-item-3 {
    transition-delay: 2.5s;
}

.home-about-subtitle span{
	font-weight: 600;
	font-size: 22px;
	color: #F0855D;
}

.home-about-item{
    padding: 0 10px;
}

.home-about-item img {
    margin-bottom: 20px;
    max-width: 100%;
    height: auto;
}

.home-about-item-content{
    padding: 3px 22px 0px 15px;
}

.home-about-item-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 22px;
	color: #fff;
	text-align: left;
}

.home-about-item p {
    font-size: 22px;
	font-weight: 400;
	text-align: left;
	line-height: 1.2;
}

@media (max-width: 450px) {
	.home-about-subtitle {
		font-size: 20px;
	}

	.home-about-item-title {
		font-size: 34px;
	}

	.home-about-item-title p{
		font-size: 23px;
	}
}

/* Latest Ticket Sells Section (No Slider) */
.first-card{
    margin-left: 0;
}

.latest-ticket-sells-section {
    background: url('/img/home-black-bg.png') center center/cover no-repeat;
    position: relative;
    padding: 80px 0 150px 0;
    color: #fff;
    min-height: 100vh;
}

/* Latest Ticket Sells Section Entrance Animations */
.latest-ticket-title {
    text-align: center;
    font-size: 55px;
    font-weight: 600;
    margin-bottom: 32px;
    letter-spacing: 1px;
    color: #fff;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.latest-ticket-title.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.ticket-filter-btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px 18px;
    margin-bottom: 60px;
    margin-top: 70px;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    transition-delay: 0.5s;
}

.ticket-filter-btns.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.latest-ticket-row {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 30px 5px;
    width: 100%;
    margin: 0 auto 32px auto;
    transition: none;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
    transition-delay: 1s;
}

.latest-ticket-row.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.latest-ticket-slider-wrapper-mobile {
    display: none;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 32px auto;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
    transition-delay: 0.8s;
}

.latest-ticket-slider-wrapper-mobile.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.filter-btn {
    min-width: 64px;
    width: auto;
    border: 2px solid #fff;
    background: transparent;
    color: #fff;
    border-radius: 30px;
    padding: 10px 22px;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    display: inline-block;
    text-align: center;
}
.filter-btn.active, .filter-btn:focus {
    background: #fff;
    color: #222;
    outline: none;
}
.filter-btn[data-target="all"] {
    min-width: 120px;
    padding-left: 36px;
    padding-right: 36px;
}

.latest-ticket-row-cards {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-evenly;
    gap: 30px 5px;
    width: 100%;
}
.ticket-card {
    width: 340px;
    display: flex;
    flex-direction: column;
    background: rgba(47, 47, 47, 0.2);
    border: 4px solid #fff;
    overflow: hidden;
    margin-bottom: 32px;
}
.ticket-card-img {
    width: 100%;
    aspect-ratio: 1/1;
    height: auto;
    min-height: 0;
    object-fit: cover;
    padding: 20px;
    display: block;
}
.ticket-card-body {
    padding: 4px 24px 50px 24px;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.ticket-card-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #fff;
    margin-top: 4px;
    line-height: 1.2;
    max-width: 98%;
}
.ticket-card-info {
    font-size: 17px;
    margin-bottom: 8px;
    color: #fff;
    font-weight: 500;
}
.ticket-card-info span{
    font-weight: 400;
    margin-left: 7px;
}
.ticket-card-info b{
    color: #F0855D;
    font-size: 25px;
    font-weight: 600;
}
.ticket-card-info-remaining{
    margin-top: -8px;
}
.ticket-card-btn {
    margin-top: 18px;
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
    padding: 8px 0px;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    display: inline-block;
    width: 150px;
    min-width: 0;
    margin-left: 0;
}
.ticket-card-btn:hover {
    background: #fff;
    color: #222;
    text-decoration: none;
}
.view-all-events-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    width: 100%;
    order: 2;
}
.view-all-events-btn {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
    padding: 14px 38px;
    font-size: 23px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, color 0.2s;
}
.view-all-events-btn:hover {
    background: #fff;
    color: #222;
    text-decoration: none;
}
.view-all-events-btn .arrow {
    font-size: 22px;
    margin-left: 8px;
    vertical-align: middle;
}

/* --- Custom Blank Card for Latest Ticket Sells Section --- */
.ticket-card-blank {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: transparent;
    border: 3px solid #fff;
    color: #fff;
    text-decoration: none;
    transition: background 0.25s, color 0.25s, border-color 0.25s;
    cursor: pointer;
    min-height: 520px;
    position: relative;
}
.ticket-card-blank:focus {
    outline: 2px solid black;
    outline-offset: 2px;
}
.ticket-card-blank-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.ticket-card-blank-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 40px;
    color: inherit;
    transition: color 0.25s;
}
.ticket-card-blank-text {
    font-family: 'Outfit', Arial, sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: inherit;
    text-align: center;
    transition: color 0.25s;
}
.ticket-card-blank:hover, .ticket-card-blank:active {
    background: #fff;
    color: #111;
    border-color: #fff;
    text-decoration: none;

}
.ticket-card-blank:hover .ticket-card-blank-icon,
.ticket-card-blank:hover .ticket-card-blank-text {
    color: #111;
}

/* Mobile Slider Styles (hidden on desktop) */

.latest-ticket-slider-mobile {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 40px;
    padding: 20px 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE 10+ */
    flex: 1 1 100%;
    align-items: center;
    justify-content: start;
    width: 100%;
    min-width: 0;
}

.latest-ticket-slider-mobile::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.slider-arrow-mobile {
    display: flex;
    background: #fff;
    color: #F0855D;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    max-width: 48px;
    max-height: 48px;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    align-items: center;
    justify-content: center;
    position: relative;
}

.slider-arrow-mobile:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.slider-arrow-mobile.left {
    margin-right: 12px;
}

.slider-arrow-mobile.right {
    margin-left: 12px;
}

.slider-arrow-wrapper-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    margin-top: 16px;
    order: 2;
}
@media (min-width: 1300px) {
    .latest-ticket-container {
        width: 1250px;
    }
}

@media (min-width: 1200px) {
    .latest-ticket-container {
        width: 1200px;
    }
}

@media (min-width: 993px) {
    .latest-ticket-container {
        width: 100%;
    }

    .latest-ticket-slider {
        justify-content: start;
        margin-left: 30px;
    }

    .ticket-card {
        flex: 0 0 375px;
        max-width: 375px;
    }

    /* Home About Section */
    .home-about-item-title {
        width: 200px;
    } 
}

/* Hide mobile slider on desktop */
@media (min-width: 851px) {
    .latest-ticket-row {
        flex-direction: column;
    }
    .latest-ticket-row-cards {
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
        justify-content: space-evenly;
        gap: 30px 5px;
        width: 100%;
    }
    .latest-ticket-slider-wrapper-mobile {
        display: none;
    }
    
    .latest-ticket-row {
        display: flex;
    }
}

@media (max-width: 1200px) {
	.latest-ticket-row {
		gap: 8px;
	}

	.latest-ticket-col{
		max-width: 340px;
	}

    .ticket-card { flex: 0 0 340px; }
}

@media (max-width: 1110px) {
    .ticket-card {
        flex: 0 0 300px;
    }
    .ticket-card-title{
        font-size: 27px;
    }
}

@media (max-width: 1044px) {
	.latest-ticket-row {
		gap: 20px;
	}

	.latest-ticket-col{
		max-width: 400px;
	}
}

@media (max-width: 1011px) {
    .ticket-card {
        flex: 0 0 280px;
    }
}
@media (max-width: 992px) {
    .home-about-row .col-md-4{
		margin-bottom: 150px;
	}

	.home-about-subtitle {
		font-size: 20px;
	}

    .latest-ticket-slider-wrapper.show-arrows .slider-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .slider-arrow.left {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    .slider-arrow.right {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .ticket-card { flex: 0 0 400px; }

	.latest-ticket-container{
		width: 100%;
	}

	.latest-ticket-slider {
        padding-left: 0;
		justify-content: start;
	}

	.latest-ticket-slider > .ticket-card:first-child {
		margin-left: 24px;
	}

    .latest-ticket-title, .home-about-title {
        font-size: 50px;
    }

    /* Home About Section */
    .home-about-container {
        width: 100%;
    }

    .home-about-row {
        display: flex;
    }

    .home-about-row .col-md-4 {
        flex: 0 0 33.3333%;
        max-width: 33.3333%;
    }

    .home-about-item-title {
        font-size: 30px;
    }

    .home-about-item-content {
        padding: 3px 0px;
    }

    .home-about-item p {
        font-size: 19px;
    }
}

/* Show mobile slider only on mobile */
@media (max-width: 850px) {
    .latest-ticket-row {
        display: none;
    }
    
    .latest-ticket-slider-wrapper-mobile {
        display: flex;
        flex-direction: column;
    }
    
    .latest-ticket-slider-mobile {
        gap: 30px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 20px 0 10px 0;
        /* margin-bottom: 10px; */
    }
    
    .latest-ticket-slider-mobile .ticket-card {
        flex: 0 0 400px;
        max-width: 400px;
        scroll-snap-align: center;
        min-height: 750px;
        height: 750px;
        display: flex;
        flex-direction: column;
        margin-left: 0;
        margin-right: 0;
    }
    .latest-ticket-slider-mobile .ticket-card:first-child {
        margin-left: 12vw;
    }
    .latest-ticket-slider-mobile .ticket-card:last-child {
        margin-right: 12vw;
    }
    .latest-ticket-slider-mobile .ticket-card-body {
        flex: 1 1 auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
    
    .slider-arrow-wrapper-mobile {
        display: flex;
    }
    
    .slider-arrow-mobile.left,
    .slider-arrow-mobile.right {
        position: static !important;
        transform: none !important;
        margin: 0 8px !important;
        display: flex !important;
    }

    .view-all-events-wrapper {
        margin-top: 0px;
    }

    .slider-arrow-wrapper-mobile {
        margin-top: 0px;
        margin-bottom: 30px;
    }
    .first-card{
        margin-left: 12vw !important;
    }
    .ticket-card-title {
        font-size: 25px;
    }
}

@media (max-width: 767px){
    .home-about-container {
        width: 100%;
    }

    .home-about-row {
        flex-direction: column;
    }

    .home-about-row .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .home-about-subtitle {
        width: 80%;
    }

    .home-about-item img {
        margin-bottom: 20px;
        max-width: 70%;
        height: auto;
        margin: 0 auto 20px auto;
    }

    .home-about-item-title {
        font-size: 40px;
        text-align: center;
    }

    .home-about-item p {
        font-size: 25px;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .latest-ticket-title { font-size: 32px; }
}

@media (max-width: 576px) {
    .latest-ticket-slider-wrapper{
        flex-direction: column;
    }
    .latest-ticket-slider {
        gap: 70px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    .ticket-card {
        flex: 0 0 400px;
        max-width: 400px;
        scroll-snap-align: center;
    }
    .latest-ticket-slider-padding {
        padding-left: 0 !important;
    }
    .slider-arrow-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        width: 100%;
        margin-top: 16px;
        order: 2;
    }
    .slider-arrow.left,
    .slider-arrow.right {
        position: static !important;
        transform: none !important;
        margin: 0 8px !important;
        display: flex !important;
    }
    .latest-ticket-slider-wrapper.show-arrows .slider-arrow-wrapper {
        display: flex;
    }

    .filter-btn {
        padding: 5px 20px;
        font-size: 16px;
    }

    .latest-ticket-title {
        font-size: 28px;
    }

    /* Home About Section */
    .home-about-subtitle {
        width: 95%;
    }

    .home-about-item img {
        margin-bottom: 20px;
        max-width: 70%;
        height: auto;
        margin: 0 auto 20px auto;
    }

    .home-about-item-title {
        font-size: 30px;
        text-align: center;
    }

    .home-about-item p {
        font-size: 18px;
        text-align: center;
    }
    .latest-ticket-title, .home-about-title {
        font-size: 32px;
    }
    .home-about-subtitle {
        font-size: 18px;
    }
    .latest-ticket-slider-mobile .ticket-card {
        margin-left: 10%;
        margin-right: 10%;
    }
}

@media (max-width: 450px) {
    .ticket-card {
        flex: 0 0 300px;
        max-width: 300px;
        scroll-snap-align: center;
    }

    .ticket-filter-btns {
        flex-wrap: wrap;
    }

    .view-all-events-btn {
        padding: 10px 30px;
        font-size: 20px;
    }

    .latest-ticket-slider-mobile .ticket-card {
        flex: 0 0 80%;
        max-width: 80%;
        min-height: 620px;
        height: 620px;
        margin: 0 20px;
    }
    .ticket-card-title {
        font-size: 24px;
    }
    .ticket-card-info {
        font-size: 14px;
    }
    .ticket-card-btn{
        font-size: 14px;
    }
    .ticket-card-info b {
        font-size: 22px;
    }
}

@media (max-width: 380px) {
    .latest-ticket-slider-mobile .ticket-card {
        flex: 0 0 90%;
        max-width: 90%;
        min-height: 580px;
        height: 580px;
        margin: 0 20px;
    }
    .ticket-card-title {
        font-size: 24px;
    }
    .ticket-card-info {
        font-size: 14px;
    }
    .ticket-card-btn{
        font-size: 14px;
    }
}

@media (max-width: 350px) {
    .ticket-card {
        flex: 0 0 270px;
        max-width: 270px;
        scroll-snap-align: center;
    }
}

/* About Us Mission and Vision Section */
.about-mission-section {
    position: relative;
    width: 100%;
    background: url('/img/about-mission-bg.png') center center/cover no-repeat;
    padding: 140px 0 140px 0;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

/* About Mission Section Entrance Animations */
.about-mission-images {
    flex: 1 1 54%;
    max-width: 640px;
    min-width: 330px;
    text-align: right;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 1.6s ease-out, transform 1.6s ease-out;
}

.about-mission-images.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.about-mission-title {
    color: white;
    font-size: 55px;
    font-weight: 600;
    margin-bottom: 22px;
    font-family: 'Outfit', Arial, sans-serif;
    text-shadow: 0 2px 12px rgba(0,0,0,0.25);
    letter-spacing: 2px;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
    transition-delay: 0.7s;
}

.about-mission-title.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.about-mission-desc {
    font-size: 23px;
    line-height: 1.7;
    font-weight: 400;
    color: #fff;
    text-shadow: 0 1px 8px rgba(0,0,0,0.18);
    text-align: justify;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
    transition-delay: 1.2s;
}

.about-mission-desc.animate-in {
    opacity: 1;
    transform: translateX(0);
}
.about-mission-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 2;
}
.about-mission-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    width: 100%;
}
.about-mission-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: nowrap;
    padding: 0px 30px;
}

.about-mission-img {
    width: auto;
    border-radius: 0; /* removed border radius */
    box-shadow: 0 6px 32px rgba(0,0,0,0.25);
    object-fit: cover;
    height: 340px; /* make images taller */
}
.about-mission-text {
    flex: 1 1 46%;
    min-width: 340px;
    max-width: 600px;
}


@media (max-width: 1200px) {
    .about-mission-images {
        flex: 1 1 52%;
    }
    .about-mission-text {
        flex: 1 1 48%;
        padding: 0 20px 0 0;
    }
    .about-mission-title {
        letter-spacing: 0px;
        font-size: 53px;
    }
    .about-mission-desc {
        font-size: 21px;
    }
    .about-mission-img{
        height: 300px;
    }
}
@media (max-width: 1100px) {
    .about-mission-images, .about-mission-text {
        min-width: 260px;
    }
    .about-mission-title {
        letter-spacing: 0px;
        font-size: 48px;
    }
    .about-mission-desc {
        font-size: 19px;
    }
    .about-mission-img{
        height: 280px;
    }
}

@media (max-width: 1000px) {
    .about-mission-section {
        padding: 110px 0 110px 0;
    }
    .about-mission-row {
        gap: 40px;
    }
    .about-mission-title {
        letter-spacing: 0px;
        font-size: 43px;
    }
    .about-mission-desc {
        font-size: 17px;
    }
    .about-mission-img{
        height: 230px;
    }
}

@media (max-width: 900px) {
    .about-mission-section {
        padding: 110px 0 110px 0;
    }
    .about-mission-row {
        gap: 40px;
    }
    .about-mission-title {
        letter-spacing: 0px;
        font-size: 37px;
    }
    .about-mission-desc {
        font-size: 15px;
    }
    .about-mission-img{
        height: 210px;
    }
    .about-mission-text {
        padding: 0 0 0 0;
    }
}

@media (max-width: 767px) {
    .about-mission-row {
        flex-direction: column;
        gap: 32px;
        flex-wrap: wrap;
    }
    .about-mission-images, .about-mission-text {
        max-width: 100%;
        width: 100%;
        min-width: 0;
        display: flex;
        flex-wrap: wrap;
    }
    .about-mission-img {
        width: 50%;
        height: 200px;
        object-fit: cover;
        border: 1px solid white;
    }

    .about-mission-title {
        font-size: 35px;
    }
    .about-mission-desc {
        font-size: 15px;
    }
}
@media (max-width: 600px) {
    .about-mission-row {
        gap: 20px;
    }
    .about-mission-title {
        font-size: 30px;
    }
    .about-mission-desc {
        font-size: 15px;
    }
}
@media (max-width: 500px) {
    .about-mission-images {
        flex-direction: column;
    }
    .about-mission-img {
        width: 100%;
        height: auto;
        object-fit: auto;
        border: none;
    }
}
@media (max-width: 500px) {
    .about-mission-title {
        font-size: 25px;
    }
    .about-mission-desc {
        font-size: 13px;
    }
}

/* Our Gallery Section */
.about-gallery-section {
    background: #414141;
    padding: 48px 0 230px 0;
    width: 100%;
    margin: 0 auto;
}

/* Our Gallery Section Entrance Animations */
.about-gallery-title {
    color: #fff;
    font-family: 'Outfit', Arial, sans-serif;
    font-size: 55px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 55px;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(-50px);
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

.about-gallery-title.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.about-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
    background: none;
}

.about-gallery-img {
    width: 100%;
    aspect-ratio: 1/1;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    display: block;
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.about-gallery-img.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for gallery images */
.about-gallery-img:nth-child(1) { transition-delay: 0.5s; }
.about-gallery-img:nth-child(2) { transition-delay: 1.0s; }
.about-gallery-img:nth-child(3) { transition-delay: 1.5s; }
.about-gallery-img:nth-child(4) { transition-delay: 2.0s; }
.about-gallery-img:nth-child(5) { transition-delay: 2.5s; }
.about-gallery-img:nth-child(6) { transition-delay: 3.0s; }
.about-gallery-img:nth-child(7) { transition-delay: 3.5s; }
.about-gallery-img:nth-child(8) { transition-delay: 4.0s; }
.about-gallery-img:nth-child(9) { transition-delay: 4.5s; }


@media (max-width: 1200px) {
    .about-gallery-grid {
        max-width: 1000px;
    }
}

@media (max-width: 1100px) {
    .about-gallery-grid {
        max-width: 900px;
    }

    .about-gallery-section {
        padding: 48px 0 190px 0;
    }
}

@media (max-width: 1000px) {
    .about-gallery-grid {
        max-width: 800px;
    }
    .about-gallery-section {
        padding: 48px 0 150px 0;
    }
}

@media (max-width: 900px) {
    .about-gallery-grid {
        max-width: 78vw;
        grid-template-columns: repeat(3, 1fr);
    }
    .about-gallery-title {
        font-size: 40px;
    }
}
@media (max-width: 700px) {
    .about-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(5, 1fr);
    }
    .about-gallery-title {
        font-size: 35px;
    }
}
@media (max-width: 500px) {
    .about-gallery-title {
        font-size: 40px;
    }
    .about-gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(9, 1fr);
    }
}

/* Meet AgeConvention Team Section */
.about-team-section {
    position: relative;
    width: 100%;
    background: url('/img/about-team-bg.png') center center/cover no-repeat;
    padding: 230px 0 230px 0;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

/* Meet AgeConvention Team Section Entrance Animations */
.about-team-title {
    color: #fff;
    font-family: 'Outfit', Arial, sans-serif;
    font-size: 43px;
    font-weight: 600;
    margin-bottom: 18px;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 1.4s ease-out, transform 1.4s ease-out;
}

.about-team-title.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.about-team-subtitle {
    color: #fff;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.2px;
    max-width: 740px;
    margin: 0 auto 90px auto;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 1.4s ease-out, transform 1.4s ease-out;
    transition-delay: 0.7s;
}

.about-team-subtitle.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.about-team-member {
    width: 260px;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1s ease-out, transform 1s ease-out;
    transition-delay: 2s;
}

.about-team-member.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for team members */
.about-team-member:nth-child(1) { transition-delay: 1.0s; }
.about-team-member:nth-child(2) { transition-delay: 1.3s; }
.about-team-member:nth-child(3) { transition-delay: 1.7s; }
.about-team-member:nth-child(4) { transition-delay: 2.3s; }
.about-team-member:nth-child(5) { transition-delay: 2.7s; }
.about-team-member:nth-child(6) { transition-delay: 3.3s; }
.about-team-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%; height: 100%;
    background: rgba(24,24,32,0.80);
    z-index: 2;
}
.about-team-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}


/* --- TEAM SECTION FLEXBOX REWRITE --- */
.about-team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px 5px;
    max-width: 1100px;
    margin: 0 auto;
}

.about-team-avatar {
    width: 140px;
    height: 140px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    background: rgba(0,0,0,0.18);
    font-size: 60px;
}
.about-team-avatar .fa {
    color: #fff;
    font-size: 70px;
    line-height: 1;
}
.about-team-name {
    color: #fff;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 2px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.about-team-role {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    opacity: 0.95;
}

@media (max-width: 1100px) {
    .about-team-grid {
        gap: 60px 18px;
        max-width: 900px;
    }
    .about-team-member {
        width: 260px;
    }
}
@media (max-width: 800px) {
    .about-team-grid {
        max-width: 600px;
    }
    .about-team-member {
        width: 100%;
        max-width: 270px;
    }
    .about-team-title, .about-team-subtitle {
        padding: 0px 20px;
    }
}

@media (max-width: 700px) {
    .about-team-title{
        font-size: 35px;
    }
    .about-team-subtitle{
        font-size: 22px;
    }
}
@media (max-width: 500px) {
    .about-team-grid {
        max-width: 98vw;
        gap: 100px 18px;
    }
    .about-team-member {
        width: 100%;
        max-width: 340px;
    }
    .about-team-name {
        font-size: 32px;
    }
    .about-team-role {
        font-size: 25px;
    }
    .about-team-avatar {
        width: 200px;
        height: 200px;
    }
    .about-team-avatar .fa {
        font-size: 100px;
    }
}
/* Center last two items for large screens */
@media (min-width: 1100px) {
    .about-team-member {
        width: 250px;
    }
    .about-team-grid {
        justify-content: center;
    }
    .about-team-big{
        width: 270px
    }
}

/* Event Section Header Styles */
.event-section, .home-event-container, .event-container{
    background: transparent !important;
}

.event-section-header {
    margin-bottom: 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.event-header-content {
    flex: 1;
    background: #fff;
}

.event-tagline {
    color: #7B01DE;
    font-size: 21px;
    font-weight: 500;
    font-family: 'Outfit', Arial, sans-serif;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.event-title {
    font-family: 'Outfit', Arial, sans-serif;
    font-size: 43px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 17px;
    margin-top: 0px;
    line-height: 1.2;
}

.event-subtitle {
    color: #383838;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    max-width: 760px;
    margin: 0;
    font-family: 'Outfit', Arial, sans-serif;
}

.event-header-button {
    flex-shrink: 0;
    margin-left: 20px;
}

.event-view-more-btn {
    background-color: #7B01DE;
    border: none;
    padding: 15px 20px;
    border-radius: 12px;
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 400;
    white-space: nowrap;
    font-family: 'Outfit', Arial, sans-serif;
    transition: all 0.3s ease;
}

.event-view-more-btn:hover {
    background-color: #7C3AED;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
    text-decoration: none;
    color: white;
}

.event-arrow {
    width: 20px;
    height: 20px;
    stroke-width: 2;
    transition: transform 0.3s ease;
}

.event-view-more-btn:hover .event-arrow {
    transform: translateX(4px);
}

/* Event Section Header Responsive Design */
@media (max-width: 1200px) {
    .event-section {
        padding-top: 80px;
    }

    .event-title {
        font-size: 43px;
    }
    
    .event-subtitle {
        font-size: 18px;
    }
    
    .event-tagline {
        font-size: 21px;
    }

    .event-view-more-btn {
        padding: 15px 16px;
        border-radius: 12px;
        font-size: 17px;
    }
}

@media (max-width: 1100px) {
    .event-subtitle {
        width: 80%;
    }
}


@media (max-width: 992px) {
    .home-event-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .event-section-header {
        margin-bottom: 60px;
    }

    .event-title {
        font-size: 45px;
    }
    
    .event-subtitle {
        font-size: 18px;
    }
    
    .event-tagline {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .home-event-container {
        padding: 0 60px;
    }
}

@media (max-width: 850px) {
    .event-subtitle {
        width: 90%;
    }
}

@media (max-width: 768px) {
    .home-event-grid {
        gap: 30px 20px;
        grid-template-columns: repeat(2, 1fr);
    }

    .event-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .event-header-button {
        margin-left: 0;
        align-self: flex-start;
    }
    
    .event-title {
        font-size: 36px;
    }
    
    .event-subtitle {
        font-size: 16px;
        max-width: 100%;
    }
    
    .event-tagline {
        font-size: 18px;
    }

    .event-view-more-btn {
        padding: 13px 16px;
        border-radius: 12px;
        font-size: 15px;
    }
}

@media (max-width: 650px) {
    .event-tagline {
        font-size: 18px;
        margin-bottom: 6px;
    }
    
    .event-title {
        font-size: 37px;
    }
    
    .event-subtitle {
        font-size: 14px;
    }
}

@media (max-width: 560px) {
    .home-event-container {
        padding: 0 60px;
    }

    .event-tagline {
        font-size: 16px;
        margin-bottom: 6px;
    }
    
    .event-title {
        font-size: 35px;
    }
    
    .event-subtitle {
        font-size: 13px;
    }
    
    .event-view-more-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 500px) {
    .home-event-grid {
        padding: 0 0px;
        grid-template-columns: 1fr;
    }

    .btn_line_container {
       margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .event-section-header {
        margin-bottom: 25px;
    }

    .home-event-container {
        padding: 0 40px;
    }

    .event-tagline {
        font-size: 16px;
        margin-bottom: 6px;
    }
    
    .event-title {
        font-size: 32px;
    }
    
    .event-subtitle {
        font-size: 12px;
    }
    
    .event-view-more-btn {
        padding: 8px 15px;
        font-size: 11px;
        border-radius: 8px;
    }
}

@media (max-width: 400px) {
    .home-event-grid {
        padding: 0 10px;
    }
}

@media (max-width: 380px) {
    .event-tagline {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .event-title {
        font-size: 30px;
    }
    
    .event-subtitle {
        font-size: 12px;
    }
}

/* Collaborate Page Styles */
.collab-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

/* Pricing Plans Section */
.collab-plans {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-section-title {
    font-family: 'Outfit', Arial, sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 20px;
    line-height: 1.2;
}

.pricing-section-subtitle {
    font-family: 'Outfit', Arial, sans-serif;
    font-size: 20px;
    color: #6B7280;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.collab-plan-cards {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 18px;
    margin-bottom: 24px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 6px;
}

.collab-plan-cards::-webkit-scrollbar {
    height: 8px;
}
.collab-plan-cards::-webkit-scrollbar-thumb {
    background: #E5E7EB;
    border-radius: 8px;
}

.collab-plan-cards::before,
.collab-plan-cards::after { /* spacing buffers so content looks centered when partial */
    content: '';
    flex: 0 0 8px;
}

.collab-plan-card {
    background: #fff;
    border: 2px solid #E5E7EB;
    border-radius: 20px;
    padding: 18px 18px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 0 0 auto;               /* do not stretch; keep natural width */
    width: 280px;                 /* base width on large screens */
    min-width: 240px;             /* allow smaller on small screens */
    scroll-snap-align: center;    /* snap each card to center */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.collab-plan-card:hover {
    border-color: #7B01DE;
}

.collab-plan-card.active {
    border-color: #7B01DE;
    background: linear-gradient(135deg, #7B01DE 0%, #8E15F1 100%);
    color: white;
}

.collab-plan-card.active .collab-plan-price {
    color: #fff;
}

.collab-plan-header {
    margin-bottom: 30px;
}

.collab-plan-title {
    font-family: 'Outfit', Arial, sans-serif;
    font-size: 24px;
    font-weight: 500;
    margin: 8px 0px 8px 0px;
    color: inherit;
    text-transform: none;
}

.collab-plan-price {
    font-family: 'Outfit', Arial, sans-serif;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 0px;
    color: #7B01DE;
}

.collab-plan-subtitle {
    font-family: 'Outfit', Arial, sans-serif;
    font-size: 14px;
    color: inherit;
    margin: 0;
}

.collab-plan-btn {
    background: #EDEBFF;
    color: #7B01DE;
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-family: 'Outfit', Arial, sans-serif;
}

.collab-plan-card.active .collab-plan-btn {
    background: white;
    color: #7B01DE;
}

.collab-plan-btn:hover {
    background: #8E15F1;
    color: #fff;
    transform: translateY(-2px);
}

.collab-plan-card.active .collab-plan-btn:hover {
    background: #f8f9fa;
    color: #7B01DE;
}

/* Plan Details Section */
.collab-details {
    margin-bottom: 24px;
}

.collab-details-container {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #E5E7EB;
}

.collab-details-title {
    font-family: 'Outfit', Arial, sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #111827;
    margin: 0px 0px 24px 0px;
    text-align: center;
}

/* Coming soon placeholder */
.collab-coming-soon {
    text-align: center;
    padding: 40px 10px;
}
.collab-coming-soon h3 {
    font-family: 'Outfit', Arial, sans-serif;
    font-size: 26px;
    font-weight: 600;
    margin: 0 0 10px 0;
}
.collab-coming-soon p {
    font-family: 'Outfit', Arial, sans-serif;
    font-size: 16px;
    color: #6B7280;
    margin: 0;
}

/* Accordion Styles */
.collab-accordion {
    margin-bottom: 32px;
    border: 1px solid #E5E7EB;
    border-radius: 14px;
    overflow: hidden;
}

.collab-accordion-header {
    background: #EDEBFF;
    color: #7B01DE;
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.collab-accordion-header:hover {
    background: #7B01DE;
    color: #fff;
}

.collab-accordion-title {
    font-family: 'Outfit', Arial, sans-serif;
    font-size: 20px;
    font-weight: 500;
    margin: 0;
    color: #7B01DE;
}

.collab-accordion-header:hover .collab-accordion-title {
    color: #fff;
}

.collab-accordion-icon {
    font-size: 16px;
    transition: transform 0.25s ease;
}

.collab-accordion-icon.open {
    transform: rotate(180deg);
}

.collab-accordion-content {
    display: none;
    padding: 25px;
    background: #fff;
}

.collab-accordion-content.active {
    display: block;
}

.collab-detail-item {
    display: grid;
    grid-template-columns: 1fr auto; /* left label, right value */
    align-items: center;
    column-gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid #F3F4F6;
}

.collab-detail-item:last-child {
    border-bottom: none;
}

.collab-detail-label {
    font-family: 'Outfit', Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #000;
}

.collab-detail-value {
    font-family: 'Outfit', Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #000;
    text-align: right;
}

.collab-detail-status { display: none; }

.collab-check {
    display: inline-flex;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #7B01DE;
    color: #fff;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    line-height: 1;
}

.collab-check-icon {
    color: #7B01DE;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}

.collab-detail-includes {
    margin-top: 20px;
}

.collab-detail-includes h5 {
    font-family: 'Outfit', Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 10px;
}

.collab-detail-includes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.collab-detail-includes li {
    font-family: 'Outfit', Arial, sans-serif;
    font-size: 16px;
    color: #374151;
    padding: 8px 0;
    display: flex;
    align-items: center;
}

.collab-detail-includes li::before {
    content: "✓";
    color: #7B01DE;
    font-weight: bold;
    margin-right: 10px;
    font-size: 18px;
}

/* Disclaimer */
.collab-disclaimer {
    text-align: left;
    padding-left: 4px;
}

.collab-disclaimer p {
    font-family: 'Outfit', Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    margin: 0;
    line-height: 1.6;
}

.collab-disclaimer strong {
    color: #000;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 992px) {
    /* keep horizontal, just reduce width */
    .collab-plan-card { 
        width: 240px; 
        min-width: 220px; }
    
    .pricing-section-title {
        font-size: 40px;
    }
    
    .pricing-section-subtitle {
        font-size: 18px;
    }

    .collab-plan-title {
        font-size: 20px;
    }

    .collab-plan-price {
        font-size: 36px;
    }

    .collab-plan-subtitle { 
        font-size: 13px;
    }

    .collab-plan-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

@media (max-width: 850px) {
    .collab-plan-cards {
        justify-content: start;
        gap: 0;
    }
    
    .collab-plan-cards > *:not(:last-child) {
        margin-right: 18px;
    }
}

@media (max-width: 768px) {
    .collab-container {
        padding: 60px 15px;
    }
    
    .pricing-section-title {
        font-size: 36px;
    }
    
    .pricing-section-subtitle {
        font-size: 16px;
    }
    
    .collab-details-container {
        padding: 25px;
    }
    
    .collab-details-title {
        font-size: 28px;
    }
    
    .collab-accordion-title {
        font-size: 18px;
    }
    
    .collab-detail-label,
    .collab-detail-value {
        font-size: 14px;
    }

    .collab-plan-card {
        width: 220px;
        min-width: 200px;
    }
}

@media (max-width: 610px) {
    .collab-plan-card {
        padding: 12px;
    }
    .collab-plan-title {
        font-size: 18px;
    }

    .collab-plan-price {
        font-size: 28px;
    }

    .collab-plan-subtitle { 
        font-size: 12px;
    }

    .collab-plan-btn {
        padding: 12px 10px;
    }

    .collab-plan-header {
        margin-bottom: 24px;
    }

    .collab-plan-card {
        width: 200px;
        min-width: 180px;
    }

    .collab-details-title {
        font-size: 24px;
    }

    .collab-disclaimer p {
        font-size: 14px;
    }

    .collab-detail-item {
        grid-template-columns: 1fr 0.8fr;
    }
}

@media (max-width: 576px) {
    .collab-accordion-header {
        padding: 15px 20px;
    }
    
    .collab-accordion-content {
        padding: 20px;
    }
    
    .collab-detail-item {
        grid-template-columns: 0.5fr 0.8fr; /* stack on mobile */
        row-gap: 6px;
    }
    .collab-detail-value { justify-self: end; }
    .collab-detail-includes li { grid-template-columns: 1fr; row-gap: 6px; }
}
