/*=============== VARIABLES CSS ===============*/
:root {
    --header-height: 3.5rem;
  
    /*========== Colors ==========*/
    --first-color: hsl(355, 70%, 58%);
    --first-color-alt: hsl(355, 66%, 54%);
    --first-color-light: hsl(355, 62%, 62%);
    --first-color-lighten: hsl(355, 100%, 97%);
    --title-color: hsl(228, 8%, 98%);
    --text-color: hsl(228, 8%, 70%);
    --text-color-light: hsl(228, 4%, 55%);
    --border-color: hsl(228, 4%, 25%);
    --container-color: hsl(228, 4%, 15%);
    --body-color: hsl(228, 4%, 10%);
  
    /*========== Font and typography ==========*/
    --body-font: "Poppins", sans-serif;
    --biggest-font-size: 2.25rem;
    --h1-font-size: 1.5rem;
    --h2-font-size: 1.25rem;
    --h3-font-size: 0.9rem;
    --normal-font-size: .938rem;
    --small-font-size: .813rem;
    --smaller-font-size: .75rem;
  
    /*========== Font weight ==========*/
    --font-medium: 500;
    --font-semi-bold: 600;
  
    /*========== z index ==========*/
    --z-tooltip: 10;
    --z-fixed: 100;
  }
  
  /*========== Responsive typography ==========*/
  @media screen and (min-width: 1150px) {
    :root {
      --biggest-font-size: 4rem;
      --h1-font-size: 2.25rem;
      --h2-font-size: 1.5rem;
      --h3-font-size: 0.9rem;
      --normal-font-size: 1rem;
      --small-font-size: .875rem;
      --smaller-font-size: .813rem;
    }
  }

html{
    scroll-behavior: smooth;
}

body{
    margin: 0; /* Ensure no default margin */
    padding: 0;
    background-color: #000000;
}

@font-face {
    font-family: 'Kiona';
    src: url('../fonts/Kiona-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.main{
    overflow: hidden;
}

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

/* HEADER extracted to css/header.css */

/* Hero section styles */
.hero-section{
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* ===== SPLIT PANEL HERO ===== */
.hero-split {
    display: flex;
    width: 100%;
    height: 100%;
}

.hero-panel {
    position: relative;
    flex: 1;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.7s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 1;
    min-width: 140px;
}

/* On hover container: shrink non-hovered panels */
.hero-split:hover .hero-panel {
    flex: 0.35;
}

.hero-split .hero-panel:hover {
    flex: 4;
}

.hero-panel video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.65);
    transition: filter 0.5s ease;
}

.hero-panel:hover video {
    filter: brightness(0.5);
}

/* Dark gradient overlay at bottom */
.panel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.35) 100%
    );
    z-index: 1;
    pointer-events: none;
}

/* Thin label shown when panel is not hovered */
.panel-label-thin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    z-index: 2;
    color: white;
    font-family: 'Kiona', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 1;
    transition: opacity 0.4s ease;
    pointer-events: none;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

.hero-panel:hover .panel-label-thin {
    opacity: 0;
}

/* Full content revealed on hover */
.panel-content {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 100%;
    padding: 0 3rem;
    z-index: 3;
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.45s ease 0.2s, transform 0.45s ease 0.2s;
    box-sizing: border-box;
    pointer-events: none;
}

.hero-panel:hover .panel-content {
    opacity: 1;
    transform: translateY(0);
}

.panel-eyebrow {
    font-size: 2rem;
    color: var(--first-color);
    margin: 0 0 0.6rem 0;
}

.panel-title {
    font-family: 'Kiona', sans-serif;
    font-size: clamp(1.8rem, 3vw, 3rem);
    color: #fff;
    margin: 0 0 0.6rem 0;
    line-height: 1.1;
}

.panel-sub {
    color: rgba(255,255,255,0.75);
    font-size: 1rem;
    margin: 0 0 1.5rem 0;
    max-width: 380px;
}

.panel-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.7rem 1.8rem;
    border: 2px solid var(--first-color);
    border-radius: 2rem;
    color: var(--first-color);
    font-size: 0.95rem;
    font-weight: 600;
    transition: background 0.25s, color 0.25s;
    pointer-events: auto;
}

.hero-panel:hover .panel-btn:hover {
    background: var(--first-color);
    color: #fff;
}

/* Base divider styles (used by mobile horizontal divider) */
.panel-divider--right::after {
    content: '';
    position: absolute;
    background: rgba(255,255,255,0.2);
    z-index: 4;
}

/* Desktop: diagonal 45° splits between panels */
@media screen and (min-width: 769px) {
    .hero-split .hero-panel:nth-child(1) {
        clip-path: polygon(0 0, 100% 0, calc(100% - 120px) 100%, 0 100%);
        margin-right: -120px;
        z-index: 3;
    }

    .hero-split .hero-panel:nth-child(2) {
        clip-path: polygon(0 0, 100% 0, calc(100% - 120px) 100%, 0 100%);
        margin-right: -120px;
        z-index: 2;
    }

    /* Hide old vertical divider — clip-path edge replaces it */
    .panel-divider--right::after {
        display: none;
    }
}

/* Mobile: stack panels vertically */
@media screen and (max-width: 768px) {
    .hero-split {
        flex-direction: column;
    }
    .hero-split:hover .hero-panel {
        flex: 0.5;
    }
    .hero-split .hero-panel:hover {
        flex: 3;
    }
    .panel-label-thin {
        transform: translate(-50%, -50%) rotate(0deg);
        font-size: 0.75rem;
    }
    .panel-content {
        bottom: 50px;
        padding: 0 1.5rem;
    }
    .panel-divider--right::after {
        top: auto;
        bottom: 0;
        left: 10%;
        right: auto;
        width: 80%;
        height: 1px;
    }
}

/* Mobile touch-active state for panels */
.hero-panel.panel-touch-active {
    flex: 3 !important;
}

.hero-split:has(.panel-touch-active) .hero-panel:not(.panel-touch-active) {
    flex: 0.5 !important;
}

.hero-panel.panel-touch-active .panel-label-thin {
    opacity: 0;
}

.hero-panel.panel-touch-active .panel-content {
    opacity: 1;
    transform: translateY(0);
}

/* Legacy video slider (kept for backwards compat, hidden) */
.video-slider { display: none; }
.hero-video { display: none; }

/* ===== QUICK LINKS STRIP (AI Agent + Tutorials) ===== */
.quick-links-section {
    display: flex;
    align-items: stretch;
    background: rgba(255,255,255,0.03);
    border-top: 1px solid rgba(255,255,255,0.07);
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.quick-link-card {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.6rem 2.4rem;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    transition: background 0.3s ease;
    position: relative;
}

.quick-link-card:hover {
    background: rgba(255,255,255,0.05);
}

.quick-link-card:hover .ql-arrow {
    transform: translateX(6px);
    color: var(--first-color);
}

.quick-link-card:hover .ql-icon {
    color: var(--first-color);
    border-color: var(--first-color);
}

.ql-icon {
    font-size: 1.8rem;
    color: rgba(255,255,255,0.6);
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    flex-shrink: 0;
    transition: color 0.3s, border-color 0.3s;
}

.ql-text {
    flex: 1;
}

.ql-text h3 {
    font-family: 'Kiona', sans-serif;
    font-size: 0.95rem;
    color: var(--title-color);
    margin: 0 0 0.2rem 0;
    letter-spacing: 0.03em;
}

.ql-text p {
    font-size: 0.8rem;
    color: var(--text-color);
    margin: 0;
}

.ql-arrow {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.3);
    transition: transform 0.3s ease, color 0.3s ease;
}

.ql-divider {
    width: 1px;
    background: rgba(255,255,255,0.07);
    align-self: stretch;
}

@media screen and (max-width: 600px) {
    .quick-links-section {
        flex-direction: column;
    }
    .ql-divider {
        width: 100%;
        height: 1px;
    }
    .quick-link-card {
        padding: 1.2rem 1.5rem;
    }
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.827), rgba(0, 0, 0, 0),rgba(0, 0, 0, 0),rgba(0, 0, 0, 0),rgba(0, 0, 0, 0));
    z-index: 1;
    pointer-events: none;
}
/* Hero section information content */
.hero-info{
    z-index: 1;
    position: absolute;
    top: 180px;
    right: 50px;
    padding-top: 50px; /* Add padding to avoid overlap with the logo */
    text-align: right;
}

/* Hero info heading */
.hero-info h1{
    font-size: 120px;
    font-family: 'Kiona', sans-serif;
    font-weight: 900;
    font-style: normal;
    margin-top: 30px;
    margin-bottom: 20px;
    color: white;
}
/* Hero info paragraph */
.hero-info p{
    color: white;
    max-width: 210px;
}

/* Hero info button */
/* Hero buttons wrapper */
.hero-buttons-wrapper {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
    z-index: 2;
    transform: none;
}

/* Hero info button */
.hero-button {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid #ff6666;
    padding: 15px 50px;
    border-radius: 30px;
    cursor: pointer;
    color: #ff6666;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}

.hero-button:hover {
    background-color: #ff6666;
    color: white;
    box-shadow: 0 0 20px #ff6666; 
    transform: scale(1.05);
}


/* Chat Search Container */
/* Chat styles moved to css/chat.css */

.language-switcher {
    display: none; /* Hide old switcher */
}

/* Nav dropdown styles are in header.css */





.intro-text-wrapper {
    position: absolute;
    bottom: 150px;
    right: 20px;
    overflow: hidden;
    height: 100px; /* Adjust to fit the text size */
    z-index: 2;
}

.intro-text-slider {
    display: flex;
    flex-direction: column;
    transition: transform 0.5s ease-in-out;
}

.intro-text {
    font-size: 60px;
    font-family: 'Guester', sans-serif;
    margin: 0;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    background: linear-gradient(to right, #e0e0e0, #d6d6d6, #bfbfbf, #a8a8a8, #d6d6d6, #e0e0e0);
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: animate-gradient 2.5s linear infinite;
}

.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 2;
    pointer-events: none; /* Allows clicks to go through to the video */
}

.prev-btn, .next-btn {
    font-size: 40px;
    color: white;
    cursor: pointer;
    transition: opacity 0.3s;
    opacity: 0;
    pointer-events: all; /* Make buttons clickable */
    padding: 0 20px;
}

.hero-vid:hover .prev-btn,
.hero-vid:hover .next-btn {
    opacity: 1;
}

.about-section{
    width: 100%;
    padding-top: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
}

.creator-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.about-container{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-image-container {
    position: relative;
    width: 100%;
}

/* Image container in about section */
.image-box{
    width: 100vw;
    height: 510px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    object-fit: cover;
}
/* About section paragraph */
.about-section p{
    font-size: 12px;
}

.about-section h1{
    font-family: 'Guester', sans-serif;
    font-weight: 900;
    font-size:80px;
    max-width: 1150px;
    text-align: center;
    margin: 25px 0;
    text-transform: uppercase;
    background: linear-gradient(to right, #e0e0e0, #d6d6d6, #bfbfbf, #a8a8a8, #d6d6d6, #e0e0e0);
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: animate-gradient 2.5s linear infinite;
}

/* Keyframes for the gradient animation */
@keyframes animate-gradient {
    to {
        background-position: 200%;
    }
}

.about-section h5{
    margin-top: 5px;
    color: gray;
    max-width: 425px;
    text-align: center;
    line-height: 25px;
    opacity: 0.8;
}

.creator-section {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 40px;
    border-radius: 20px;
    width: 80%;
    max-width: 800px;
}

.creator-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.creator-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: #333;
    flex-shrink: 0;
}

.creator-text h2 {
    font-family: 'Kiona', sans-serif;
    font-size: 36px;
    margin-bottom: 20px;
}

.creator-text p {
    color: var(--text-color);
    line-height: 1.6;
}

.autoFlyIn {
    opacity: 0;
    transform: translateY(100px);
    filter: blur(20px);
    transition: all 1s ease-out;
}

.autoFlyIn.in-view {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}


.drones-img {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    z-index: 3;
}


.services-section{
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    padding-top: 100px;
}

.services-section h3{
    margin-bottom: 0;
}

.services-section p{
    margin-top: 5px;
    color: gray;
    max-width: 400px;
    line-height: 25px;
}
.info-cards{
    display: grid;
    /* Responsive grid that fits as many 300px cards as possible */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    width: 100%;
    height: 100%;
    margin-top: 30px;
}

.card{
    position: relative;
    width: auto;
    height: 40vh; /* Keep height or let it grow? kept for consistency but managed overflow */
    min-height: 350px; /* Ensure minimum space */
    overflow: hidden;
    border: 1px solid gray;
    border-radius: 20px;
    transition: 0.5s;
    display: flex;
    flex-direction: column;
    padding: 20px; /* Instead of left: 5% */
}

.card h1{
    position: relative; /* Changed from absolute */
    margin: 0 0 10px 0; /* Add bottom margin */
    z-index: 2; /* Ensure above video */
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 30px;
    background: linear-gradient(to right, #e0e0e0, #d6d6d6, #bfbfbf, #a8a8a8, #d6d6d6, #e0e0e0);
    text-transform: uppercase;
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: animate-gradient 2.5s linear infinite;
}
.card-description{
    position: relative; /* Changed from absolute */
    margin-bottom: 10px;
    z-index: 2;
    max-width: 250px;
    color: lightgray;
}

.card-hours {
    position: relative;
    margin-bottom: 20px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: var(--small-font-size);
    color: var(--text-color-light);
}

.card video{
    position: absolute; /* Force video to background */
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease-in-out;
    filter: brightness(0.7);
}

.card button {
    position: relative;
    margin-top: auto;
    align-self: flex-start;
    z-index: 2;
    padding: 10px 30px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid #ff6666;
    color: #ff6666;
    border-radius: 20px;
    box-shadow: 0 0 5px rgba(255, 102, 102, 0.3);
    cursor: pointer;
    transition: 0.3s;
    font-weight: bold;
}

.card button:hover {
    background-color: #ff6666;
    color: white;
    box-shadow: 0 0 15px #ff6666;
    opacity: 1;
}

.pricing-section {
    padding: 100px 0;
    text-align: center;
}

.pricing-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.section-title {
    font-family: 'Guester', sans-serif;
    font-weight: 900;
    font-size: 80px;
    max-width: 1150px;
    text-align: center;
    margin: 25px auto 50px auto;
    text-transform: uppercase;
    background: linear-gradient(to right, #e0e0e0, #d6d6d6, #bfbfbf, #a8a8a8, #d6d6d6, #e0e0e0);
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: animate-gradient 2.5s linear infinite;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    width: 100%;
    margin-top: 30px;
    isolation: isolate;
}

.pricing-card {
    background-color: rgba(18, 18, 22, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 28px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(195, 45, 65, 0.35);
    transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out, background-color 0.3s ease-in-out;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    text-align: left;
    position: relative;
    z-index: 1;
}

.pricing-card:hover {
    border-color: rgba(255, 255, 255, 0.14);
    border-top-color: var(--first-color);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(195, 45, 65, 0.15);
    background-color: rgba(22, 22, 28, 0.85);
}

.pricing-card h3 {
    font-family: 'Kiona', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 14px;
}

.price {
    font-family: 'Kiona', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: hsl(228, 8%, 95%);
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    line-height: 1.1;
}

.price span {
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
    font-family: 'Poppins', sans-serif;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    flex: 1;
}

.pricing-card ul li {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-card ul li::before {
    content: '–';
    color: var(--first-color);
    flex-shrink: 0;
    font-size: 0.8rem;
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(195, 45, 65, 0.45);
    color: hsl(355, 70%, 65%);
    padding: 9px 16px;
    border-radius: 8px;
    font-family: 'Kiona', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s ease;
    width: 100%;
    margin-top: 0;
}

.btn-secondary:hover {
    background: rgba(195, 45, 65, 0.12);
    border-color: var(--first-color);
    color: hsl(355, 70%, 70%);
    box-shadow: none;
}

.location-section {
    padding: 60px 0;
    text-align: center;
    background-color: var(--container-color);
}

.location-container h2 {
    font-family: 'Kiona', sans-serif;
    font-size: 24px;
    color: var(--text-color-light);
    margin-bottom: 10px;
}

.location-container h3 {
    font-family: 'Guester', sans-serif;
    font-size: 48px;
    color: var(--title-color);
    text-transform: uppercase;
    background: linear-gradient(to right, #e0e0e0, #d6d6d6, #bfbfbf, #a8a8a8, #d6d6d6, #e0e0e0);
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: animate-gradient 2.5s linear infinite;
}

/*==================== LOCATION ====================*/
.map-container {
    position: relative;
    width: 80%;
    max-width: 800px;
    margin: 40px auto 0;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.map-container:hover {
    transform: scale(1.02);
    box-shadow: 0 0 25px var(--first-color-alt);
    border-color: var(--first-color);
}

.map-image {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s ease-in-out;
    opacity: 0.7;
}

.map-container:hover .map-image {
    opacity: 1;
}

.map-marker {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--first-color);
    border-radius: 50%;
    border: 3px solid var(--first-color-lighten);
    transform: translate(-50%, -50%);
    animation: pulse-marker 2s infinite ease-in-out;
    box-shadow: 0 0 15px var(--first-color);
}

@keyframes pulse-marker {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

.location-name {
    position: absolute;
    bottom: -50px; /* Start hidden */
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: var(--title-color);
    padding: 8px 15px;
    border-radius: 10px;
    font-family: 'Kiona', sans-serif;
    font-size: var(--normal-font-size);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.map-container:hover .location-name {
    bottom: 20px; /* Move up on hover */
    opacity: 1;
}



.contact-section {
    padding: 100px 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-content {
    text-align: center;
}

.contact-images-left, .contact-images-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-images-left img, .contact-images-right img {
    width: 100%;
    border-radius: 20px;
    transition: all 1s ease-out;
    opacity: 0;
}

.contact-img-1 {
    transform: translateX(-100px);
}

.contact-img-2 {
    transform: translateX(100px);
}

.contact-img-3 {
    transform: translateY(100px);
}

.contact-container.in-view .contact-img-1,
.contact-container.in-view .contact-img-2,
.contact-container.in-view .contact-img-3 {
    transform: translate(0, 0);
    opacity: 1;
}


.contact-section h1{
    font-family: 'Guester', sans-serif;
    font-size: 65px;
    max-width: 550px;
    background: linear-gradient(to right, #e0e0e0, #d6d6d6, #bfbfbf, #a8a8a8, #d6d6d6, #e0e0e0);
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-section p{
    margin-bottom: 20px;
}
.contact-section button {
    padding: 12px 40px;
    font-size: 16px;
    font-weight: bold;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ff6666;
    border: 2px solid #ff6666;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s;
    font-family: 'Kiona', sans-serif;
}

.contact-section button:hover {
    background-color: #ff6666;
    color: white;
    border: 2px solid #ff6666;
    box-shadow: 0 0 20px #ff6666;
}

.clickable-text {
    cursor: pointer;
    color: white;
    text-decoration: none;
    font-family: 'Kiona', sans-serif;
    transition: color 0.3s;
}

.clickable-text:hover {
    color: #ff6666;
}

/* Footer extracted to css/footer.css */


/* BLUR EFFECT */

.autoBlur {
    filter: blur(40px);
    opacity: 0;
    transform: translateY(-200px);
    transition: all 1s ease;
}

.autoBlur.in-view {
    filter: blur(0);
    opacity: 1;
    transform: translateY(0);
}

.autoTakeFull {
    width: 300px;
    height: 200px;
    border-radius: 20px;
    background: #ccc;
    margin: 0 auto;
    margin-bottom: 0;
    transition: all 1s ease;
  }
  
  .autoTakeFull.in-view {
    width: 100% !important;
    height: 100vh !important;
    border-radius: 0 !important;
    margin-bottom: 100px !important;
  }

  .autoDisplay {
    opacity: 0;
    transform: translateY(200px) scale(0.3);
    filter: blur(20px);
    transition: all 1s ease;
  }
  
  .autoDisplay.in-view {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }

/* SCROLL UP */
.scrollup {
    position: fixed;
    right: 1rem;
    bottom: -20%;
    display: flex;
    background-color: var(--container-color);
    border-radius: .25rem;
    padding: .45rem;
    opacity: 9;
    z-index: 10;
    transition: .4s;
}
    
.scrollup:hover {
    background-color: var(--black-color);
    opacity: 1;
}

.scrollup__icon {
    color: var(--white-color);
    font-size: 1.35rem;
}

/* Media query for smaller screens */
@media screen and (max-width: 992px) {
    .pricing-cards {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        align-items: stretch;
    }
    .section-title {
        font-size: 50px;
    }
}

@media screen and (max-width: 560px) {
    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media screen and (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-left, .footer-center, .footer-right {
        align-items: center;
    }
    .footer-center .footer-links {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    .footer-right .social-links {
        justify-content: center;
    }
    .legal-links {
        justify-content: center;
    }
    .creator-container {
    flex-direction: column;
    text-align: center;
    }   

    .creator-image {
        margin: 0 auto 20px auto;
    }
}

@media screen and (max-width: 650px){
    header{
        padding: 0 5px; /* Reduce global padding if causing issues */
    }
    .header {
        padding: 0 1rem; /* Internal padding for the glass pill */
    }
    .nav {
        padding: 0 0.5rem; /* Ensure nav items aren't on the edge */
    }
    .nav__logo img {
        width: 80px; /* Smaller logo for mobile */
    }
    .scroll-header .nav__logo {
        top: .25rem;
        left: 1rem;
    }
    .intro-text-wrapper{
        height: 60px;
    }
    .intro-text{
        font-size: 30px;
        height: 60px;
    }
    .hero-section h1{
        font-size: 40px;
    }
    .about-section h1{
        font-size: 50px;
    }
    .image-box{
        width: 100%;
        height: 500px;
    }
    .about-section h4, .about-section h5{
        max-width: 350px;
        text-align: center;
    }
    .contact-container {
        grid-template-columns: 1fr;
        gap: 5px;
    }
    .contact-section h1 {
        font-size: 40px;
    }
    .contact-images-left img, .contact-images-right img {
        width: 30%;
        margin: 0 auto;
    }
    .info-cards {
      grid-template-columns: 1fr;
    }
    
    /* Mobile Hero Buttons */
    .hero-buttons-wrapper {
        gap: 10px; /* Reduced gap for mobile */
        width: 100%; /* Ensure full width */
        bottom: 40px; /* Keep low position */
    }
    
    .hero-button {
        padding: 12px 25px; /* Slightly reduced padding */
        font-size: 16px; /* Slightly smaller font */
    }
}
/* Fade Transition for Language Switch */
.fade-transition {
    opacity: 0 !important;
    transition: opacity 0.3s ease-in-out;
}

body {
    transition: opacity 0.3s ease-in-out;
    opacity: 1;
}

/* Ask AI Button */
.btn-ask-ai {
    background: rgba(195, 45, 65, 0.08);
    border: 1px solid rgba(195, 45, 65, 0.45);
    color: rgba(255, 255, 255, 0.82);
    padding: 9px 16px;
    border-radius: 8px;
    font-family: 'Kiona', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s ease;
    margin-top: 8px;
    width: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    -webkit-appearance: none;
    appearance: none;
}

.btn-ask-ai:hover {
    background: rgba(195, 45, 65, 0.18);
    border-color: rgba(195, 45, 65, 0.75);
    color: #fff;
    box-shadow: 0 0 14px rgba(195, 45, 65, 0.25);
}

/* Pricing card button layout */
.pricing-card .btn-ask-ai {
    width: 100%;
}

.pricing-card .btn-secondary {
    width: 100%;
    margin-top: 0;
}
