body {
margin: 0;
font-family: 'Montserrat', sans-serif;
color: #222;
}

h1, h2 {
font-family: 'Playfair Display', serif;
font-style: italic;
}

a {
text-decoration: none;
}


.header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 120px;
background: #ffffff;
}

.logo img {
height: 200px;
}

.nav a {
margin-left: 30px;
font-size: 12px;
letter-spacing: 2px;
color: #333;
}

.nav .active {
background: #cfe3d6;
padding: 6px 12px;
}


.hero {
background: #a8c8b5;
text-align: center;
padding: 140px 20px;
}

.hero-title {
font-size: 46px;
margin-bottom: 20px;
}



.hero p {
max-width: 600px;
margin: auto;
font-size: 13px;
letter-spacing: 1px;
}

.hero-buttons {
margin-top: 30px;
display: flex;
justify-content: center;
gap: 25px;
}


.btn {
padding: 12px 26px;
font-size: 12px;
}

.primary {
background: #2f5d50;
color: white;
}

.secondary {
background: white;
border: 1px solid #2f5d50;
color: #2f5d50;
}


.why {
padding: 120px 20px;
text-align: center;
}

.section-title {
margin-bottom: 60px;
}

.why-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 70px;
max-width: 900px;
margin: auto;
}

.icon-box {
background: #cfe3d6;
height: 140px;
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 15px;
}

.icon-box img {
width: 150px;
}

.why-card h3 {
font-size: 12px;
letter-spacing: 2px;
}

.why-card p {
font-size: 12px;
}


.upcoming {
background: #a8c8b5;
padding: 100px 20px;
text-align: center;
margin-bottom: 80px
}

.cards {
display: flex;
justify-content: center;
gap: 50px;
}

.card {
background: #f3f3f3;
padding: 50px;
width: 350px;
}

.card img {
width: 100%;
margin-bottom: 20px;
}


.cta {
background: #6aa884;
color: white;
text-align: center;
	
padding: 80px 40px;  

max-width: 900px;
margin: 0 auto 120px;
	
border-radius: 8px;
}

.cta h2 {
margin-bottom: 30px;
font-size: 28px;
}

.cta p {
margin-bottom: 30px;
font-size: 14px;
}

.cta .btn {
margin-top: 10px;
}


.footer {
background: #2f5d50;
color: white;
padding: 80px 40px 40px;  
}

.footer-content {
display: flex;
justify-content: space-around;
margin-bottom: 30px;
}

.footer h4 {
letter-spacing: 2px;
margin-bottom: 15px;
}

.footer p {
font-size: 12px;
margin: 5px 0;
}

.copyright {
text-align: center;
font-size: 12px;
}


.back-to-top {
position: fixed;
bottom: 30px;
right: 30px;
background: #6aa884;
color: white;
width: 45px;
height: 45px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
}

.footer a {
    text-decoration: none;
    color: inherit;
}

.footer a:hover {
    opacity: 0.7;
}


.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}


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


.cta .btn.primary {
    background: white;
    color: #2f5d50;
    border: 1px solid #2f5d50;

    transition: 0.3s;
}


.cta .btn.primary:hover {
    background: #2f5d50;
    color: white;
}



.why-card,
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.why-card:hover,
.card:hover {
    transform: scale(1.03);   
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.card img {
    transition: transform 0.4s ease;
}


.card:hover img {
    transform: scale(1.08);
}
.cta .btn {
    transition: all 0.3s ease;
}

.cta .btn:hover {
    transform: scale(1.05);
}


.hero-title-wrapper {
    position: relative;
    display: inline-block;
}

.hero .hero-icon {
    position: absolute;
    left: 50%;
    top: -100px;

    transform: translateX(-50%) translateY(40px) scale(0.8);

    width: 170px;

    opacity: 0;

    pointer-events: none;

    animation: iconFadeIn 1s ease forwards;
}


@keyframes iconFadeIn {
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
}



/* ================= ABOUT PAGE ================= */

.about-hero {
    background: #cfe3d6;
    padding: 100px 140px;
}

.about-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
}

.about-hero p {
    font-size: 14px;
    color: #555;
}



.company {
    padding: 100px 140px;
}

.company-wrapper {
    display: flex;
    gap: 80px;
}


.company-left {
    width: 55%;
}

.company-img {
    width: 100%;
    margin-bottom: 25px;
    transition: transform 0.4s ease;
}

.company-img:hover {
    transform: scale(1.05);
}

.company-left h2 {
    margin-bottom: 20px;
}

.company-left p {
    line-height: 1.8;
    margin-bottom: 12px;
}


.company-right {
    width: 45%;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 25px;
}


.stat {
    background: #cfe3d6;
    padding: 30px;
    text-align: center;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
}

.stat:hover {
    transform: translateY(-8px) scale(1.06)!important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.stat h3 {
    font-size: 26px;
}

.stat span {
    font-size: 11px;
    letter-spacing: 2px;
}



.mission {
    background: #dfeee4;
    padding: 70px 140px;
    text-align: center;
}

.mission-wrapper {
    display: flex;
    gap: 60px;
    margin-top: 30px;
}

.mission-item img {
    width: 80px;
    transition: transform 0.3s ease;
}

.mission-item:hover img {
    transform: scale(1.08);
}

.mission-box {
    background: white;
    padding: 25px;
    margin-top: 10px;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-box:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}



.values {
    padding: 70px 140px;
    text-align: center;
}

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

.value-item {
    background: #e3f0e8;
    padding: 25px;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.value-item img {
    width: 100px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.value-item:hover img {
    transform: scale(1.1);
}



.commitment {
    background: #5fa774;
    padding: 60px 140px;
    color: white;
}

.commitment-list {
    margin-top: 20px;
    padding-left: 20px;
}

.commitment-list li {
    margin: 10px 0;
    cursor: pointer;

    transition: all 0.3s ease;
}

.commitment-list li:hover {
    transform: translateX(6px);
    opacity: 0.8;
}



.modal {
    display: none;
    position: fixed;
    z-index: 999;

    left: 0;
    top: 0;
    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(6px);

    justify-content: center;
    align-items: center;
}

.modal-img {
    width: 380px; 
    max-width: 80%;
    max-height: 70vh;
    border-radius: 8px;

    animation: fadeIn 0.3s ease;
}


.close-modal {
    position: absolute;
    top: 40px;
    right: 60px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}


.reveal {
    opacity: 0;
    transition: opqcity 0.8s ease;
    transform: translateY(40px);
}

.reveal.active {
    opacity: 1;
 
}



.footer {
    margin-top: 80px;
    padding: 40px;
    text-align: center;
    background: #2f5d50;
    color: white;
}



@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}


.about-hero {
    position: relative; 
}


.about-icon {
    position: absolute;
    left: 55%;
    top: 50%;

    transform: translate(-50%, -50%) scale(0.8);

    width: 150px;

    opacity: 0;

    animation: iconFade 1s ease forwards;
}


@keyframes iconFade {
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}





/* ===== EXHIBITIONS ===== */
.sub-hero {
background: #cfe3d6;
padding: 80px 120px;
}

.sub-hero h1 {
font-family: 'Playfair Display';
font-size: 36px;
margin-bottom: 10px;
}

.sub-hero p {
font-size: 14px;
color: #555;
}


.exhibition-section {
max-width: 1100px;  
margin: auto;       
padding: 100px 20px;
}


.exhibition {
display: flex;
align-items: center;
justify-content: space-between;
gap: 80px;
margin-bottom: 120px;
}


.exhibition.reverse {
flex-direction: row-reverse;
}


.exhibition-img {
flex: 1;
}

.exhibition-img img {
width: 100%;
max-width: 420px;
display: block;
}


.exhibition-text {
flex: 1;
}


.exhibition-text h3 {
font-size: 16px;
letter-spacing: 3px;
margin-bottom: 10px;
}


.exhibition-text p {
font-size: 13px;
color: #666;
margin-bottom: 15px;
}


.tag {
display: inline-block;
background: #cfe3d6;
padding: 6px 12px;
font-size: 11px;
margin-bottom: 20px;
}


.exhibition-text ul {
padding-left: 18px;
margin-bottom: 20px;
}

.exhibition-text li {
font-size: 13px;
margin-bottom: 6px;
}


.btn {
background: #2f5d50;
color: white;
padding: 10px 20px;
font-size: 12px;
text-decoration: none;
display: inline-block;
transition: 0.3s;
}

.btn:hover {
background: #244a40;
}


.cta {
background: #5fa774;
color: white;
text-align: center;
padding: 100px 20px;
margin-bottom: 100px;
}

.cta h2 {
font-family: 'Playfair Display';
font-size: 32px;
margin-bottom: 50px;
}

.cta-boxes {
display: flex;
justify-content: center;
gap: 30px;
flex-wrap: wrap;
}

.cta-box {
background: #f3f3f3;
color: #222;
padding: 25px;
width: 220px;
transition: 0.3s;
}

.cta-box:hover {
transform: translateY(-6px);
box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.cta-box h4 {
font-size: 11px;
letter-spacing: 3px;
margin-bottom: 15px;
}

.cta-box p {
font-size: 12px;
color: #666;
line-height: 1.6;
}


.footer {
background: #2f5d50;
color: white;
text-align: center;
padding: 30px;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

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

.exhibition {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.exhibition:hover {
    transform: scale(1.02);
}

.exhibition-img img {
    transition: transform 0.4s ease;
}

.exhibition:hover img {
    transform: scale(1.08);
}
.cta-box {
    transition: all 0.3s ease;
}

.cta-box:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 25px rgba(0,0,0,0.1);
}

.commitment-list a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.commitment-list a:hover {
    opacity: 0.7;
    letter-spacing: 1px;
}

.exhibition-icon {
    position: absolute;
    left: 60%;
    top: 22%;
    width: 150px;

    z-index: 10;

    opacity: 0;
    transform: scale(0.6);

    animation: iconPop 0.8s ease forwards;
}


@keyframes iconPop {
    0% {
        opacity: 0;
        transform: scale(0.6);
    }
    60% {
        opacity: 1;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;             
        transform: scale(1);    
    }
}








/* ===== Visitors ===== */

.sub-hero {
background: linear-gradient(90deg,#dbe9df,#bcd8c7);
padding: 80px 100px;
}

.sub-hero h1 {
font-family: 'Playfair Display';
font-size: 40px;
margin-bottom: 10px;
}

.sub-hero p {
font-size: 14px;
color: #555;
}


.calendar {
padding: 100px 20px;
text-align: center;
}

.calendar-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 50px;
max-width: 900px;
margin: auto;
}

.calendar-box {
background: #cfe3d6;
padding: 35px;
text-align: left;
cursor: pointer;
transition: all 0.3s ease;
border-radius: 4px;
}

.calendar-box:hover {
transform: translateY(-8px);
background: #bcd8c7;
box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.calendar-box h4 {
font-size: 12px;
letter-spacing: 2px;
margin-bottom: 10px;
}

.calendar-box p {
    font-size: 12px;
    margin: 10px 0;
    line-height: 1.6;
}

.calendar-box strong {
    color: #2f5d50;
    font-weight: 500;
}



.floor {
background: #5fa774;
padding: 140px 120px;
color: white;
}

.floor .section-title {
font-size: 34px;
margin-bottom: 70px;
text-align: left;
}

.floor-grid {
display: flex;
justify-content: space-between;
gap: 70px;
margin-bottom: 70px;
}

.floor-card {
background: #f3f3f3;
color: #222;
width: 48%;
padding: 55px 45px;
transition: 0.3s;
border-radius: 4px;
}

.floor-card:hover {
transform: translateY(-6px);
box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.floor-card h4 {
font-size: 13px;
letter-spacing: 4px;
margin-bottom: 25px;
}

.floor-card p {
font-size: 14px;
line-height: 1.8;
letter-spacing: 2px;
margin-bottom: 35px;
}

.floor-card .btn {
font-size: 11px;
padding: 10px 22px;
}



.floor-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(6px);

    display: none;
    justify-content: center;
    align-items: center;

    z-index: 9999;
}


.floor-container {
    text-align: center;
    position: relative;
}


.pdf-modal {
    position: fixed;
    inset: 0;

    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(6px);

    display: none;
    justify-content: center;
    align-items: center;

    z-index: 9999;
}


.pdf-wrapper {
    width: 80%;
    height: 85%;

    background: white;
    border-radius: 10px;

    padding: 25px;
    position: relative;

    display: flex;
    flex-direction: column;
}


.pdf-close {
    position: absolute;
    top: 20px;
    right: 25px;

    font-size: 28px;
    cursor: pointer;
}


.pdf-wrapper h3 {
    text-align: center;
    margin-bottom: 15px;
}


.floor-options {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
	width: 420px;
	margin: 0 auto;

	margin-top: 20px;
}

.floor-options {
	background: white;
	color:#2f5d50;
	padding:12px 15px;
	text-align:cener;
	font-size:13px;
	border-radius:6px;
	box-shadow:0 5px 15px rgba(0,0,0,0.08);
	transition:0.25s;
}

.floor-option:hover{
	transfrom:translateY(-3px);
	background:#cfe3d6;
}


.floor-options button {
    padding: 12px;
    background: white;
    color: #2f5d50;

    border: 1px solid #2f5d50;
    cursor: pointer;

    transition: 0.3s;
}

.floor-options button:hover {
    background: #2f5d50;
    color: white;
    transform: scale(1.05);
}


#pdfViewer {
    flex: 1;
    width: 100%;
    border: none;
    border-radius: 6px;
}


.floor-close {
    width: 50px;
    height: 50px;

    background: white;
    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 24px;
    cursor: pointer;

    margin: 0 auto 20px;

    box-shadow: 0 5px 15px rgba(0,0,0,0.9);
}


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


.map-card {
    display: block;
    padding: 12px 15px;     

    background: #cfe3d6;
    color: #2f5d50;
    text-decoration: none;

    font-size: 12px;      
    letter-spacing: 1px;
    text-align: center;

    border-radius: 4px;

    transition: 0.25s ease;
}


.map-card:hover {
    background: #bcd8c7;
    transform: translateY(-3px); 
} 


.location-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 25px;
}


.location-list a {
    display: block;

    padding: 14px 18px;
    background: #f3f3f3;

    text-decoration: none;
    color: #333;

    font-size: 13px;
    letter-spacing: 1px;

    border-radius: 4px;

    transition: 0.25s;
}


.location-list a:hover {
    background: #cfe3d6;
    color: #2f5d50;

    transform: translateX(5px); 
}



#closeMap {
    position: absolute;

    top: -40px;
    left: 50%;
    transform: translateX(-50%);

    width: 50px;
    height: 50px;

    background: white;
    color: #333;

    border-radius: 50%;

    font-size: 26px;
    font-weight: bold;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    box-shadow: 0 5px 15px rgba(0,0,0,0.9);
    z-index: 10;
}


#closeMap:hover {
    background: #5fa774;
    color: white;
}



.facilities {
background: #f3f3f3;
color: #222;
padding: 60px 80px;
display: flex;
justify-content: space-between;
text-align: center;
border-radius: 4px;
}

.facilities div {
width: 30%;
}

.facilities img {
width: 100px;
margin-bottom: 15px;
}

.facilities h4 {
font-size: 12px;
letter-spacing: 3px;
margin-bottom: 12px;
}

.facilities p {
font-size: 13px;
color: #666;
}



.registration {
padding: 140px 20px;
text-align: center;
}

.form {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 25px;
max-width: 720px;
margin: auto;
}

.form input {
padding: 14px;
border: none;
background: #cfe3d6;
font-size: 12px;
border-radius: 3px;
transition: 0.3s;
}

.form input:focus {
outline: none;
border: 1px solid #2f5d50;
background: #dceee4;
}

.form button {
grid-column: span 2;
margin-top: 25px;
	
}



.gallery {
background: #6aa884;
color: white;
text-align: center;
padding: 140px 20px;
margin-bottom: 120px;
}


.gallery-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 25px;
max-width: 800px;  
margin: 0 auto 50px;
}


.gallery-grid img {
width: 100%;
height: 140px;
object-fit: cover;
border-radius: 3px;
transition: 0.4s;
}

.gallery-grid img:hover {
transform: scale(1.07);
}

.gallery a.btn.primary{
	background: white!important;
	color:#2e7d32!important;
		
		border: 1px solid #2e7d32!important;
}

.gallery a.btn.primary:hover{
	 background: #2e7d32!important;
	color:white!important;
}



.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 9999;

    display: none;
    justify-content: center;
    align-items: center;
}

.modal-content {
    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;

    background: transparent !important;
    padding: 0 !important;
}


.modal-content img {
    width: 90vw !important;
    height: auto !important;
    max-height: 85vh;

    object-fit: contain;

    background: transparent !important;
    display: block;

    border-radius: 8px;
}


#closePoster {
    position: fixed;
    top: 30px;
    right: 40px;

    width: 45px;
    height: 45px;

    background: white;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    z-index: 10000;
}



.map-box {
width: 600px;
text-align: center;
}

.floor-options {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
margin-top: 20px;
}

.floor-option {
background: #f3f3f3;
padding: 20px;
text-decoration: none;
color: black;
border-radius: 5px;
transition: 0.3s;
}

.floor-option:hover {
transform: scale(1.05);
background: #e5efe9;
}



@keyframes popUp {
from {
transform: scale(0.8);
opacity: 0;
}
to {
transform: scale(1);
opacity: 1;
}
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

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

.calendar-box {
    transition: all 0.3s ease;
}

.calendar-box:hover {
    transform: translateY(-8px) scale(1.03);
    background: #bcd8c7;
    box-shadow: 0 15px 25px rgba(0,0,0,0.9);
}

.floor-card {
    transition: all 0.3s ease;
}

.floor-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 25px rgba(0,0,0,0.1);
}

.facilities div {
    transition: all 0.3s ease;
}

.facilities div:hover {
    transform: translateY(-6px) scale(1.03);
}

.form input {
    transition: all 0.3s ease;
}

.form input:hover {
    transform: scale(1.02);
}

.visitors-hero {
    position: relative; 
}

.visitors-icon {
    position: absolute;

    left: 70%;  
    top: 36%;

    width: 150px;
    z-index: 10;


    opacity: 0;
    transform: scale(0.6);

    animation: iconPop 0.8s ease forwards;
}


@keyframes iconPop {
    0% {
        opacity: 0;
        transform: scale(0.6);
    }
    60% {
        opacity: 1;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}







/* ========================= */
/* EXHIBITOR PAGE */
/* ========================= */


.about-hero {
    background: #cfe3d6;
    padding: 80px 120px;
}

.about-hero h1 {
    font-size: 36px;
    margin-bottom: 10px;
}


.booth {
    background: #f3f3f3;
    padding: 120px 0;
    text-align: center;
}

.booth-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
}

.booth-card {
    width: 280px;
    background: #b7cdc2;
    padding: 30px;
    text-align: left;
    position: relative;

    transition: all 0.3s ease;
}


.booth-card:hover {
    transform: translateY(-6px) scale(1.04);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}


.booth-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    margin-bottom: 20px;
    transition: 0.4s;
}

.booth-card:hover img {
    transform: scale(1.08);
}



.btn.primary {
    background: #2f5d50;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;

    transition: all 0.25s ease;
}

.btn.primary:hover {
    background: #1e4037;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}



.exhibitor-form-section {
    background: #6aa884;
    padding: 120px 0;
    text-align: center;
    color: white;
}

.exhibitor-form {
    display: grid;
    grid-template-columns: repeat(2, 350px);
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.exhibitor-form input {
    padding: 12px;
    border: none;
    background: #cfe3d6;
}

.exhibitor-form input:focus {
    outline: none;
    border: 2px solid #2f5d50;
}

.exhibitor-form button {
    grid-column: span 2;
    width: 720px;
    margin-top: 20px;
    padding: 14px;
    background: #2f5d50;
    color: white;
    border: none;
    cursor: pointer;
}

.exhibitor-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}


.download {
    background: #f3f3f3;
    padding: 120px 0;
    text-align: center;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(3, 260px);
    justify-content: center;
    gap: 50px;
    margin-top: 60px;
}

.download-card {
    background: #b7cdc2;
    padding: 60px 20px;
    text-decoration: none;
    color: #222;
    font-size: 12px;
    letter-spacing: 2px;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.3s;
}

.download-card:hover {
    background: #2f5d50;
    color: white;
    transform: translateY(-5px);
}



.faq {
    background: #6aa884;
    padding: 140px 120px;
    margin-bottom: 80px;
    color: white;
}

.faq-question {
    margin: 15px 0;
    cursor: pointer;
    font-size: 14px;
    transition: 0.3s;
}

.faq-question:hover {
    opacity: 0.7;
}



.modal {
    display: none;

    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(8px);

    justify-content: center;
    align-items: center;

    z-index: 999;
}



#closeBtn {
    position: absolute;
    top: 35%;
    left: 50%;

    transform: translate(-50%, -140px);

    width: 45px;
    height: 45px;

    background: white;
    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 22px;
    cursor: pointer;

    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}



.modal-card {
    width: 360px;
    padding: 25px;

    border-radius: 12px;

    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(15px);

    text-align: center;

    box-shadow: 0 20px 40px rgba(0,0,0,0.2);

    animation: popUp 0.3s ease;
}



.modal-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;

    border-radius: 8px;
    margin-bottom: 15px;
}



.modal-card h3 {
    font-size: 18px;
    margin-bottom: 5px;
}



.modal-card p {
    font-size: 15px;
    margin-bottom: 15px;
}



#confirmBtn {
    padding: 10px 25px;

    background: #2f5d50;
    color: white;

    border: none;
    cursor: pointer;

    transition: 0.3s;
}

#confirmBtn:hover {
    transform: scale(1.05);
    background: #1e4037;
}



@keyframes popUp {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}


#faqModal .modal-content {
    width: 400px;
}



.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

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



.booth-detail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: white;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding: 20px;

    opacity: 0;
    pointer-events: none;

    transition: 0.3s;
}


.booth-detail.active {
    opacity: 1;
    pointer-events: auto;
}


.close-detail {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
}


.detail-img {
    width: 80%;
    margin-bottom: 10px;
}



@keyframes scaleUp {
    from { transform: scale(0.8); }
    to { transform: scale(1); }
}



.faq-modal-card {
    background: white;

    width: 420px;
    padding: 35px 40px;

    border-radius: 10px;
    text-align: center;

    position: relative;

    box-shadow: 0 20px 50px rgba(0,0,0,0.25);

    animation: scaleUp 0.3s ease;
}


#closeFaq {
    position: absolute;
    top: -12px;
    right: -12px;

    width: 30px;
    height: 30px;

    border-radius: 50%;
    background: white;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.exhibitor-hero {
    position: relative;   
}


.exhibitor-icon {
    position: absolute;

    left: 80%;  
    top: 22%;

    width: 150px;
    z-index: 10;


    opacity: 0;
    transform: scale(0.6);

    animation: iconPop 0.8s ease forwards;
}



@keyframes iconPop {
    0% {
        opacity: 0;
        transform: scale(0.6);
    }
    60% {
        opacity: 1;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}







/* ================= CONTACT  ================= */

.contact-hero {
    background: #cfe3d6; 
    padding: 70px 120px;
}

.contact-hero h1 {
    font-size: 36px;
    font-family: 'Playfair Display', serif;
}

.contact-hero p {
    margin-top: 10px;
    font-size: 14px;
    color: #555;
}



.contact-info {
    width: 720px;
    margin: 0 auto;
    padding: 80px 0;
}


.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    margin-bottom: 35px;
}


.info-box {
    background: #c8dbc8 !important; 
    
    padding: 16px 18px;
    margin-bottom: 18px;

    font-size: 10px;
    letter-spacing: 2px;

    border-radius: 2px;
}


.info-box span {
    display: block;
    margin-top: 5px;
    font-size: 13px;
    letter-spacing: 1px;
}



.social {
    margin-top: 25px;
}

.social p {
    font-size: 12px;
    margin-bottom: 10px;
}


.social-icons {
    display: flex;
    gap: 30px;
}


.social-icons img {
    width: 65px;  
    height: 65px;
    border-radius: 50%;

    transition: all 0.3s ease;
}


.social-icons img:hover {
    transform: scale(1.2);
}



.contact-form-section {
    background: linear-gradient(180deg, #6aa884); 
    padding: 80px 0;
}


.contact-form {
    width: 720px;
    margin: 0 auto;
    color: white;
}


.contact-form h2 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    margin-bottom: 30px;
}


.contact-form label {
    display: block;
    margin-top: 14px;

    font-size: 10px;
    letter-spacing: 2px;
}


.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 6px;

    border: none;
    background: #efefef;
}


.contact-form textarea {
    height: 110px;
}


.contact-form button {
    margin-top: 20px;
    padding: 10px 22px;

    background: #3e5f4c;
    color: white;

    border: none;
    font-size: 11px;
}



.map {
    padding: 80px 0;
    text-align: center;
}


.map .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 30px;
}



.map {
    padding: 80px 0;
    text-align: center;
}


.map .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 30px;
}



.map-card {
    width: 420px;
    height: 230px;

    margin: 0 auto 40px;

    position: relative;
    overflow: hidden;

    display: block;
    text-decoration: none;
}


.map-card img {
    width: 55%;
    height: 75%;
    object-fit: cover;

    border-radius: 6px;

    transition: transform 0.4s ease;
}


.map-card:hover img {
    transform: scale(1.08);
}



.map-btn {
	text-decoration: none;
	display:inline-block;
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);

    background: #5fa774;
    color: white;

    padding: 10px 22px;
    font-size: 11px;
    letter-spacing: 2px;

    border-radius: 4px;

    transition: all 0.3s ease;
}


.map-card:hover .map-btn {
    background: #4c8d62;
    transform: translateX(-50%) translateY(-4px);
}



.map-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}


.facility {
    display: flex;
    justify-content: center;
    gap: 30px;
}


.facility-card {
    width: 180px;
    height: 120px;

    background: #dbe8db;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding: 15px;
}


.facility-card h4 {
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 6px;
}

.facility-card p {
    font-size: 11px;
    text-align: center;
}


.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

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


.info-box {
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}



.map-card {
    transition: all 0.3s ease;
}

.map-card:hover {
    transform: scale(1.04);
}



.facility-card {
    transition: all 0.3s ease;
}

.facility-card:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.contact-hero-icon {
    position: relative;
}

.contact-icon {
    position: absolute;

    left: 90%;
    top: 22%;

    width: 150px;

    z-index: 9999;

    opacity: 0;
    transform: scale(0.6);

    animation: iconPop 0.8s ease forwards;
}

@keyframes iconPop {
    0% {
        opacity: 0;
        transform: scale(0.6);
    }
    60% {
        opacity: 1;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}







/* ===== GALLERY PAGE ===== */
.gallery-page {
    background: #eaf3ec; 
    padding: 100px 0 80px;
}


.gallery-container {
    width: 900px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}


.gallery-container img {
    width: 100%;
    height: 220px;
    object-fit: cover;

    transition: 0.3s;
    cursor: pointer;
}


.gallery-container img:hover {
    transform: scale(1.05);
}


.gallery-page {
    margin-bottom: 100px;
}


.gallery-container img {
    opacity: 0;
    transform: translateY(40px) scale(1);   
    transition: all 0.5s ease;
}


.gallery-container img.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.gallery-container img.active:hover {
    transform: translateY(0) scale(1.06);  
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}




/* ===== homeliving ===== */
.event-banner {
    position: relative;
}

.event-banner img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 24px;
    letter-spacing: 3px;
}


.event-intro {
    padding: 100px 120px;
}

.intro-container {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: center;
}

.intro-text {
    max-width: 500px;
}

.intro-text h3 {
    margin-bottom: 20px;
}

.intro-text p {
    line-height: 1.7;
}

.intro-img img {
    width: 380px;
    border-radius: 8px;
}


.event-strip {
    padding: 40px 0;
    background: #f3f3f3;
}

.strip-images {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 0 40px;
}

.strip-images img {
    height: 120px;
    border-radius: 6px;
}


.event-info {
    background: linear-gradient(to right, #dfeee4, #cfe3d6);
    padding: 100px 20px;
    text-align: center;
}

.info-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.info-box {
    background: white;
    padding: 30px 40px;
    min-width: 220px;
    border-radius: 6px;
}

.info-box h4 {
    letter-spacing: 2px;
    margin-bottom: 10px;
}


.event-brands {
    background: #ffffff;
    padding: 80px 20px;
    text-align: center;
}


.brand-slider {
    position: relative;
    height: 120px;
    margin-top: 40px;
}

.brand-group {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 60px;
    opacity: 0;
    transition: 0.8s;
}

.brand-group img {
    width: 200px;
    height: 150px;
    object-fit: contain;
    opacity: 0.7;
    transition: 0.3s;
}
.brand-group img {
    transition: all 0.3s ease;
}

.brand-group img:hover {
    transform: scale(1.1);
    opacity: 1;
}

.brand-group {
    position: absolute;
    width: 100%;

    display: flex;
    justify-content: center;
    gap: 60px;

    opacity: 0;
    pointer-events: none;  
    transition: 0.8s;
}

.brand-group.active {
    opacity: 1;
    pointer-events: auto;  
}


.brand-group img:hover {
    opacity: 1;
    transform: scale(1.1);
}

.brand-group.active {
    opacity: 1;
}



.event-cta {
    background: linear-gradient(to right, #dfeee4, #cfe3d6);
    padding: 80px 20px;
    text-align: center;
    margin-bottom: 80px; 
}

.event-cta h2 {
    font-size: 28px;
    margin-bottom: 20px;
}


.event-cta .btn {
    margin-top: 20px;
}


.btn.primary {
    background: #5fa774;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}

.btn.primary:hover {
    background: #4c8d62;
}


@media (max-width: 768px) {

    .intro-container {
        flex-direction: column;
        text-align: center;
    }

    .info-grid {
        flex-direction: column;
        gap: 20px;
    }

    .brand-group {
        flex-wrap: wrap;
        gap: 20px;
    }
}

.more-text {
    margin-top: 100px;
    font-size: 13px;
    letter-spacing: 4px;
    color: #5fa774;
    position: relative;
}

.more-text::before {
    content: "";
    display: block;
    width: 40px;
    height: 1px;
    background: #5fa774;
    margin: 0 auto 10px;
}


.reveal {
    opacity: 0;
    transform: translateY(50px) scale(0.98);
    transition: all 0.8s ease;
}

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

.intro-img img {
    transition: all 0.4s ease;
}

.intro-img img:hover {
    transform: scale(1.06);
}

.info-box {
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.event-cta .btn {
    transition: all 0.3s ease;
}

.event-cta .btn:hover {
    transform: scale(1.05);
}





/* ================================================== */
/* MOBILE RESPONSIVE */
/* 放在 style.css 最下面 */
/* ================================================== */
@media (max-width: 768px) {

    body {
        overflow-x: hidden;
    }

    /* ================= HEADER ================= */
    .header {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px;
        gap: 15px;
        text-align: center;
    }

    .logo img {
        height: 110px !important;
    }

    .nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 14px;
    }

    .nav a {
        margin-left: 0 !important;
        font-size: 11px;
    }

    /* ================= GLOBAL SPACING ================= */
    .hero,
    .sub-hero,
    .about-hero,
    .contact-hero,
    .exhibition-section,
    .company,
    .mission,
    .values,
    .commitment,
    .calendar,
    .floor,
    .registration,
    .gallery,
    .booth,
    .download,
    .faq,
    .event-intro,
    .event-info,
    .event-brands,
    .event-cta,
    .contact-info,
    .contact-form-section {
        padding-left: 20px !important;
        padding-right: 20px !important;
        box-sizing: border-box;
    }

    /* ================= HERO / SUB HERO ================= */
    .hero,
    .sub-hero,
    .about-hero,
    .contact-hero {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
        text-align: center;
    }

    .hero-title,
    .hero h1,
    .sub-hero h1,
    .about-hero h1,
    .contact-hero h1 {
        font-size: 30px !important;
        line-height: 1.2;
    }

    .hero p,
    .sub-hero p,
    .about-hero p,
    .contact-hero p {
        font-size: 13px;
        max-width: 100%;
    }

    /* ================= ALL SMALL PAGE ICONS ================= */
    .hero-title-wrapper,
    .about-hero,
    .sub-hero,
    .contact-hero,
    .exhibitor-hero,
    .visitors-hero,
    .contact-hero-icon {
        position: relative;
    }

    .hero .hero-icon,
    .about-icon,
    .exhibition-icon,
    .visitors-icon,
    .exhibitor-icon,
    .contact-icon {
        position: static !important;
        display: block;
        width: 90px !important;
        margin: 0 auto 15px !important;
        left: auto !important;
        top: auto !important;
        bottom: auto !important;
        right: auto !important;
        transform: none !important;
        opacity: 1 !important;
        animation: none !important;
        z-index: auto !important;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn {
        width: 220px;
        text-align: center;
        box-sizing: border-box;
    }

    /* ================= HOME ================= */
    .why {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .why-grid {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .upcoming {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .cards {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding-left: 0;
        padding-right: 0;
        box-sizing: border-box;
    }

    .card {
        width: 100% !important;
        max-width: 320px;
        padding: 25px;
        box-sizing: border-box;
    }

    .cta {
        width: auto;
        max-width: calc(100% - 40px);
        margin: 0 20px 80px;
        padding: 50px 20px;
        box-sizing: border-box;
    }

    /* ================= ABOUT ================= */
    .company,
    .mission,
    .values,
    .commitment {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .company-wrapper,
    .mission-wrapper {
        flex-direction: column !important;
        gap: 30px;
    }

    .company-left,
    .company-right {
        width: 100% !important;
    }

    .company-right {
        grid-template-columns: 1fr !important;
    }

    .values-grid {
        grid-template-columns: 1fr !important;
    }

    /* ================= EXHIBITIONS ================= */
    .exhibition-section {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .exhibition,
    .exhibition.reverse {
        flex-direction: column !important;
        gap: 25px;
        margin-bottom: 60px;
    }

    .exhibition-img,
    .exhibition-text,
    .intro-text,
    .intro-img {
        width: 100% !important;
        max-width: 100% !important;
        flex: unset !important;
    }

    .exhibition-img img,
    .intro-img img {
        width: 100%;
        max-width: 100% !important;
        height: auto;
    }

    .cta {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
        margin-bottom: 60px !important;
    }

    .cta h2 {
        font-size: 26px !important;
        margin-bottom: 25px !important;
    }

    .cta-boxes {
        flex-direction: column !important;
        align-items: center;
        gap: 20px;
    }

    .cta-box {
        width: 100% !important;
        max-width: 320px;
        box-sizing: border-box;
    }

    /* ================= VISITORS ================= */
    .calendar,
    .floor,
    .registration,
    .gallery {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .calendar-grid,
    .gallery-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .floor-grid {
        flex-direction: column !important;
        gap: 20px;
    }

    .floor-card {
        width: 100% !important;
        padding: 30px 20px !important;
        box-sizing: border-box;
    }

    .facilities {
        flex-direction: column !important;
        gap: 25px;
        padding: 30px 20px !important;
        box-sizing: border-box;
    }

    .facilities div {
        width: 100% !important;
    }

    /* ================= EXHIBITORS ================= */
    .booth,
    .download,
    .faq,
    .exhibitor-form-section {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .booth-grid {
        flex-direction: column !important;
        align-items: center;
        gap: 20px;
    }

    .booth-card {
        width: 100% !important;
        max-width: 340px;
        box-sizing: border-box;
    }

    .download-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .exhibitor-form {
        grid-template-columns: 1fr !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .exhibitor-form button {
        width: 100% !important;
        grid-column: span 1 !important;
    }

    /* exhibitor modal close button */
    #closeBtn {
        top: 20px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        z-index: 10001 !important;
    }

    .modal-card {
        width: 90% !important;
        max-width: 340px !important;
        padding: 20px !important;
    }

    /* ================= CONTACT ================= */
    .contact-info,
    .contact-form {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        box-sizing: border-box;
    }

    .social-icons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .facility {
        flex-direction: column !important;
        align-items: center;
        gap: 20px;
    }

    .facility-card {
        width: 100% !important;
        max-width: 280px;
    }

    .map-card {
        width: 90% !important;
        height: auto !important;
    }

    .map-card img {
        width: 100% !important;
        height: auto !important;
    }

    /* ================= EVENT DETAIL PAGES ================= */
    .event-intro,
    .event-info,
    .event-brands,
    .event-cta {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .intro-container {
        flex-direction: column !important;
        text-align: center;
        gap: 25px;
    }

    .intro-text,
    .intro-img {
        width: 100% !important;
        max-width: 100% !important;
    }

    .intro-img img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto;
    }

    .info-grid {
        flex-direction: column !important;
        gap: 20px;
        align-items: center;
        padding-left: 0;
        padding-right: 0;
        box-sizing: border-box;
    }

    .info-box {
        width: 100% !important;
        max-width: 320px;
        box-sizing: border-box;
    }

    .brand-slider {
        height: auto !important;
        min-height: 220px;
        margin-top: 25px;
        position: relative;
    }

    .brand-group {
        position: static !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        flex-wrap: wrap !important;
        gap: 20px !important;
        justify-content: center;
    }

    .brand-group img {
        width: 120px !important;
        height: 90px !important;
    }

    .more-text {
        margin-top: 30px !important;
    }

    /* ================= GALLERY PAGE ================= */
    .gallery-page {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .gallery-container {
        width: 100% !important;
        max-width: 100% !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
    }

    .gallery-container img {
        width: 100% !important;
        height: auto !important;
        max-height: none !important;
    }

    /* ================= FORMS ================= */
    .form {
        grid-template-columns: 1fr !important;
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .form button {
        grid-column: span 1 !important;
        width: 100%;
    }

    input,
    textarea,
    button {
        box-sizing: border-box;
    }

    /* ================= MODALS ================= */
    .modal-card,
    .faq-modal-card,
    .pdf-wrapper,
    .modal-content,
    .map-box {
        width: 90% !important;
        max-width: 90% !important;
        box-sizing: border-box;
    }

    .floor-options {
        grid-template-columns: 1fr !important;
        width: 100% !important;
    }

    .location-list a,
    .floor-option {
        font-size: 12px;
    }

    #closePoster,
    #closeMap,
    #closeFloor,
    #closeBtn,
    #closeFaq {
        transform: scale(0.9);
    }

    /* ================= FOOTER ================= */
    .footer-content {
        flex-direction: column !important;
        gap: 25px;
        text-align: center;
    }

    .footer {
        padding: 50px 20px 30px !important;
    }

    /* ================= BACK TO TOP ================= */
    .back-to-top {
        right: 15px !important;
        bottom: 15px !important;
        width: 40px !important;
        height: 40px !important;
    }
}