/* Opulent Metallic - Premium Design System */

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

:root {
    --primary-dark: #0a0a0a;
    --primary-medium: #1a1a1a;
    --primary-light: #2a2a2a;
    --accent-gold: #d4af37;
    --accent-gold-light: #f4e4c1;
    --accent-gold-dark: #b8860b;
    --accent-silver: #c0c0c0;
    --accent-silver-light: #e2e8f0;
    --accent-blue: #2563eb;
    --accent-blue-light: #60a5fa;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --text-dark: #18181b;
    --border-light: rgba(255, 255, 255, 0.1);
    --border-medium: rgba(255, 255, 255, 0.2);
    --border-gold: rgba(212, 175, 55, 0.3);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4e4c1 50%, #b8860b 100%);
    --gradient-silver: linear-gradient(135deg, #c0c0c0 0%, #e2e8f0 100%);
    --gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    --gradient-hero: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(26, 26, 26, 0.8) 100%);
    --shadow-gold: 0 0 30px rgba(212, 175, 55, 0.4);
    --shadow-silver: 0 0 30px rgba(192, 192, 192, 0.3);
    --shadow-blue: 0 0 30px rgba(37, 99, 235, 0.3);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--primary-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Animated Background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(192, 192, 192, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.05) 0%, transparent 60%);
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: var(--gradient-gold);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 200px;
    height: 200px;
    background: var(--gradient-silver);
    top: 60%;
    left: 70%;
    animation-delay: 5s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #2563eb 0%, #60a5fa 100%);
    top: 30%;
    right: 15%;
    animation-delay: 10s;
}

.orb-4 {
    width: 180px;
    height: 180px;
    background: var(--gradient-gold);
    bottom: 20%;
    left: 30%;
    animation-delay: 15s;
}

.orb-5 {
    width: 220px;
    height: 220px;
    background: var(--gradient-silver);
    top: 50%;
    left: 50%;
    animation-delay: 7s;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-gold);
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 2rem;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.brand-accent {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-gold-light);
}

.nav-link:hover::before {
    width: 100%;
}

.cta-button {
    background: var(--gradient-gold);
    color: var(--text-dark);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-gold);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.6);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.75rem;
    z-index: 1001;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(212, 175, 55, 0.1);
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--accent-gold);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8rem 2rem 4rem;
    position: relative;
    z-index: 10;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-gold);
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    margin-bottom: 2rem;
    animation: glow 3s ease-in-out infinite;
}

.badge-icon {
    color: var(--accent-gold);
    font-size: 1rem;
}

.badge-text {
    color: var(--accent-gold-light);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
}

.title-line {
    color: var(--text-primary);
    animation: slideInFromLeft 0.8s ease forwards;
    opacity: 0;
}

.title-line:nth-child(1) { animation-delay: 0.1s; }
.title-line:nth-child(2) { animation-delay: 0.3s; }
.title-line:nth-child(3) { animation-delay: 0.5s; }

.title-accent {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0.5rem 0;
}

.hero-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.7s forwards;
    opacity: 0;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease 0.9s forwards;
    opacity: 0;
}

.primary-btn {
    background: var(--gradient-gold);
    color: var(--text-dark);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-gold);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.6);
}

.secondary-btn {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-gold);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.secondary-btn:hover {
    background: var(--gradient-gold);
    color: var(--text-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    animation: fadeInUp 1s ease 1.1s forwards;
    opacity: 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
}

.hero-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 500px;
}

.metallic-sphere {
    width: 300px;
    height: 300px;
    background: var(--gradient-gold);
    border-radius: 50%;
    position: relative;
    box-shadow: var(--shadow-xl), var(--shadow-gold);
    animation: rotate 20s linear infinite;
}

.ring-animation {
    position: absolute;
    border: 2px solid var(--border-gold);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

.ring-1 {
    width: 350px;
    height: 350px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 0s;
}

.ring-2 {
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 1s;
}

.ring-3 {
    width: 450px;
    height: 450px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 2s;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.2rem;
    font-weight: 400;
}

/* About Section */
.about {
    padding: 8rem 0;
    background: var(--gradient-hero);
    position: relative;
}

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

.about-card {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, var(--accent-gold), var(--accent-silver), var(--accent-blue), var(--accent-gold));
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: rotate 10s linear infinite;
    z-index: -1;
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
}

.about-card:hover::before {
    opacity: 0.1;
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    border-radius: 20px;
    color: var(--text-dark);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.about-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.about-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--accent-gold-light);
}

.about-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

/* Services Section */
.services {
    padding: 8rem 0;
    background: var(--primary-dark);
}

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

.service-card {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 0;
    display: flex;
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
}

.service-number {
    background: var(--gradient-gold);
    color: var(--text-dark);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    padding: 2rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
}

.service-content {
    padding: 2rem;
    flex: 1;
}

.service-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--accent-gold-light);
}

.service-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-features i {
    color: var(--accent-gold);
    font-size: 0.8rem;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: var(--gradient-hero);
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
}

.connection-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.decoration-line {
    width: 60px;
    height: 2px;
    background: var(--gradient-gold);
    opacity: 0.6;
}

.decoration-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.contact-description {
    color: var(--text-secondary);
    font-size: 1.2rem;
    line-height: 1.7;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

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

.contact-card {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, var(--accent-gold), var(--accent-silver), var(--accent-blue), var(--accent-gold));
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: rotate 10s linear infinite;
    z-index: -1;
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
}

.contact-card:hover::before {
    opacity: 0.1;
}

.card-icon-wrapper {
    margin-bottom: 1.5rem;
}

.icon-bg {
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 1.8rem;
    margin: 0 auto;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-gold);
}

.contact-card:hover .icon-bg {
    transform: scale(1.1) rotate(5deg);
}

.card-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-gold-light);
    margin-bottom: 0.5rem;
}

.card-content p {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.social-connection {
    text-align: center;
    padding: 3rem;
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-light);
    border-radius: 24px;
}

.social-connection h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-gold-light);
    margin-bottom: 1rem;
}

.social-connection p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--border-gold);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold-light);
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    transition: left 0.3s ease;
    z-index: -1;
}

.social-icon:hover {
    transform: translateY(-5px) rotate(5deg);
    color: var(--text-primary);
    box-shadow: var(--shadow-gold);
}

.social-icon:hover::before {
    left: 100%;
}

.contact-form {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 3rem;
}

.contact-form h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--accent-gold-light);
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--border-gold);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.form-group select {
    cursor: pointer;
}

.submit-btn {
    background: var(--gradient-gold);
    color: var(--text-dark);
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* Copyright Section */
.copyright {
    background: var(--primary-dark);
    padding: 2rem 0;
    border-top: 1px solid var(--border-light);
    text-align: center;
}

.copyright p {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 400;
    margin: 0;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.9);
    }
    75% {
        transform: translate(20px, -10px) scale(1.05);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: var(--shadow-gold);
    }
    50% {
        box-shadow: 0 0 40px rgba(212, 175, 55, 0.6);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */

/* Tablet and Large Mobile */
@media (max-width: 1024px) {
    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border-gold);
    }
    
    .navbar {
        padding: 0.75rem 1.5rem;
    }
    
    .nav-container {
        justify-content: center;
        text-align: center;
    }
    
    .nav-brand {
        order: 1;
        width: 100%;
        justify-content: center;
        margin-bottom: 0.5rem;
    }
    
    .nav-menu {
        order: 2;
        display: flex;
        gap: 1.5rem;
        justify-content: center;
    }
    
    .nav-link {
        font-size: 0.85rem;
        padding: 0.25rem 0.5rem;
    }
    
    .hero {
        min-height: 100vh;
        flex-direction: column;
        text-align: center;
        gap: 3rem;
        padding: 6rem 1.5rem 4rem;
        margin-top: 0;
    }
    
    .hero-visual {
        order: -1;
        max-width: 400px;
        margin-bottom: 2rem;
    }
    
    .metallic-sphere {
        width: 250px;
        height: 250px;
    }
    
    .ring-1, .ring-2, .ring-3 {
        display: none;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .social-icons {
        gap: 1rem;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

/* Mobile Landscape and Small Tablet */
@media (max-width: 768px) {
    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border-gold);
    }
    
    .navbar {
        padding: 0.5rem 1rem;
    }
    
    .nav-container {
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-brand {
        order: 1;
        justify-content: flex-start;
        margin-bottom: 0;
    }
    
    .hamburger {
        display: flex;
        order: 2;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        border-left: 1px solid var(--border-gold);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 2rem;
        transition: right 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1rem;
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-light);
        width: 100%;
        text-align: left;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .brand-text,
    .brand-accent {
        font-size: 1.3rem;
    }
    
    .hero {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 6rem 1rem 3rem;
        margin-top: 0;
        text-align: center;
        position: relative;
    }
    
    .hero-content {
        max-width: 100%;
        order: 2;
        z-index: 10;
    }
    
    .hero-visual {
        order: 1;
        margin-bottom: 2rem;
        position: relative;
        z-index: 5;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        flex-direction: column;
        text-align: center;
        padding: 0;
        position: relative;
    }
    
    .service-number {
        background: var(--gradient-gold);
        color: var(--text-dark);
        font-family: 'Space Grotesk', sans-serif;
        font-size: 1.5rem;
        font-weight: 900;
        padding: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: auto;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        margin: 0 auto 1.5rem;
        position: relative;
        z-index: 2;
    }
    
    .service-content {
        padding: 2rem 1.5rem;
        flex: 1;
        text-align: center;
    }
    
    .service-content h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .service-content p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .service-features {
        list-style: none;
        text-align: left;
        max-width: 200px;
        margin: 0 auto;
    }
    
    .service-features li {
        color: var(--text-secondary);
        margin-bottom: 0.5rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.9rem;
    }
    
    .service-features i {
        color: var(--accent-gold);
        font-size: 0.7rem;
    }
    
    .contact-title {
        font-size: 2.5rem;
    }
    
    .contact-description {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .icon-bg {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .social-connection {
        padding: 2rem;
    }
    
    .section-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border-gold);
    }
    
    .navbar {
        padding: 0.5rem 0.75rem;
    }
    
    .nav-container {
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-brand {
        order: 1;
        justify-content: flex-start;
        margin-bottom: 0;
    }
    
    .hamburger {
        display: flex;
        order: 2;
        padding: 0.5rem;
        min-width: 36px;
        min-height: 36px;
    }
    
    .hamburger-line {
        width: 20px;
        height: 2px;
        margin: 2px 0;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 280px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        border-left: 1px solid var(--border-gold);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 4rem 1.5rem 2rem;
        gap: 1.5rem;
        transition: right 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 0.8rem 0;
        border-bottom: 1px solid var(--border-light);
        width: 100%;
        text-align: left;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .brand-text,
    .brand-accent {
        font-size: 1.1rem;
    }
    
    .hero {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 5rem 0.75rem 2rem;
        margin-top: 0;
        text-align: center;
        position: relative;
    }
    
    .hero-content {
        max-width: 100%;
        order: 2;
        z-index: 10;
    }
    
    .hero-visual {
        order: 1;
        margin-bottom: 1.5rem;
        position: relative;
        z-index: 5;
    }
    
    .hero-badge {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-title {
        font-size: clamp(2rem, 10vw, 3rem);
        line-height: 1;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-visual {
        order: -1;
        margin-bottom: 2rem;
    }
    
    .metallic-sphere {
        width: 200px;
        height: 200px;
    }
    
    .ring-1, .ring-2, .ring-3 {
        display: none;
    }
    
    .hero-stats {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .about,
    .services,
    .contact {
        padding: 4rem 0;
    }
    
    .about-card {
        padding: 2rem 1.5rem;
    }
    
    .service-card {
        flex-direction: column;
        text-align: center;
        padding: 0;
        position: relative;
    }
    
    .service-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        padding: 0.8rem;
        margin: 0 auto 1rem;
        border-radius: 50%;
    }
    
    .service-content {
        padding: 1.5rem 1rem;
        text-align: center;
    }
    
    .service-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .service-content p {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
    }
    
    .service-features {
        max-width: 180px;
    }
    
    .service-features li {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }
    
    .service-features i {
        font-size: 0.6rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .about-card h3 {
        font-size: 1.3rem;
    }
    
    .about-card p {
        font-size: 0.95rem;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .contact-card {
        padding: 1.5rem 1rem;
        text-align: center;
    }
    
    .card-icon-wrapper {
        margin-bottom: 1rem;
    }
    
    .icon-bg {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .card-content h3 {
        font-size: 1.1rem;
    }
    
    .card-content p {
        font-size: 1rem;
    }
    
    .contact-subtitle {
        font-size: 0.8rem;
    }
    
    .social-connection {
        padding: 1.5rem;
    }
    
    .social-connection h4 {
        font-size: 1.5rem;
    }
    
    .social-connection p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .social-icons {
        gap: 0.75rem;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: clamp(1.8rem, 10vw, 2.5rem);
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .title-decoration {
        margin-top: 0.5rem;
    }
    
    .decoration-line {
        width: 40px;
    }
    
    .copyright {
        padding: 1.5rem 0;
    }
    
    .copyright p {
        font-size: 0.8rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 320px) {
    .hero {
        padding: 4rem 0.5rem 1.5rem;
        min-height: 100vh;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 12vw, 2.5rem);
        line-height: 1;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .metallic-sphere {
        width: 120px;
        height: 120px;
    }
    
    .ring-1, .ring-2, .ring-3 {
        display: none;
    }
    
    .about-card,
    .contact-card {
        padding: 1.5rem 0.75rem;
    }
    
    .service-card {
        padding: 0;
    }
    
    .service-number {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        padding: 0.7rem;
    }
    
    .service-content {
        padding: 1.5rem 0.75rem;
    }
    
    .card-icon,
    .icon-bg {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: clamp(1.5rem, 10vw, 2rem);
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .contact-title {
        font-size: 1.8rem;
    }
    
    .contact-description {
        font-size: 0.9rem;
    }
    
    .social-connection {
        padding: 1rem;
    }
    
    .social-connection h4 {
        font-size: 1.3rem;
    }
    
    .social-connection p {
        font-size: 0.9rem;
    }
}
