:root {
    --bg: #02050a;
    --gold: #e6a624;
    --text: #e6edf3;
    --glass: rgba(255, 255, 255, 0.03);
}

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

/* Set default cursor; cursor:none handled in JS for desktop only */
body { 
    background: var(--bg); 
    color: var(--text); 
    font-family: 'Space Grotesk', sans-serif; 
    overflow-x: hidden; 
}

.container { max-width: 1400px; margin: 0 auto; padding: 0 40px; }
 
 .calm-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 5px 0;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    background: #ffffff;
}

.nav-inner { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.4rem; font-weight: 900; letter-spacing: 3px; font-family: 'Outfit'; z-index: 1001; }
.logo span { color: var(--gold); }

/* Nav Links Base */
.nav-links { display: flex; list-style: none; gap: 40px; }
.nav-links a {
	text-decoration: none;
	color: #000;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	transition: 0.3s;
	font-weight: bold;
}
.nav-links a:hover, .nav-links a.active { opacity: 1; color: var(--gold); }
.ind-time {
	font-size: 0.7rem;
	letter-spacing: 1px;
	/* opacity: 0.4; */
	color: black;
	font-weight: bold;
}
/* Hamburger Menu Icon */
.menu-toggle {
    display: none;
    flex-direction: column;
    z-index: 1001;
}

.menu-toggle .bar {
    width: 25px;
    height: 2px;
    background-color: #000;
    margin: 4px 0;
    transition: 0.4s;
}


/* Hero */
.hero-fullscreen { height: 100vh; position: relative; display: flex; align-items: center; overflow: hidden; }
.hero-video-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; }
.parallax-img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.3); }
.hero-shade { position: absolute; bottom: 0; width: 100%; height: 40%; background: linear-gradient(to top, var(--bg), transparent); }
.hero-main-title { font-family: 'Outfit', sans-serif; font-size: clamp(2.5rem, 10vw, 8rem); font-weight: 900; text-align:center;line-height: 0.9; margin: 20px 0; }
.hero-sub { font-size: 1.1rem; opacity: 0.6; max-width: 500px; font-weight: 300; }
.gold-text { color: var(--gold); }

/* Sections */
.section-padding { padding: 60px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.content-title { font-size: clamp(2rem, 5vw, 3.5rem); font-family: 'Outfit'; line-height: 1.1; }
.line-accent { width: 60px; height: 4px; background: var(--gold); margin-top: 20px; }
.lead-para { font-size: clamp(1.1rem, 3vw, 1.5rem); color: var(--gold); margin-bottom: 30px; line-height: 1.4; font-weight: 300; }
.content-right p { margin-bottom: 20px; opacity: 0.7; line-height: 1.8; font-size: 1rem; }

/* Why Grid */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.why-box { background: #080d14; padding: 40px; border-radius: 30px; border: 1px solid white; position: relative; overflow: hidden; transition: 0.5s; }
.why-icon { font-size: 2rem; color: var(--gold); margin-bottom: 20px; }
.why-box h3 { font-family: 'Outfit'; font-size: 1.5rem; margin-bottom: 15px; }
.box-number { position: absolute; top: -10px; right: -10px; font-size: 6rem; font-weight: 900; color: rgba(230, 166, 36, 0.03); font-family: 'Outfit'; }

/* Pin & Horizontal */
.pinned-section { height: 100vh; display: flex; align-items: center; justify-content: center; }
.massive-text { font-size: clamp(2rem, 6vw, 6vw); text-align: center; font-weight: 900; line-height: 1.1; font-family: 'Outfit'; padding: 0 20px; }
 
.panel-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; filter: brightness(0.4); z-index: -1; }

.h-scroll-wrapper { 
    display: flex; 
    /* width: 400%;  <-- You can actually remove this line now, the children will push the width */
    height: 100vh; 
    flex-wrap: nowrap; /* Ensures they stay in one single line */
}

.h-panel { 
    /* THE MAGIC FIX: This prevents panels from being squeezed */
    flex: 0 0 100vw; 
    width: 100vw; 
    
    height: 100vh; 
    position: relative; 
    display: flex; 
    align-items: center; 
    padding: 0 10%; 
}

.glass-card-float {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px;
    border-radius: 40px;
    
    /* Ensure the card itself is wide and stable */
    width: 100%; 
    max-width: 650px; 
    flex-shrink: 0; /* Prevents the card from shrinking inside the panel */
    
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}
/* Optional: Add a slight hover lift to the cards */
.glass-card-float:hover { 
    border-color: var(--gold);
}
.glass-card-floatxx { background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.1); padding: 40px; border-radius: 30px; max-width: 500px; }
.glass-card-float h2 { font-size: clamp(2rem, 5vw, 3rem); font-family: 'Outfit'; margin-bottom: 15px; }

/* CTA */
.warp-cta { padding: 100px 0; background: #000; }
.warp-container { 
    position: relative; 
    width: 90%; 
    margin: 0 auto; 
    background: #080d14; /* Fallback color */
    border: 1px solid white; 
    border-radius: 40px; 
    padding: 80px 40px; 
    overflow: hidden; 
    text-align: center; 
}

/* THE BACKGROUND IMAGE LAYER */
.warp-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Replace the URL below with your actual image path */
    background-image: url('https://hospitalityinsights.ehl.edu/hs-fs/hubfs/EHL-Passugg_Blog_Kurkuma_Titelbild_001.jpg?width=700&height=462&name=EHL-Passugg_Blog_Kurkuma_Titelbild_001.jpg'); 
    background-size: cover;
    background-position: center;
    opacity: 0.15; /* Adjust this for lower/higher transparency */
    z-index: 0;
    pointer-events: none;
}

/* Ensure content stays above the image and the glow */
.warp-content {
    position: relative;
    z-index: 2;
}

.warp-grid-overlay, .warp-glow {
    z-index: 1; /* Keeps your interactive glow between the image and the text */
}
.cta-huge-title { font-family: 'Outfit'; font-size: clamp(2.5rem, 8vw, 6rem); font-weight: 900; line-height: 1; margin: 20px 0; color: #fff; }
.magnetic-btn { display: inline-flex; align-items: center; justify-content: center; width: 180px;margin-top: 25px; height: 180px; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; text-decoration: none; color: #fff; font-weight: 800; transition: 0.5s; position: relative; z-index: 10; }
.btn-fill { position: absolute; width: 100%; height: 100%; background: var(--gold); border-radius: 50%; transform: scale(0); transition: 0.5s; z-index: -1; }
.magnetic-btn:hover .btn-fill { transform: scale(1); }
.magnetic-btn:hover { color: #000; }

/* Product discovery slide button */
.view-more-wrap {
    margin-top: 30px;
}

.pipeline-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 15px 30px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-family: 'Outfit';
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.pipeline-btn i {
    transition: transform 0.4s ease;
}

.pipeline-btn:hover {
    background: var(--gold);
    color: #000;
    box-shadow: 0 0 20px rgba(230, 166, 36, 0.4);
}

.pipeline-btn:hover i {
    transform: translateX(5px);
}

/* Specific styling for the 4th card */
.more-categories h2 {
    color: var(--gold);
}

.more-categories .cta-tag {
    font-size: 0.7rem;
    letter-spacing: 3px;
    opacity: 0.7;
    margin-bottom: 10px;
    display: block;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1024px) {
    .container { padding: 0 25px; }
    
    /* Hamburger Logic */
    .menu-toggle { display: flex; }
.nav-links {
	position: fixed;
	right: -100%;
	top: 0;
	height: 100vh;
	width: 100%;
	background: #fbf5ed;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
	gap: 30px;
}
    .nav-links.active { right: 0; }
    .nav-links a { font-size: 1.5rem; }
    
    /* Hamburger Animation */
    .menu-toggle.is-active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.is-active .bar:nth-child(1) { transform: translateY(10px) rotate(45deg); }
    .menu-toggle.is-active .bar:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

    .desktop-only { display: none; }

    /* Layout stacking */
    .grid-2, .why-grid, .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    
    /* Mobile Horizontal Scroll Fix (Stacking) */
    .horizontal-scroll { height: auto; overflow: visible; }
    .h-scroll-wrapper { flex-direction: column; width: 100%; height: auto; }
    .h-panel { width: 100%; height: auto; padding: 60px 25px; }
    .panel-bg { filter: brightness(0.2); }
}

@media (max-width: 480px) {
    .section-padding { padding: 60px 0; }
    .magnetic-btn { width: 140px; height: 140px; font-size: 0.7rem; }
}

.logo img {
    height: 90px;   /* adjust if needed */
    width: auto;
    display: block;
}
/* --- GLOBAL ROOT & RESET --- */
:root {
    --bg: #02050a;
    --navy-deep: #041221;
    --gold: #e6a624;
    --text: #e6edf3;
    --glass: rgba(255, 255, 255, 0.05);
    --transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

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

body.about-page {
    background: var(--bg);
    color: var(--text);
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.6;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
}

.section-padding {
    padding: 60px 0;
}



/* --- HERO SECTION (Header Respecting) --- */
.about-hero {
    padding-top: 180px; /* Ensures space for fixed header */
    padding-bottom: 80px;
    background: linear-gradient(to bottom, var(--navy-deep) 0%, var(--bg) 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.line-reveal {
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 4px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    font-size: 0.85rem;
}

.line-reveal span {
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.huge-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(3.5rem, 9vw, 8.5rem);
    line-height: 0.85;
    font-weight: 900;
    margin-bottom: 60px;
}

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

.hero-desc-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 100px;
    align-items: flex-end;
}

.hero-desc-grid p {
    font-size: 1.25rem;
    opacity: 0.7;
    max-width: 550px;
}

.experience-badge {
    border-left: 2px solid var(--gold);
    padding-left: 30px;
    justify-self: end;
}

.experience-badge strong {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 5px;
}

.experience-badge span {
    font-size: 4rem;
    font-weight: 900;
    font-family: 'Outfit';
    line-height: 1;
}

/* --- IDENTITY SECTION --- */
.identity-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}

.id-image {
    position: relative;
    border-radius: 40px;
    overflow: hidden; 
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.id-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.4) contrast(1.1);
    transition: var(--transition);
}

.id-image:hover img {
    filter: grayscale(0);
    transform: scale(1.03);
}

.floating-tag {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background: var(--gold);
    color: #000;
    padding: 15px 30px;
    font-weight: 900;
    font-size: 0.75rem;
    letter-spacing: 2px;
    border-radius: 4px;
}

.text-group {
    margin-bottom: 100px;
}

.sub-num {
    font-family: 'Outfit';
    color: var(--gold);
    font-weight: 900;
    font-size: 1.4rem;
    display: block;
    margin-bottom: 20px;
    opacity: 0.5;
}

.text-group h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-family: 'Outfit';
    line-height: 1;
    margin-bottom: 30px;
}

.text-group p {
    font-size: 1.15rem;
    opacity: 0.6;
    margin-bottom: 25px;
}

/* --- JOURNEY VERTICAL GRID --- */
.section-heading {
    font-family: 'Outfit';
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 60px;
    text-align: center;
}

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

.journey-item {
    background: var(--glass);
    padding: 60px 40px;
    border-radius: 40px;
    border: 1px solid rgba(255,255,255,0.03);
    transition: var(--transition);
}

.journey-item:hover {
    background: rgba(230, 166, 36, 0.05);
    border-color: var(--gold);
    transform: translateY(-15px);
}

.j-step {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 3px;
    margin-bottom: 30px;
}

.journey-item h4 {
    font-family: 'Outfit';
    font-size: 1.75rem;
    margin-bottom: 20px;
}

/* --- DNA FLEX CARDS --- */
.dna-flex {
    display: flex;
    gap: 30px;
}

.dna-card {
    flex: 1;
    padding: 50px 30px;
    background: #080d14;
    border-radius: 30px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.03);
}

.dna-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 30px;
}

.dna-card h5 {
    font-family: 'Outfit';
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* --- RESPONSIVE BREAKPOINTS --- */

@media (max-width: 1100px) {
    .identity-grid {
        gap: 50px;
    }
    .hero-desc-grid {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .identity-grid {
        grid-template-columns: 1fr;
    }
    .id-image {
        height: 500px;
        order: -1; /* Image stays on top for mobile */
    }
    .journey-stagger {
        grid-template-columns: 1fr;
    }
    .dna-flex {
        flex-direction: column;
    }
    .hero-desc-grid {
        grid-template-columns: 1fr;
    }
    .experience-badge {
        justify-self: start;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 80px 0;
    }
    .about-hero {
        padding-top: 140px;
    }
    .huge-title {
        font-size: 2.8rem;
    }
  
    .text-group h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 480px) {
    .id-image {
        height: 350px;
    }
    .floating-tag {
        bottom: 20px;
        left: 20px;
        padding: 10px 20px;
    }
}

/* --- PRODUCTS PAGE - EDITORIAL LAYOUT --- */
.p-header {
    padding-top: 180px;
    padding-bottom: 80px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.p-header h1 {
    font-size: clamp(4rem, 12vw, 10rem);
    font-family: 'Outfit';
    line-height: 0.8;
}

@media (max-width: 768px) {
  .p-header h1 {
    font-size: clamp(2rem, 12vw, 10rem);
}

}
.p-header p {
    font-size: 1.2rem;
    color: var(--gold);
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-top: 20px;
}

/* The Row Structure */
.product-row {
    display: flex;
    min-height: 80vh;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.p-image-side {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.p-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) contrast(1.1);
}

.p-category-tag {
    position: absolute;
    top: 40px;
    left: 40px;
    background: var(--gold);
    color: #000;
    padding: 10px 20px;
    font-weight: 900;
    font-size: 0.7rem;
    letter-spacing: 2px;
}

.p-content-side {
    flex: 1;
    padding: 10% 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #02050a;
}

.p-content-side h2 {
    font-size: 4rem;
    font-family: 'Outfit';
    margin-bottom: 30px;
    line-height: 1;
}

.p-content-side p {
    font-size: 1.1rem;
    opacity: 0.6;
    margin-bottom: 40px;
    line-height: 1.8;
}

/* Technical Specs Table-style */
.p-specs {
    border-top: 1px solid rgba(255,255,255,0.1);
}

.spec-item {
    display: flex;
    padding: 25px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    gap: 30px;
}

.spec-item h5 {
    width: 120px;
    color: var(--gold);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
}

.spec-item p {
    flex: 1;
    margin-bottom: 0;
    font-size: 1rem;
    opacity: 0.9;
}

/* Row Reversal */
.row-reverse {
    flex-direction: row-reverse;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .product-row, .row-reverse {
        flex-direction: column;
    }
    .p-image-side {
        height: 450px;
    }
    .p-content-side {
        padding: 60px 30px;
    }
    .p-content-side h2 {
        font-size: 3rem;
    }
}

/* --- MINIMAL KINETIC CTA --- */
.minimal-cta {
    background: #02050a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

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

.cta-sub-tag {
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 4px;
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
}

.cta-headline {
    font-family: 'Outfit';
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1;
    margin-bottom: 30px;
}

.outline-text {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
}

.cta-line-animation {
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.minimal-cta:hover .cta-line-animation {
    width: 100%;
}

/* --- THE ELITE INDUSTRIAL BUTTON --- */
.industrial-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 25px;
    padding: 22px 45px;
    background: transparent;
    border: 1px solid rgba(230, 166, 36, 0.4);
    border-radius: 100px; /* High-end Pill Shape */
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    overflow: hidden;
    transition: border-color 0.4s ease, transform 0.3s ease;
    z-index: 1;
}

.btn-label {
    position: relative;
    z-index: 3;
    transition: color 0.4s ease;
}

.btn-icon {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    transition: color 0.4s ease;
}

/* The Liquid Fill Effect */
.btn-bg-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--gold);
    border-radius: 50%; /* Starts as a circle */
    transform: translate(-50%, -50%);
    transition: width 0.6s cubic-bezier(0.19, 1, 0.22, 1), 
                height 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 2;
}

/* Hover States */
.industrial-btn:hover {
    border-color: var(--gold);
    transform: scale(1.02);
}

.industrial-btn:hover .btn-bg-slide {
    width: 350px; /* Expand enough to fill the pill */
    height: 350px;
}

.industrial-btn:hover .btn-label,
.industrial-btn:hover .btn-icon {
    color: #000;
}

/* Seamless Arrow Loop Animation */
.industrial-btn:hover .btn-icon i {
    animation: arrowLoop 0.5s forwards;
}

@keyframes arrowLoop {
    49% { transform: translateX(20px); opacity: 0; }
    50% { transform: translateX(-20px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

/* Subtle magnetic pulse around the button */
.industrial-btn::after {
    content: '';
    position: absolute;
    top: -5px; left: -5px; right: -5px; bottom: -5px;
    border: 1px solid var(--gold);
    border-radius: 100px;
    opacity: 0;
    transition: 0.4s;
}

.industrial-btn:hover::after {
    opacity: 0.3;
    transform: scale(1.1);
}


/* Responsive */
@media (max-width: 992px) {
    .cta-flex {
        flex-direction: column;
        text-align: center;
    }
    .cta-line-animation {
        margin: 0 auto;
    }
    .circle-btn {
        margin-top: 40px;
    }
}

/* --- CONTACT PAGE --- */
.contact-hero {
    padding-top: 180px;
    padding-bottom: 60px;
}

.hero-sub {
    font-size: 1.2rem;
    opacity: 0.5;
    max-width: 500px;
    margin-top: 20px;
}

/* Contact Grid */
.contact-main-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr; /* Flipped ratios for better form spacing */
    gap: 80px;
    margin-bottom: 100px;
    align-items: start;
}

/* Form Styling */
.form-wrapper h3 {
    font-family: 'Outfit';
    font-size: 1.5rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
    color: var(--gold);
}

/* Form Styling */
.form-wrapper p {
    margin-bottom: 25px;
}
.industrial-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.input-group {
    margin-bottom: 30px;
}

.input-group label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
    opacity: 0.6;
}

.input-group input, 
.input-group select, 
.input-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    color: #fff;
    font-family: 'Space Grotesk';
    font-size: 1rem;
    transition: 0.3s;
}
/* --- SELECT DROPDOWN FIX --- */
.input-group select {
    appearance: none; /* Removes default browser arrow */
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23e6a624' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
}

/* This targets the actual dropdown list */
.input-group select option {
    background-color: #080d14; /* Match your card background */
    color: #ffffff;
    padding: 15px;
}

/* Optional: Style the 'Select Category' placeholder differently */
.input-group select option:first-child {
    color: rgba(255, 255, 255, 0.3);
}

/* Fix for some mobile browsers that ignore background-color on options */
select:focus {
    outline: none;
    border-color: var(--gold);
}

.input-group input:focus, 
.input-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.07);
}

/* Coordinates Styling */
.coord-card {
    background: #080d14;
    padding: 40px;
    border-radius: 40px;
    border: 1px solid rgba(255,255,255,0.05);
}

.coord-tag {
    font-size: 0.7rem;
    color: var(--gold);
    letter-spacing: 4px;
    font-weight: 900;
    display: block;
    margin-bottom: 20px;
}

.coord-card h4 {
    font-size: 2.2rem;
    font-family: 'Outfit';
    margin-bottom: 20px;
}

.address {
    font-size: 1.1rem;
    opacity: 0.6;
    line-height: 1.8;
    margin-bottom: 40px;
}

.method-item {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: #fff;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255,255,255,0.02);
    border-radius: 15px;
    transition: 0.3s;
}

.method-item:hover {
    background: rgba(230, 166, 36, 0.1);
    transform: translateX(10px);
}

.method-item i { color: var(--gold); font-size: 1.2rem; }
.method-item span { font-size: 0.7rem; opacity: 0.5; text-transform: uppercase; letter-spacing: 1px; }
.method-item p { font-size: 1.1rem; font-weight: 600; }

/* --- SOCIAL DIGITAL ROW --- */
.owner-badge {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.social-digital-row {
    display: flex;
    gap: 15px;
}

.social-icon-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    background: rgba(255,255,255,0.02);
}

.social-icon-link:hover {
    border-color: var(--gold);
    color: #000;
    background: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(230, 166, 36, 0.2);
}

/* Ensure alignment on smaller coordinate cards */
@media (max-width: 480px) {
    .owner-badge {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }
}

.owner-info strong { display: block; font-size: 1.1rem; letter-spacing: 1px; }
.owner-info span { font-size: 0.7rem; color: var(--gold); font-weight: 700; }

/* Map Section */
.map-frame {
    border-radius: 40px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .contact-main-grid { grid-template-columns: 1fr; }
    .industrial-form .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 1024px) {
 

    
    a, button, .menu-toggle {
        cursor: pointer !important;
    }
}
/* Footer */
.industrial-footer {
	background: #000;
	padding: 40px;
	border-top: 1px solid #e6a624;
}

.footer-bottom {
	/* border-top: 1px solid rgba(255,255,255,0.05); */
	/* margin-top: 60px; */
	/* padding-top: 30px; */
	text-align: center;
	color: white;
	font-size: 0.7rem;
}
