:root {
    --bg-dark: #040406;
    --text-primary: #ffffff;
    --text-secondary: #9494a0;
    --accent-1: #b92b27;
    --accent-2: #1565C0;
    --gradient-primary: linear-gradient(135deg, #FF3CAC 0%, #784BA0 50%, #2B86C5 100%);
    --gradient-glow: linear-gradient(135deg, rgba(255, 60, 172, 0.4), rgba(43, 134, 197, 0.4));
    --glass-bg: rgba(20, 20, 25, 0.4);
    --glass-border: rgba(255, 255, 255, 0.06);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.5;
    overflow-x: hidden;
    position: relative;
}

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

a {
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition);
}

/* Background Blobs for Atmosphere */
.blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -1;
    opacity: 0.5;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: #784BA0;
    animation: drift 20s infinite alternate linear;
}

.blob-2 {
    bottom: -20%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: #FF3CAC;
    animation: drift 25s infinite alternate-reverse linear;
    opacity: 0.3;
}

@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, 150px) scale(1.2); }
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Typography Options */
h1 {
    font-size: clamp(3.5rem, 7vw, 6.5rem);
    line-height: 0.95;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: 100px;
    background: var(--text-primary);
    color: var(--bg-dark);
    font-weight: 500;
    font-family: 'Space Grotesk', sans-serif;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.btn-large {
    padding: 1rem 2.2rem;
    font-size: 1.1rem;
}

.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.btn-text .arrow {
    transition: transform 0.3s ease;
}

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

.btn-text:hover .arrow {
    transform: translateX(5px);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(4, 4, 6, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

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

.logo {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    background: var(--text-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 3rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.5rem 2rem;
    border-radius: 100px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-secondary);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 8px;
    cursor: pointer;
}

.hamburger span {
    width: 30px;
    height: 2px;
    background: #fff;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.tagline {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.05);
}

.hero p {
    max-width: 450px;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hero-right {
    position: relative;
    height: 600px;
}

.image-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 200px 200px 30px 30px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.floating-badge {
    position: absolute;
    bottom: 40px;
    left: -30px;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 100px;
    background: rgba(10, 10, 15, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff88;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(0, 255, 136, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0); }
}

/* Marquee */
.marquee-wrapper {
    padding: 2rem 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    background: rgba(0, 0, 0, 0.2);
    margin-top: 4rem;
}

.marquee {
    display: inline-block;
    animation: marquee 30s linear infinite;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 300;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Bento Grid System */
.bento-section {
    padding: 8rem 0;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(280px, auto);
    gap: 1.5rem;
}

.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.col-span-2 { grid-column: span 2; }
.row-span-2 { grid-row: span 2; height: 100%; }

.card-content {
    padding: 2.5rem;
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.bottom-content {
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent 70%);
}

.center-content {
    align-items: center;
    justify-content: center;
    text-align: center;
}

.card-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s ease;
}

.visual-card:hover .card-bg-image {
    transform: scale(1.05);
}

.icon-ring {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.inline-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.inline-link span {
    transition: transform 0.3s;
}

.inline-link:hover span {
    transform: translateX(5px);
}

.stats-card h4 {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stats-card p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0 8rem;
}

.cta-card {
    padding: 5rem 2rem;
    text-align: center;
    background: radial-gradient(circle at center, rgba(120, 75, 160, 0.2) 0%, rgba(20, 20, 25, 0.4) 100%);
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.glass-form {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
}

.glass-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 1rem 1.5rem;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    outline: none;
}

/* Footer */
footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
}

.footer-left p {
    margin-top: 1rem;
    max-width: 300px;
}

.footer-right {
    display: flex;
    gap: 4rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: var(--text-secondary);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Animations Trigger Classes */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Page Layouts */
.page-content {
    padding-top: 150px;
    min-height: 80vh;
}

.page-header {
    text-align: center;
    margin-bottom: 5rem;
}

.page-header h1 {
    margin-bottom: 1rem;
}

.page-header p {
    max-width: 700px;
    margin: 0 auto;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.grid-2-form {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: flex-start;
}

.fill-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Form Styles */
.actual-form {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .actual-form {
        padding: 1.5rem;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

.form-group input, .form-group textarea {
    padding: 1.1rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    width: 100%;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 0 20px rgba(120, 75, 160, 0.15);
}

.actual-form .btn-primary {
    margin-top: 1rem;
    padding: 1.1rem;
    width: 100%;
}

/* Tags and Meta */
.tag {
    display: inline-block;
    padding: 0.2rem 0.8rem;
    border-radius: 100px;
    background: var(--gradient-primary);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    align-self: flex-start;
}

.meta {
    margin-top: auto;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.meta span {
    color: var(--text-primary);
}

/* Individual Styles */
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    padding: 1.5rem;
}

.info-item h4 {
    margin-bottom: 0.5rem;
}

.info-item p {
    margin: 0;
}

/* Active Nav State */
.nav-links a.active {
    color: var(--text-primary);
    position: relative;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--text-primary);
}

/* Responsive */
@media (max-width: 900px) {
    .grid-2, .grid-2-form {
        grid-template-columns: 1fr;
    }
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.price {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 1rem 0;
    color: var(--text-primary);
}

.price span {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.highlighted {
    border-color: var(--accent-1);
    background: rgba(120, 75, 160, 0.1);
    transform: scale(1.05);
    z-index: 5;
}

.highlighted:hover {
    transform: scale(1.07) translateY(-5px);
}

.list-dots {
    list-style: none;
    margin-top: 1rem;
}

.list-dots li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.list-dots li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-1);
    font-size: 1.5rem;
    line-height: 1;
}

/* Fix for Grid text adjustment */
.card-content h3, .card-content p, .card-content h2 {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.card-content {
    word-break: normal;
}

@media (max-width: 1024px) {
    .grid-3 {
        grid-template-columns: 1fr 1fr;
    }
    .highlighted {
        transform: none;
    }
    .highlighted:hover {
        transform: translateY(-5px);
    }
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }
    .hero-container {
        grid-template-columns: 1fr;
    }
    
    .hero-right {
        height: 400px;
        order: -1;
        margin-bottom: 2rem;
    }

    .navbar .btn-primary {
        display: none;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(4, 4, 6, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        padding: 2rem;
        border-radius: 0 0 20px 20px;
        border: 1px solid var(--glass-border);
        border-top: none;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }
    
    .col-span-2 { grid-column: span 1; }
    
    .glass-card {
        min-height: auto;
    }
    
    .card-content {
        padding: 1.5rem;
    }
    
    .glass-form {
        flex-direction: column;
        border-radius: 20px;
        background: transparent;
        border: none;
    }
    
    .glass-form input {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid var(--glass-border);
        border-radius: 100px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}
