/* Global Styles */
body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0a;
    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.07'/%3E%3C/svg%3E");
    color: #fff;
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: 'Space Grotesk', sans-serif;
}

h1, h2, h3, .navbar-brand {
    color: #ff6600 !important;
}

/* Utilities */
.bg-black-90 {
    background-color: rgba(0, 0, 0, 0.9);
}

.bg-lilac-dark {
    background-color: #1e1024; /* Dark Lilac/Purple */
}

.border-orange {
    border-color: #ff6600 !important;
}

.border-lilac {
    border-color: #c77dff !important; /* Lilac */
}

.text-orange {
    color: #ff6600 !important;
}

.text-lilac {
    color: #c77dff !important;
}

/* Buttons */
.btn-orange {
    background-color: #ff6600;
    color: #fff;
    border: none;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-orange:hover {
    background-color: #e65c00;
    color: #fff;
    transform: translateY(-2px);
}

/* Links */
.link-accent {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.link-accent:hover {
    color: #c77dff; /* Lilac hover */
}

/* Hero */
.hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Tiles */
.tile {
    padding: 2rem;
    border-radius: 1rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.tile h4 {
    margin-bottom: 1rem;
    font-weight: 700;
}

.tile p {
    margin-bottom: 0;
    line-height: 1.6;
    opacity: 0.9;
}

/* Tile Colors */
.tile--grey {
    background-color: #212529;
    color: #fff;
}

.tile--orange {
    background-color: #ff6600;
    color: #fff;
}

.tile--black {
    background-color: #000;
    color: #fff;
    border: 1px solid #333;
}

.tile--accent {
    background-color: #343a40;
    color: #fff;
    border-left: 4px solid #c77dff; /* Lilac border */
}

/* Intro Box */
.intro-box {
    background-color: #212529;
    padding: 3rem;
    border-radius: 1rem;
    border-left: 6px solid #ff6600;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

/* Price Cards */
.price-card {
    padding: 2rem;
    border-radius: 1rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(199, 125, 255, 0.2); /* Lilac glow */
}

.price-card--black {
    background-color: #000;
    color: #fff;
    border: 1px solid #333;
}

.price-card--accent {
    background-color: #343a40;
    color: #fff;
    border-left: 4px solid #c77dff;
}

.price-card--orange {
    background-color: #ff6600;
    color: #fff;
}

.price-card--purple {
    background-color: #1e1024;
    color: #fff;
    border: 1px solid #c77dff;
}

.price-card ul {
    list-style: none;
    padding-left: 0;
}

.price-card ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.price-card ul li::before {
    content: "✓";
    color: currentColor;
    position: absolute;
    left: 0;
    font-weight: bold;
    opacity: 0.8;
}

.price-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.price-badge--neutral {
    background-color: rgba(255,255,255,0.2);
    color: #fff;
}

.price-badge--orange {
    background-color: #fff;
    color: #ff6600;
}

.price-badge--accent {
    background-color: #c77dff;
    color: #fff;
}

/* Modern Updates */
.navbar {
    background-color: rgba(30, 16, 36, 0.85) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(199, 125, 255, 0.2) !important;
}

.text-gradient {
    background: linear-gradient(135deg, #ff6600 0%, #c77dff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent !important;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

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

/* Ambient Backgrounds */
.ambient-shape {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.3;
    pointer-events: none;
    animation: float 20s infinite alternate ease-in-out;
}

.shape-1 {
    top: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #ff6600 0%, transparent 70%);
}

.shape-2 {
    bottom: -10%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, #c77dff 0%, transparent 70%);
    animation-delay: -10s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 30px) scale(1.1); }
}

/* Custom Icons */
.icon-lg {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    fill: currentColor;
    opacity: 0.9;
}

/* Page Headers */
.page-header {
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
}

.glass-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 50rem;
    margin-bottom: 1.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}
