/* ===== ROOT VARIABLES ===== */
:root {
    --primary: oklch(0.55 0.25 280);
    --secondary: oklch(0.65 0.22 200);
    --accent: oklch(0.75 0.18 70);
    --pink: oklch(0.60 0.20 320);
    --cyan: oklch(0.70 0.20 160);
    
    --bg-dark: oklch(0.12 0.04 280);
    --bg-card: oklch(0.18 0.05 280);
    --bg-light: oklch(0.25 0.04 280);
    --text-light: oklch(0.98 0.01 280);
    --text-muted: oklch(0.70 0.05 280);
    --border-color: oklch(0.30 0.06 280);
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== ANIMATIONS ===== */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px var(--primary);
    }
    50% {
        box-shadow: 0 0 40px var(--primary), 0 0 60px var(--secondary);
    }
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes slide-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== FLOATING SHAPES ===== */
.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    filter: blur(80px);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: 5%;
    left: 5%;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    animation-delay: 0s;
}

.shape-2 {
    width: 500px;
    height: 500px;
    top: 30%;
    right: 10%;
    background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
    animation-delay: 2s;
}

.shape-3 {
    width: 400px;
    height: 400px;
    bottom: 10%;
    left: 20%;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    animation-delay: 4s;
}

.shape-4 {
    width: 350px;
    height: 350px;
    bottom: 20%;
    right: 30%;
    background: radial-gradient(circle, var(--pink) 0%, transparent 70%);
    animation-delay: 1s;
}

.shape-5 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    background: radial-gradient(circle, var(--cyan) 0%, transparent 70%);
    animation-delay: 3s;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(24, 18, 40, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    color: white;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    font-weight: 500;
    position: relative;
    color: var(--text-light);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-light);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 60px;
    z-index: 1;
}

.hero-content {
    text-align: center;
    animation: slide-in 0.8s ease-out;
}

.hero-title {
    font-size: clamp(48px, 8vw, 96px);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: clamp(18px, 3vw, 28px);
    color: var(--text-muted);
    margin-bottom: 40px;
    font-weight: 300;
}

.location-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.badge {
    padding: 10px 20px;
    background: rgba(85, 37, 180, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 25px;
    backdrop-filter: blur(12px);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.badge:hover {
    background: rgba(85, 37, 180, 0.2);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* ===== ARTICLE SECTION ===== */
.article-section {
    position: relative;
    padding: 80px 20px;
    z-index: 1;
}

.article-card {
    background: rgba(24, 18, 40, 0.5);
    border: 2px solid transparent;
    border-radius: 24px;
    padding: 60px;
    backdrop-filter: blur(12px);
    animation: pulse-glow 3s ease-in-out infinite;
    background-image: linear-gradient(rgba(24, 18, 40, 0.5), rgba(24, 18, 40, 0.5)),
                      linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.article-header {
    text-align: center;
    margin-bottom: 50px;
}

.article-title {
    font-size: clamp(28px, 5vw, 48px);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    margin: 20px auto;
    border-radius: 2px;
}

.article-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.article-section-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary);
}

.article-section-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 16px;
}

.article-section-content ul,
.article-section-content ol {
    margin-left: 20px;
    margin-bottom: 16px;
}

.article-section-content li {
    margin-bottom: 10px;
    color: var(--text-light);
    line-height: 1.8;
}

.peacock-link {
    color: var(--accent);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: var(--accent);
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
    transition: all 0.3s ease;
}

.peacock-link:hover {
    color: var(--secondary);
    text-decoration-color: var(--secondary);
}

.policy-box {
    background: rgba(85, 37, 180, 0.1);
    border-left: 4px solid var(--primary);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.policy-box p {
    margin-bottom: 12px;
}

.policy-box p:last-child {
    margin-bottom: 0;
}

.planning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.planning-card {
    background: rgba(85, 37, 180, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.planning-card:hover {
    border-color: var(--primary);
    background: rgba(85, 37, 180, 0.2);
    transform: translateY(-5px);
}

.planning-card h4 {
    color: var(--secondary);
    margin-bottom: 10px;
    font-size: 16px;
}

.planning-card p {
    font-size: 14px;
    color: var(--text-muted);
}

.budget-list {
    list-style: none;
    margin: 20px 0;
}

.budget-list li {
    padding: 10px 0;
    padding-left: 20px;
    position: relative;
}

.budget-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.doc-item {
    background: rgba(85, 37, 180, 0.1);
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid var(--accent);
    font-size: 14px;
}

.safety-list {
    list-style: none;
    margin: 20px 0;
}

.safety-list li {
    padding: 10px 0;
    padding-left: 20px;
    position: relative;
}

.safety-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.experience-card {
    background: rgba(85, 37, 180, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.experience-card:hover {
    border-color: var(--primary);
    background: rgba(85, 37, 180, 0.2);
    transform: scale(1.05);
}

.experience-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.experience-card p {
    font-size: 14px;
    color: var(--text-muted);
}

/* ===== SERVICES SECTION ===== */
.services {
    position: relative;
    padding: 80px 20px;
    z-index: 1;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: rgba(85, 37, 180, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.3s ease;
    animation: slide-in 0.6s ease-out backwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

.service-card:hover {
    border-color: var(--primary);
    background: rgba(85, 37, 180, 0.2);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(85, 37, 180, 0.2);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary);
}

.service-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== ABOUT SECTION ===== */
.about {
    position: relative;
    padding: 80px 20px;
    z-index: 1;
}

.about-card {
    background: rgba(85, 37, 180, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 50px;
    max-width: 800px;
    margin: 0 auto;
}

.about-card p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

.about-card p:last-child {
    margin-bottom: 0;
}

/* ===== CONTACT SECTION ===== */
.contact {
    position: relative;
    padding: 80px 20px;
    z-index: 1;
}

.contact-card {
    background: rgba(85, 37, 180, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 50px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.contact-item {
    padding: 20px;
}

.contact-icon {
    font-size: 40px;
    margin-bottom: 10px;
    display: block;
}

.contact-item h3 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 14px;
    color: var(--text-muted);
}

.contact-message {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.cta-button {
    padding: 14px 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(85, 37, 180, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(85, 37, 180, 0.5);
}

/* ===== FOOTER ===== */
.footer {
    position: relative;
    padding: 40px 20px;
    border-top: 1px solid var(--border-color);
    text-align: center;
    z-index: 1;
}

.footer p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.footer p:last-child {
    margin-bottom: 0;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: rgba(24, 18, 40, 0.95);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--border-color);
        padding: 20px;
        list-style: none;
    }

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

    .nav-links li {
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 15px 0;
    }

    .nav-links a::after {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .article-card {
        padding: 30px 20px;
    }

    .article-title {
        font-size: 24px;
    }

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

    .about-card,
    .contact-card {
        padding: 30px 20px;
    }

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

    .planning-grid,
    .experience-grid,
    .docs-grid {
        grid-template-columns: 1fr;
    }

    .location-badges {
        gap: 8px;
    }

    .badge {
        padding: 8px 16px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 20px 40px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .article-card {
        padding: 20px;
    }

    .article-section-content h3 {
        font-size: 18px;
    }

    .article-section-content p {
        font-size: 14px;
    }

    .section-title {
        font-size: 28px;
    }

    .service-card {
        padding: 25px 15px;
    }

    .service-icon {
        font-size: 36px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 14px;
    }
}
