:root {
    /* Dark Theme Colors */
    --bg-color: #1e1e2e;
    --card-bg: #2b2b3b;
    --primary-color: #bb86fc;
    /* Soft Neon Purple */
    --primary-hover: #9d5cfc;
    --secondary-color: #03dac6;
    /* Teal Accent */
    --text-color: #e0e0e0;
    --text-muted: #a0a0a0;
    --white: #ffffff;
    --dark-shadow: #151520;
    --light-shadow: #272738;

    /* Claymorphism Shadows (Dark Mode) */
    --clay-shadow:
        8px 8px 16px var(--dark-shadow),
        -8px -8px 16px var(--light-shadow);
    --clay-shadow-hover:
        12px 12px 20px var(--dark-shadow),
        -12px -12px 20px var(--light-shadow);
    --clay-inner-shadow:
        inset 4px 4px 8px var(--dark-shadow),
        inset -4px -4px 8px var(--light-shadow);

    --border-radius: 20px;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

/* Clay Utilities */
.clay-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--clay-shadow);
    padding: 40px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.clay-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--clay-shadow-hover);
    border-color: rgba(187, 134, 252, 0.2);
}

.clay-input {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 15px;
    background-color: var(--bg-color);
    box-shadow: var(--clay-inner-shadow);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-color);
    outline: none;
    transition: box-shadow 0.3s ease;
}

.clay-input:focus {
    box-shadow: inset 2px 2px 4px var(--dark-shadow), inset -2px -2px 4px var(--light-shadow);
    border: 1px solid var(--primary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(145deg, var(--primary-color), var(--primary-hover));
    color: var(--bg-color);
    /* Dark text on bright button */
    box-shadow: 4px 4px 10px rgba(187, 134, 252, 0.2), -4px -4px 10px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 6px 6px 15px rgba(187, 134, 252, 0.4), -6px -6px 15px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background-color: var(--card-bg);
    color: var(--primary-color);
    box-shadow: var(--clay-shadow);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-secondary:hover {
    box-shadow: var(--clay-shadow-hover);
    transform: translateY(-2px);
    color: var(--white);
}

.full-width {
    width: 100%;
    text-align: center;
}

/* Navbar */
.navbar {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background-color: rgba(30, 30, 46, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo .highlight {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

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

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

.btn-featured {
    padding: 10px 25px;
    background-color: var(--primary-color);
    color: var(--bg-color);
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 0 15px rgba(187, 134, 252, 0.3);
}

.btn-featured:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 0 25px rgba(187, 134, 252, 0.5);
    color: var(--bg-color);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    display: flex;
    align-items: center;
    min-height: 90vh;
    background: radial-gradient(circle at 50% 50%, rgba(187, 134, 252, 0.05) 0%, transparent 60%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-text .highlight {
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(187, 134, 252, 0.3);
}

.hero-text p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

/* Hero Visual - Clay Elements */
.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.clay-floating-card {
    position: absolute;
    background-color: var(--card-bg);
    padding: 20px 40px;
    border-radius: 20px;
    box-shadow: var(--clay-shadow);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    color: var(--text-color);
    animation: float 6s ease-in-out infinite;
    z-index: 2;
}

.clay-floating-card i {
    color: var(--secondary-color);
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(3, 218, 198, 0.5);
}

.card-1 {
    top: 50px;
    left: 0;
    animation-delay: 0s;
}

.card-2 {
    bottom: 50px;
    right: 20px;
    animation-delay: 3s;
}

.clay-sphere {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--card-bg), var(--bg-color));
    box-shadow:
        inset 10px 10px 30px rgba(255, 255, 255, 0.05),
        inset -10px -10px 30px rgba(0, 0, 0, 0.5),
        20px 20px 60px var(--dark-shadow),
        -20px -20px 60px var(--light-shadow);
    animation: pulse 8s ease-in-out infinite;
    position: relative;
}

.clay-sphere::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(5px);
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

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

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

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

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--white);
}

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

.services,
.packages,
.contact,
.hosting {
    padding: 100px 0;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: var(--bg-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: var(--secondary-color);
    box-shadow: var(--clay-inner-shadow);
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: var(--white);
}

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

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: center;
}

.pricing-card {
    position: relative;
    padding: 50px 30px;
    display: flex;
    flex-direction: column;
}

.pricing-card.popular {
    transform: scale(1.05);
    z-index: 10;
    border: 2px solid rgba(187, 134, 252, 0.3);
    box-shadow: 0 0 30px rgba(187, 134, 252, 0.1);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--bg-color);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
}

.card-header {
    text-align: center;
    margin-bottom: 30px;
}

.card-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--white);
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
    text-shadow: 0 0 10px rgba(187, 134, 252, 0.3);
}

.features-list {
    margin-bottom: 40px;
}

.features-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
}

.features-list li i {
    color: var(--secondary-color);
}

/* Hosting Features & Styles */
.price-small {
    margin-top: 20px;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.price-small strong {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 700;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 15px;
    font-weight: 600;
    color: var(--secondary-color);
    transition: gap 0.3s ease;
}

.btn-link:hover {
    gap: 10px;
    color: var(--white);
}

.hosting-features {
    text-align: left;
    margin: 20px 0;
    font-size: 0.95rem;
    padding: 15px;
    background-color: var(--bg-color);
    border-radius: 15px;
    box-shadow: var(--clay-inner-shadow);
}

.hosting-features li {
    margin-bottom: 10px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
}

.hosting-features li i {
    color: var(--secondary-color);
    margin-right: 8px;
}

/* Portfolio Grid */
.portfolio {
    padding: 100px 0;
}

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

.portfolio-item {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.browser-window {
    background: #1e1e2e;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 300px;
    display: flex;
    flex-direction: column;
}

.browser-header {
    background: #2b2b3b;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f56;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #27c93f;
}

.browser-address {
    background: rgba(0, 0, 0, 0.2);
    color: var(--text-muted);
    font-size: 0.8rem;
    padding: 2px 10px;
    border-radius: 4px;
    margin-left: 10px;
    flex-grow: 1;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.iframe-container {
    flex-grow: 1;
    position: relative;
    background: white;
}

.iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none;
    /* Prevent interaction within preview */
}

.project-info {
    text-align: center;
}

.project-info h3 {
    color: var(--white);
    margin-bottom: 5px;
}

.project-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info .info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    font-size: 1.1rem;
}

.contact-info .info-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    background-color: var(--bg-color);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: var(--clay-shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
}

textarea.clay-input {
    resize: none;
}

/* Footer */
footer {
    padding: 50px 0;
    background-color: var(--card-bg);
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: var(--bg-color);
    color: var(--text-color);
    box-shadow: var(--clay-shadow);
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--bg-color);
    background-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(187, 134, 252, 0.4);
    transform: translateY(-3px);
}

/* Page Headers (for sub-pages) */
.page-header {
    padding: 150px 0 60px;
    background: radial-gradient(circle at 50% 0%, rgba(187, 134, 252, 0.1) 0%, transparent 50%);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--white);
}

.page-header p {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .hero-visual {
        display: none;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

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

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--card-bg);
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

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