:root {
    --bg-dark: #050505;
    --bg-secondary: #0a0a0a;
    --card-bg: rgba(20, 20, 20, 0.6);
    --primary: #c6a355;
    /* Refined Gold */
    --primary-glow: rgba(198, 163, 85, 0.3);
    --secondary: #111111;
    --text-main: #f0f0f0;
    --text-muted: #888888;
    --glass-border: rgba(255, 255, 255, 0.08);
    --gradient-main: linear-gradient(145deg, #0a0a0a 0%, #000000 100%);
    --gradient-gold: linear-gradient(135deg, #c6a355 0%, #e2c070 50%, #c6a355 100%);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --ease-out: cubic-bezier(0.215, 0.61, 0.355, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Subtle Grain */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.07;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-main);
    line-height: 1.2;
}

h1 {
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 600;
    letter-spacing: -0.01em;
}

p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Navigation */
.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(5, 5, 5, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    transition: all 0.4s var(--ease-out);
}

.glass-nav.scrolled {
    padding: 1rem 5%;
    background: rgba(5, 5, 5, 0.9);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    height: 45px;
    width: auto;
}

.brand-name {
    font-size: 1.4rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
}

.nav-links a:hover {
    color: var(--primary);
}

.cta-button {
    padding: 0.8rem 1.8rem;
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary) !important;
    border-radius: 4px;
    /* Sharper corners for modern look */
    transition: all 0.3s var(--ease-out) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
}

.cta-button:hover {
    background: var(--primary);
    color: #000 !important;
    box-shadow: 0 0 20px var(--primary-glow);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.glow-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    filter: blur(100px);
    opacity: 0.4;
    animation: pulse 8s ease-in-out infinite alternate;
}

.orb-1 {
    top: -10%;
    right: -10%;
}

.orb-2 {
    bottom: -10%;
    left: -10%;
    background: radial-gradient(circle, rgba(60, 60, 60, 0.4) 0%, transparent 70%);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }

    100% {
        transform: scale(1.1);
        opacity: 0.2;
    }
}

.hero-content {
    max-width: 650px;
    z-index: 2;
    padding-top: 80px;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    background: linear-gradient(180deg, #ffffff 0%, #aaaaaa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    max-width: 90%;
    border-left: 2px solid var(--primary);
    padding-left: 1.5rem;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
}

.primary-btn {
    padding: 1rem 2.5rem;
    background: var(--gradient-gold);
    color: #000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--primary-glow);
}

.secondary-btn {
    padding: 1rem 2.5rem;
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s var(--ease-out);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.secondary-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    width: 45%;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.cube-container {
    position: relative;
    width: 300px;
    height: 300px;
    transform-style: preserve-3d;
    animation: rotate-cube 20s linear infinite;
}

.cube-face {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(198, 163, 85, 0.2);
    background: rgba(198, 163, 85, 0.02);
    box-shadow: 0 0 20px rgba(198, 163, 85, 0.1) inset;
}

.face-front {
    transform: rotateY(0deg) translateZ(150px);
}

.face-back {
    transform: rotateY(180deg) translateZ(150px);
}

.face-right {
    transform: rotateY(90deg) translateZ(150px);
}

.face-left {
    transform: rotateY(-90deg) translateZ(150px);
}

.face-top {
    transform: rotateX(90deg) translateZ(150px);
}

.face-bottom {
    transform: rotateX(-90deg) translateZ(150px);
}

.inner-core {
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 50px var(--primary);
    filter: blur(20px);
}

@keyframes rotate-cube {
    0% {
        transform: rotateX(0deg) rotateY(0deg);
    }

    100% {
        transform: rotateX(360deg) rotateY(360deg);
    }
}

/* Sections */
section {
    padding: 8rem 10%;
    position: relative;
}

.section-header {
    margin-bottom: 5rem;
}

.section-header h2 {
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40%;
    height: 3px;
    background: var(--primary);
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 3rem;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(198, 163, 85, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.glass-card:hover::before {
    opacity: 1;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.about-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Services */
.services-section {
    background: #080808;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    padding: 3rem;
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.service-card:hover {
    background: var(--bg-dark);
    border-color: var(--primary);
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

/* Contact & Map */
.contact-section {
    padding-bottom: 4rem;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-container,
.contact-form-container {
    background: rgba(255, 255, 255, 0.02);
    padding: 3rem;
    border: 1px solid var(--glass-border);
    height: 100%;
}

.info-item {
    margin-bottom: 2.5rem;
}

.info-item .label {
    display: block;
    font-size: 0.8rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.info-item .value {
    font-size: 1.1rem;
    color: var(--text-main);
    line-height: 1.6;
    display: block;
}

.map-container {
    width: 100%;
    height: 300px;
    margin-top: 2rem;
    border: 1px solid var(--glass-border);
    filter: grayscale(100%) invert(92%) contrast(83%);
    transition: filter 0.5s ease;
}

.map-container:hover {
    filter: none;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-form .form-group {
    position: relative;
    margin-bottom: 2.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
    color: var(--text-main);
    font-family: inherit;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact-form textarea {
    height: 120px;
    resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-bottom-color: var(--primary);
}

.contact-form label {
    position: absolute;
    left: 0;
    top: 1rem;
    color: var(--text-muted);
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.3s ease;
}

.contact-form input:focus~label,
.contact-form input:not(:placeholder-shown)~label,
.contact-form textarea:focus~label,
.contact-form textarea:not(:placeholder-shown)~label {
    top: -1.2rem;
    font-size: 0.8rem;
    color: var(--primary);
}

/* Footer */
.main-footer {
    padding: 4rem 10%;
    background: #000;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

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

/* Mobile */
@media (max-width: 968px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding-top: 150px;
        justify-content: center;
    }

    .hero-content {
        margin-bottom: 4rem;
        width: 100%;
        max-width: 100%;
        padding-top: 0;
    }

    .hero-content p {
        margin: 0 auto 3rem;
        border: none;
        padding: 0;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-visual {
        width: 100%;
        height: 400px;
    }

    .about-grid,
    .services-container {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        z-index: 1001;
    }

    .mobile-menu-btn span {
        width: 30px;
        height: 2px;
        background-color: var(--text-main);
        transition: 0.3s;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-secondary);
        flex-direction: column;
        padding-top: 8rem;
        transition: 0.5s var(--ease-out);
        align-items: center;
    }

    .nav-links.active {
        right: 0;
    }
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MDAiIGhlaWdodD0iNTAwIj48ZmlsdGVyIGlkPSJtb2lzZSI+PGZlVHVyYnVsZW5jZSB0eXBlPSJmcmFjdGFsTm9pc2UiIGJhc2VGcmVxdWVuY3k9IjAuNjUiIG51bU9jdGF2ZXM9IjMiIHN0aXRjaFRpbGVzPSJzdGl0Y2giLz48L2ZpbHRlcj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWx0ZXI9InVybCgjbm9pc2UpIiBvcGFjaXR5PSIwLjAzIi8+PC9zdmc+');
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 700;
}

/* Navigation */
.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 14, 20, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    transition: padding 0.3s ease;
}

.glass-nav.scrolled {
    padding: 1rem 5%;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.brand-name {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--primary);
}

.cta-button {
    padding: 0.6rem 1.5rem;
    border: 1px solid var(--primary);
    border-radius: 50px;
    color: var(--primary) !important;
    transition: all 0.3s ease !important;
}

.cta-button:hover {
    background: var(--primary);
    color: var(--bg-dark) !important;
    box-shadow: 0 0 15px var(--primary-glow);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 10% 60px;
    /* Added top padding to clear nav */
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    filter: blur(80px);
    z-index: -1;
    opacity: 0.3;
}

.hero-content {
    max-width: 600px;
    z-index: 1;
}

.hero-content h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    /* Responsive font size */
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(180deg, #fff 0%, #ccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 480px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    /* Allow buttons to wrap on very small screens */
}

.primary-btn {
    padding: 1rem 2rem;
    background: var(--primary);
    color: var(--bg-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    white-space: nowrap;
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px var(--primary-glow);
}

.secondary-btn {
    padding: 1rem 2rem;
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Abstract Globe Visual */
.hero-visual {
    position: relative;
    width: 500px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.globe-container {
    position: relative;
    width: 300px;
    height: 300px;
    transform-style: preserve-3d;
    animation: float 6s ease-in-out infinite;
}

.globe-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(212, 160, 36, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.globe-ring:nth-child(1) {
    width: 300px;
    height: 300px;
    animation: rotate1 10s linear infinite;
    border-top-color: var(--primary);
}

.globe-ring:nth-child(2) {
    width: 240px;
    height: 240px;
    animation: rotate2 15s linear infinite reverse;
    border-right-color: var(--primary);
}

.globe-core {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 60%);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(20px);
    opacity: 0.5;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes rotate1 {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) rotateX(60deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg) rotateX(60deg);
    }
}

@keyframes rotate2 {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) rotateY(60deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg) rotateY(60deg);
    }
}

/* Sections General */
section {
    padding: 6rem 10%;
    position: relative;
    z-index: 1;
}

/* Mobile Tweaks */
@media (max-width: 768px) {
    section {
        padding: 4rem 5%;
        /* Less padding on mobile */
    }
}

.section-header {
    margin-bottom: 4rem;
    text-align: left;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.separator {
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.glass-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.about-card p {
    color: var(--text-muted);
}

/* Services */
.services-section {
    background: radial-gradient(circle at right center, rgba(26, 36, 51, 0.4) 0%, transparent 50%);
}

.services-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-row {
    padding: 2rem;
    border-left: 2px solid var(--glass-border);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%);
    transition: border-left-color 0.3s ease;
}

.service-row:hover {
    border-left-color: var(--primary);
}

.service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.service-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    padding: 4rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item .label {
    display: block;
    font-size: 0.9rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.info-item .value {
    font-size: 1.2rem;
}

.text-link {
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.3s ease;
}

.text-link:hover {
    color: var(--primary);
}

.contact-form .form-group {
    position: relative;
    margin-bottom: 2rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 1rem;
    color: var(--text-main);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form textarea {
    height: 150px;
    resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.contact-form label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: var(--text-muted);
    pointer-events: none;
    transition: all 0.3s ease;
}

.contact-form input:focus+label,
.contact-form input:not(:placeholder-shown)+label,
.contact-form textarea:focus+label,
.contact-form textarea:not(:placeholder-shown)+label {
    top: -0.7rem;
    left: 0.8rem;
    font-size: 0.8rem;
    background: var(--bg-dark);
    padding: 0 0.4rem;
    color: var(--primary);
}

/* Footer */
.main-footer {
    padding: 3rem 10%;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 30px;
    height: 2px;
    background-color: var(--text-main);
    transition: 0.3s;
}

/* Response */
@media (max-width: 900px) {
    .glass-nav {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--bg-dark);
        flex-direction: column;
        padding-top: 6rem;
        transition: 0.4s ease;
        border-left: 1px solid var(--glass-border);
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
    }

    .hero-section {
        flex-direction: column-reverse;
        /* Stack with visual on top or consistent order */
        justify-content: center;
        text-align: center;
        padding-top: 140px;
        /* More top padding for mobile to clear fixed h */
        padding-bottom: 4rem;
        gap: 3rem;
    }

    .hero-content {
        margin-bottom: 0;
        width: 100%;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .hero-visual {
        width: 100%;
        height: 300px;
        /* Smaller visual on mobile */
    }

    .globe-container {
        transform: scale(0.7);
        /* Scale down the globe */
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(0);
    transition: opacity 0.8s ease;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}