*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@font-face {
  font-family: 'MagicsFlavor';
  src: url('fonts/Magics Flavor.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'butfont';
  src: url('fonts/Simply Olive DEMO.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'font';
  src: url('fonts/KGPerfectPenmanship.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'intro';
  src: url('fonts/Boa Construktor.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'super';
  src: url('fonts/Super Warming.woff2') format('woff2');
  font-display: swap;
}


.fa-youtube {
  color: #FF0000; 
}
.fa-instagram {
  color: #E1306C;
}
.fa-image{
    color: var(--accent);
}
.fa-linkedin{
    color: rgb(81, 81, 214);
}
.fa-envelope{
    color:#FC413D;
}
.fa-whatsapp{
    color:#25D366;
}
:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --text-primary: #ffffff;
  --text-secondary: #888888;
  --accent: #ff5e00;
  --border: #222222;
}

#main-site{
  opacity: 0;
  transition: opacity 1s ease;
}

#intro {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #000;
  z-index: 9999;
  overflow: hidden;
}

#intro-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.animate.visible {
  opacity: 1;
  transform: translateY(0);
}

html, body {
    min-height: 100vh;
    width: 100%;
    background-color: var(--bg-secondary);
}
#pointer {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background-color: var(--accent);
    position: fixed;
    z-index: 100001; 
    top: 0;
    display: none;
    left: 0;
    pointer-events: none;
    transition: transform 0.15s ease-out;
    color: var(--text-primary);
    font-size: 1rem;
    text-align: center;
    padding: 10px;
    font-family: intro;
}
nav{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 2rem;
    background-color: transparent;
    position: fixed;
    height: 8vh;
    width: 100%;
    z-index: 10;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    background: rgba(10, 10, 10, 0.05);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.7s ease;
}

nav.hidden {
    transform: translateY(-100%);
}

nav .logo{
    font-family: MagicsFlavor;
    font-size: clamp(2rem, 2.5vw, 3rem);
    color: var(--accent);
    cursor:default;
}

nav a{
    text-decoration: none;
    font-family: butfont;
    font-size: clamp(0.8rem, 1.8vw, 1.2rem);
    color: var(--accent);
    border: 1px solid var(--accent);
    border-radius: 10px;
    padding: 5px 8px;
    margin-left: auto;
    text-align: center;
    transition: 0.2s all ease;
    cursor: pointer;
}

@media (hover: hover) {
    nav a:hover {
        transform: translateY(-2px);
        background-color: var(--accent);
        color: var(--text-primary);
        box-shadow: 4px 4px 10px rgba(255, 94, 0, 0.396);
    }
}

nav a:active {
    transform: translateY(2px);
    background-color: var(--accent);
    color: var(--text-primary);
}

#section1{
    height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(10, 10, 10, 0.6), rgba(10, 10, 10, 0.6)), url('assets/background.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items:start;
    line-height: 1.1;
    text-align: left;
    padding-left: 5%;
    flex-direction: column;
}
#section1 video{
    display: none;
}
#section1 h1{
  font-size: clamp(5rem, 6.5vw, 12rem);
  color:var(--text-primary);
  font-family: intro;
}

#section1 h2{
  font-size: clamp(1.8rem,2.3vw, 4rem);
  color: var(--accent);
  font-family: intro;
}

@media (min-width: 769px) and (max-width: 1024px) {
    nav {
        padding: 1.5rem;
    }

    nav .logo {
        font-size: clamp(2.2rem, 3vw, 2.8rem);
    }

    nav a {
        font-size: clamp(1rem, 1.5vw, 1.2rem);
        padding: 6px 12px;
    }

    #section1 {
        padding-left: 4%; 
    }

    #section1 h1 {
        font-size: clamp(3.8rem, 7vw, 10rem);
    }

    #section1 h2 {
        font-size: clamp(1.8rem, 2.5vw, 2.5rem);
        max-width: 80%;
    }

    #section2 {
        height: auto;
        min-height: 100vh;
        padding: 4rem 2%;
    }
    
    .left {
        width: 55%;
        padding-left: 2%;
    }
    
    .left h2 {
        font-size: clamp(3rem, 5vw, 4rem);
    }
    
    .left p {
        width: 95%;
        font-size: clamp(1.2rem, 2vw, 1.6rem);
    }
    
    .right {
        width: 45%;
    }
    
    .right .sidepic {
        width: 85%;
        height: 35vh; 
    }
    
    .right .side2 {
        width: 95%;
        font-size: clamp(1rem, 1.8vw, 1.5rem);
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem;
        height: auto; 
        min-height: 8vh;
        
    }

    nav .logo {
        font-size: clamp(1.5rem, 7vw, 3rem);
    }

    nav a {
        font-size: clamp(0.95rem, 3vw, 1.2rem);
        padding: 6px 12px;
    }

    #section1 {
        padding-left: 5%;
        padding-right: 5%;
        height: 95vh;
        background-image: none;
        position: relative; 
        overflow: hidden; 
        z-index: 1;
    }
    #section1 video{
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -1; 
        filter: blur(2px) brightness(0.99); 
        transform: scale(1.01);
    }
    #section1 h1 {
        font-size: clamp(3.4rem, 10vw, 4rem);
    }

    #section1 h2 {
        font-size: clamp(1.2rem, 5vw, 2rem);
        max-width: 95%; 
    }

}
#section2{
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items:start;
    line-height: 1.1;
    text-align: left;
    background-color: var(--bg-secondary);
    overflow: hidden;
}

.left{
    height: 100%;
    width: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-primary);
    background-color: var(--bg-secondary);
    font-family:'Courier New', Courier, monospace;
    flex-direction: column;
    gap: 10%;
}

.left h2{
    font-size: clamp(3.5rem,5vw, 10rem);
    margin-left: 5%;
}
.left p{
    font-size: clamp(1.4rem,2vw, 3rem);
    font-family: font;
    width: 80%;
    line-height: 1.5;
    color: var(--text-secondary);
}
.right{
    height: 100%;
    width: 30%;
   display: flex;
   justify-content: center;
   align-items: center; 
   gap: 10%;
   flex-direction: column;
    
}
.right .sidepic{
  aspect-ratio: 1 / 1;
  width:70%;
  border-radius: 0 80px 0 80px;
  background-image: url('assets/side.webp');
  background-size: cover;
  background-position: center;
  border: 3px solid var(--accent);
  box-shadow: 10px 10px 5px var(--accent);
  transition: all 0.3s ease;
  cursor: pointer;
}

.right .sidepic:hover{
  transform: scale(0.96) translate(5px, 5px);
  box-shadow: 0 0 0 transparent;
}
.right .side2{
  height: 10%;
  width: 60%;
  text-align: left;
  font-size: clamp(1.4rem,2vw, 3rem);
  font-family: font;
  color: var(--text-primary);
  text-decoration: none;
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 10%;
}
.mobile-break {
  display: none;
}

@media (min-width: 769px) and (max-width: 1024px) {
    
    #section2 {
        min-height: 100vh;
        padding: 4rem 2%;
    }
    
    .left {
        width:70%;
        padding-left: 2%;
    }
    
    .left h2 {
        font-size: clamp(4.4rem, 3vw, 4rem);
    }
    
    .left p {
        width: 95%;
        font-size: clamp(1.2rem, 2vw, 1.6rem);
    }
    
    .right {
        width: 45%;
    }
    
    .right .sidepic {
        width: 85%;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    
    .right .side2 {
        width: 95%;
        font-size: clamp(1rem, 1.8vw, 1.5rem);
    }

  .mobile-break {
    display: block;
  }
}

@media (max-width: 768px) {
    
  .mobile-break {
    display: block;
  }

    #section2 {
        flex-direction: column;
        height: auto;
        padding: 4rem 5%;
        gap: 3rem;
    }
    
    .left {
        width: 100%;
        text-align: center;
        gap: 1.5rem;
    }
    
    .left h2 {
        font-size: clamp(3rem, 10vw, 4.5rem);
    }
    
    .left p {
        width: 100%;
        font-size: 1.1rem;
    }
    
    .right {
        width: 100%;
        height: auto;
        flex-direction: row-reverse; 
        justify-content: space-between;
        gap: 1rem;
        margin-top: 1rem;
        border-bottom: 3px solid var(--accent);
        border-top: 3px solid var(--accent);
        padding-bottom: 3%;
        padding-top: 2%;
    }
    
    .right .sidepic {
        width: 45vw;
        height: 45vw; 
        border-radius: 0 40px 0 40px; 
        border: 3px solid var(--accent);
        box-shadow: 5px 5px 3px var(--accent);
    }
    
    .right .sidepic:hover {
        transform: none; 
    }
    
    .right .side2 {
        width: 50%;
        height: auto;
        justify-content: center;
        align-items: flex-start;
        border-radius: 20px;
        font-size: 1rem;
        padding: 1rem 0;
    }
}

#section3{
    height: 120vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color:var(--bg-secondary);
    flex-direction: column;
}
#section3 h2{
    display: none;
}

.grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-template-rows: repeat(4,1fr);
    height: 100%;
    width: auto;
    gap: 2%;
    aspect-ratio: 1/1;
}

.item1 , .item2 , .item3 , .item4{
    border: 3px solid var(--accent);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 2;
}

.item1 a, .item2 a, .item3 a, .item4 a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.item1 i, .item2 i, .item3 i, .item4 i {
    font-size: clamp(2.5rem, 6vw, 5rem);
    opacity: 0;
    transition: opacity 0.3s ease 0.1s;
    pointer-events: none;
}

@media (hover: hover) {
    .item1:hover i, .item2:hover i, .item3:hover i, .item4:hover i {
        opacity: 1;
    }
}

.item5 , .item6 , .item7 , .item8{
    cursor: pointer;
    border: 3px solid var(--accent);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ff5e00;
    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
    background-size:cover;
    background-position: center;
    z-index: 1;
}

.item1{
    grid-area: 2/1/3/3;
    border-radius: 20% 20% 0 20%;
}

.item2{
    grid-area: 1/3/3/3;
    border-radius: 20% 20% 20% 0;
}

.item3{
    grid-area: 3/2/5/2;
    border-radius: 20% 0 20% 20%;
}

.item4{
    grid-area: 3/3/3/5;
    border-radius: 0 20% 20% 20%;
}
.item5{
   grid-area: 2/1/3/3;
   background-image: url('assets/Content.webp');
    border-radius: 20% 20% 0 20%;
    
}
.item6{
   grid-area: 1/3/3/3;
   background-image: url('assets/Ad.webp');
    border-radius: 20% 20% 20% 0;

}
.item7{
    grid-area: 3/2/5/2;
    border-radius: 20% 0 20% 20%;
    background-image: url('assets/Photography.webp');
}
.item8{
    grid-area: 3/3/3/5;
    border-radius: 0 20% 20% 20%;
    background-image: url('assets/Videography.webp');
}

@media (min-width: 769px) {
    .item1:hover ~ .item5, .item5:hover { transform: translateY(-108.51%); }
    .item2:hover ~ .item6, .item6:hover { transform: translateX(108.51%); }
    .item3:hover ~ .item7, .item7:hover { transform: translateX(-108.51%); }
    .item4:hover ~ .item8, .item8:hover { transform: translateY(108.51%); }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .grid {
        height: auto;
        width: 85vw;
        max-width: 85vh;
    }
}

@media (max-width: 768px) {
    .grid {
        height: 90vh;
        max-height: 180vw;
        width: auto;
        aspect-ratio: 1 / 2;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
    }
    #section3 h2{
    display: block;
    color: var(--text-primary);
    font-size: clamp(3rem,5vw, 10rem);
    font-family:'Courier New', Courier, monospace;
    margin-bottom: 10%;
    text-align: center;
}
    
    .item1, .item2, .item3, .item4,
    .item5, .item6, .item7, .item8 {
        border-width: 2px; 
        border-radius: 15px;
    }

    .item1, .item5 { grid-area: 1 / 1 / 2 / 2; }
    .item2, .item6 { grid-area: 2 / 2 / 3 / 3; }
    .item3, .item7 { grid-area: 3 / 1 / 4 / 2; }
    .item4, .item8 { grid-area: 4 / 2 / 5 / 3; }

    .item1.active ~ .item5 { transform: translateX(104.08%); } 
    .item2.active ~ .item6 { transform: translateX(-104.08%); } 
    .item3.active ~ .item7 { transform: translateX(104.08%); } 
    .item4.active ~ .item8 { transform: translateX(-104.08%); } 

    .item1.active i, .item2.active i, .item3.active i, .item4.active i {
        opacity: 1;
    }
}

#section5{
    height: 110vh;
    width: 100%;
    background-color: var(--bg-secondary);
    display: flex;
    justify-content: center;
    align-items:center;
    flex-direction: column;
    gap: 5%;
    overflow: hidden;
    text-align: center;
}
#section5 h2{
    font-family:'Courier New', Courier, monospace;
    font-size: clamp(3rem,6vw, 10rem);
    color: var(--accent);
    cursor: pointer;
}
#section5 p{
    font-family: butfont;
    font-size: clamp(1.4rem,2vw, 3rem);
    color: var(--text-secondary);
    margin: 0 5%;
}

#section5 form {
    width: 90%;
    max-width: 800px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 3rem;
    text-align: left;
    margin-top: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

#section5 label {
    font-family: intro;
    color: var(--text-primary);
    font-size: clamp(1rem, 1.5vw, 1.4rem);
    letter-spacing: 1.5px;
}

#section5 input, 
#section5 select, 
#section5 textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: 'Courier New', Courier, monospace;
    font-size: clamp(1rem, 1.6vw, 1.3rem);
    padding: 12px 16px;
    outline: none;
    transition: all 0.3s ease;
    resize: vertical;
}

#section5 input::placeholder, 
#section5 textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

#section5 input:-webkit-autofill,
#section5 input:-webkit-autofill:hover, 
#section5 input:-webkit-autofill:focus, 
#section5 input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px var(--bg-secondary) inset !important;
    -webkit-text-fill-color: var(--text-primary) !important;
    transition: background-color 5000s ease-in-out 0s;
}

#section5 input:focus, 
#section5 select:focus, 
#section5 textarea:focus {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 0 4px rgba(255, 94, 0, 0.15);
}

#section5 select option {
    background: var(--bg-primary);
    color: var(--text-primary);
}

#section5 button {
    grid-column: 1 / -1;
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    font-family: intro;
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    padding: 15px 30px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    width: max-content;
    justify-self: center;
}

@media (hover: hover) {
    #section5 button:hover {
        background: var(--accent);
        color: var(--text-primary);
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(255, 94, 0, 0.3);
    }
}

#section5 button:active {
    transform: translateY(2px);
    background: var(--accent);
    color: var(--text-primary);
}

@media (min-width: 769px) and (max-width: 1024px) {
    #section5 {
        height: auto;
        padding: 6rem 5%;
        gap: 3rem;
    }
    
    #section5 form {
        gap: 1.5rem 2rem;
    }
}

@media (max-width: 768px) {
    #section5 {
        height: auto;
        padding: 5rem 5%;
        gap: 2rem;
    }
    
    #section5 h2 {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }
    
    #section5 p {
        font-size: 1.1rem;
    }
    
    #section5 form {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    #section5 button {
        width: 100%;
        font-size: 1.2rem;
        padding: 12px 20px;
    }
}

footer {
    width: 100%;
    padding: 1.5rem 5%;
    background-color: var(--bg-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.crafted-by {
    font-size: 14px;
    color: #444;
    text-align: center;
    padding-top: 20px;
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    background-color: var(--bg-primary);
}

.crafted-by a {
    color: var(--accent);
    text-decoration: none;
}

.footer-copy {
    color: var(--text-secondary);
    font-family: 'Courier New', Courier, monospace;
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    letter-spacing: 1px;
}

.footer-icons {
    display: flex;
    gap: 2rem;
    align-items: center;
    padding-right: 80px; 
}

.footer-icons a {
    color: var(--text-secondary);
    font-size: clamp(1.8rem, 2.5vw, 2.2rem);
    transition: all 0.3s ease;
    text-decoration: none;
    pointer-events: all;
    cursor: pointer;
}

@media (hover: hover) {
    .footer-icons a:hover {
        color: var(--accent);
        transform: translateY(-5px);
        filter: drop-shadow(0 5px 15px rgba(255, 94, 0, 0.4));
    }
}

.footer-icons a:active {
    transform: translateY(2px);
    color: var(--accent);
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column-reverse;
        gap: 1.5rem;
        text-align: center;
        align-items: center;
        justify-content: center;
    }
    footer {
        gap: 1.5rem;
    }
    
    .footer-icons {
        gap: 3rem;
        margin-left:auto ;
    }
    
    .footer-copy {
        font-size: 0.95rem;
    }
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
}

#chatbot-container {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
    font-family: 'Courier New', Courier, monospace;
    pointer-events: none; 
}

#chatbot-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--accent);
    color: var(--text-primary);
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(255, 94, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    pointer-events: auto;
}

@media (hover: hover) {
    #chatbot-toggle:hover {
        transform: scale(1.1);
        box-shadow: 0 8px 20px rgba(255, 94, 0, 0.6);
    }
}

#chatbot-toggle:active {
    transform: scale(0.95);
}

#chatbot-window {
    width: 350px;
    height: 450px;
    background-color: var(--bg-primary);
    border: 2px solid var(--border);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    transform-origin: bottom right;
    opacity: 1;
    transform: scale(1);
    pointer-events: auto; 
}

#chatbot-window.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.chatbot-header {
    background-color: var(--bg-secondary);
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
}

.chatbot-title {
    color: var(--accent);
    font-family: intro;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

#chatbot-close {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s;
}

#chatbot-close:hover {
    color: var(--accent);
}

#chatbot-messages {
    flex-grow: 1;
    padding: 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    -ms-overflow-style: none;  
    scrollbar-width: none;  
    overscroll-behavior: contain; 
}

#chatbot-messages::-webkit-scrollbar {
    display: none;
}

.message {
    max-width: 80%;
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 0.95rem;
    line-height: 1.4;
    word-wrap: break-word;
}

.ai-message {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    align-self: flex-start;
    border-bottom-left-radius: 0;
}

.user-message {
    background-color: var(--accent);
    color: var(--text-primary);
    align-self: flex-end;
    border-bottom-right-radius: 0;
}

.typing-indicator {
    display: flex;
    gap: 4px;
    align-items: center;
    padding: 10px 15px;
    width: max-content;
}

.typing-indicator .dot {
    width: 6px;
    height: 6px;
    background-color: var(--text-secondary);
    border-radius: 50%;
    animation: typingBounce 1.4s infinite both;
}

.typing-indicator .dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator .dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingBounce {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
    40% { transform: scale(1); opacity: 1; }
}

.chatbot-options-inline {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    margin-top: 5px;
    align-self: flex-start;
}

.chatbot-option-btn {
    background-color: transparent;
    color: var(--text-primary);
    border: 1.5px solid var(--accent);
    border-radius: 8px;
    padding: 8px 12px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.85rem;
    font-weight: bold;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-option-btn::after {
    content: '→';
    font-size: 1rem;
    opacity: 0.6;
    transition: transform 0.2s;
}

.chatbot-option-btn:hover {
    background-color: var(--accent);
    color: var(--text-primary);
    box-shadow: 0 4px 10px rgba(255, 94, 0, 0.25);
    transform: translateY(-1px);
}

.chatbot-option-btn:hover::after {
    transform: translateX(3px);
    opacity: 1;
}

.chatbot-option-btn:active {
    transform: translateY(1px);
}

.chatbot-option-btn:disabled {
    border-color: var(--border);
    color: var(--text-secondary);
    cursor: not-allowed;
    opacity: 0.4;
    transform: none !important;
    box-shadow: none !important;
}

.chatbot-option-btn:disabled::after {
    display: none;
}

@media (max-width: 768px) {
    #chatbot-window {
        width: 300px;
        height: 400px;
    }
    #chatbot-container {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 1024px) {
    #intro {
        display: none !important;
    }
    #main-site {
        opacity: 1 !important;
    }
}

