/* Base & Reset */
:root {
    --bg-color: #050505;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent: #ffffff;
    --border-color: #333333;
    --card-bg: #0f0f0f;
    --spacing-unit: 1.5rem;
    --container-width: 1200px;
}

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

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Cursor Glow Effect */
.dew-cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
    /* Stronger, colorful gradient for better visibility */
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(56, 189, 248, 0.3) 0%,
            rgba(59, 130, 246, 0.2) 20%,
            rgba(147, 51, 234, 0.1) 40%,
            transparent 60%);
    opacity: 1;
    transition: opacity 0.3s ease;
    mix-blend-mode: screen;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text-primary);
    font-weight: 600;
}

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

ul {
    list-style: none;
}

.dew-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    /* Ensure content is above glow */
}

/* Typography Utilities */
.dew-eyebrow {
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    display: block;
}

.dew-section-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 3rem;
    max-width: 600px;
}

@media (max-width: 768px) {
    .dew-section-title {
        font-size: 2rem;
    }
}

/* Buttons */
.dew-btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.dew-btn--sm {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

.dew-btn--primary {
    background-color: var(--accent);
    color: var(--bg-color);
    border-color: var(--accent);
}

.dew-btn--primary:hover {
    background-color: transparent;
    color: var(--accent);
}

.dew-btn--outline {
    background-color: transparent;
    color: var(--text-primary);
    border-color: var(--text-primary);
}

.dew-btn--outline:hover {
    background-color: var(--text-primary);
    color: var(--bg-color);
}

.dew-btn--white {
    background-color: var(--accent);
    color: var(--bg-color);
    width: 100%;
    margin-top: 1rem;
}

.dew-btn--white:hover {
    opacity: 0.9;
}

.dew-btn--lg {
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem;
}

/* Header */
.dew-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.dew-logo {
    display: block;
    width: 150px;
    height: auto;
}

.dew-logo svg {
    width: 100%;
    height: auto;
}

.dew-nav__list {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.dew-nav__list a {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.dew-nav__list a:hover,
.dew-nav__list a.dew-btn {
    color: var(--text-primary);
}

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

.dew-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
}

@media (max-width: 768px) {
    .dew-nav {
        display: none;
    }

    .dew-hamburger {
        display: flex;
    }
}

/* Hero Section */
.dew-hero {
    height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 4rem;
    z-index: 2;
}

.dew-hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.dew-hero__title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.dew-highlight {
    color: var(--text-secondary);
    font-weight: 300;
    display: block;
    margin-top: 0.5rem;
    font-size: 0.8em;
}

.dew-hero__subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 2.5rem;
}

.dew-hero__cta {
    display: flex;
    gap: 1rem;
}

/* Hero Background Animation */
.dew-hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    opacity: 0.3;
    pointer-events: none;
}

.dew-grid-animation {
    width: 200%;
    height: 200%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    transform: perspective(500px) rotateX(60deg) translateY(-100px) translateZ(-200px);
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: perspective(500px) rotateX(60deg) translateY(0) translateZ(-200px);
    }

    100% {
        transform: perspective(500px) rotateX(60deg) translateY(40px) translateZ(-200px);
    }
}

@media (max-width: 768px) {
    .dew-hero__title {
        font-size: 2.5rem;
    }

    .dew-hero__cta {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Sections */
.dew-section {
    padding: 6rem 0;
    position: relative;
    z-index: 2;
}

/* About Section */
.dew-about .dew-text-lead {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.dew-about p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 800px;
}

/* Services Grid */
.dew-services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.dew-service-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.dew-service-card:hover {
    transform: translateY(-5px);
    border-color: var(--text-primary);
}

.dew-service-card__icon {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.dew-service-card__title {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.dew-service-card__desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Why Choose List */
.dew-features__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 800px;
}

.dew-feature-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.dew-feature-item__check {
    color: var(--text-primary);
    font-size: 1.25rem;
}

.dew-feature-item h3 {
    font-size: 1.1rem;
    font-weight: 400;
}

/* Process Section */
.dew-process__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    position: relative;
}

.dew-step {
    position: relative;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.dew-step__number {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 1rem;
}

.dew-step__title {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.dew-step__desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Industries Cloud */
.dew-industries__cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.dew-tag {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.dew-tag:hover {
    color: var(--text-primary);
    border-color: var(--text-primary);
    background-color: rgba(255, 255, 255, 0.05);
}

/* Testimonials */
.dew-testimonials {
    text-align: center;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 8rem 0;
}

.dew-testimonial__content {
    font-size: 2.5rem;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.3;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .dew-testimonial__content {
        font-size: 1.5rem;
    }
}

/* CTA Section */
.dew-cta-section {
    text-align: center;
    padding: 8rem 0;
}

.dew-cta-box h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.dew-cta-box p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

/* Contact Section */
.dew-contact__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

@media (max-width: 768px) {
    .dew-contact__wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.dew-contact__methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.dew-contact__method strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dew-contact-form {
    padding: 1.5rem;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
}

.dew-form-group {
    margin-bottom: 1rem;
}

.dew-form-group label {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.dew-form-group input,
.dew-form-group select,
.dew-form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.dew-form-group input:focus,
.dew-form-group select:focus,
.dew-form-group textarea:focus {
    outline: none;
    border-color: var(--text-primary);
}

/* Footer */
.dew-footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
    position: relative;
    z-index: 2;
}

.dew-footer__content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
}

.dew-footer__logo {
    width: 140px;
    margin-bottom: 1rem;
}

.dew-footer__logo svg {
    width: 100%;
}

.dew-footer__left p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.dew-footer__right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .dew-footer__right {
        align-items: flex-start;
    }
}

.dew-footer__links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.dew-footer__links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.dew-footer__links a:hover {
    color: var(--text-primary);
}

.dew-social-icons {
    display: flex;
    gap: 1rem;
}

.dew-social-icons a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
}

.dew-social-icons a:hover {
    background-color: var(--text-primary);
    color: var(--bg-color);
    border-color: var(--text-primary);
}

/* Animations */
.dew-reveal-text {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease forwards;
}

.dew-delay-1 {
    animation-delay: 0.2s;
}

.dew-delay-2 {
    animation-delay: 0.4s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating WhatsApp Button */
.dew-whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.dew-whatsapp-float:hover {
    background-color: #20b958;
    transform: scale(1.1);
    box-shadow: 0px 6px 14px rgba(0, 0, 0, 0.4);
    color: #FFF;
}
/* Notification Toast */
.dew-notification {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 1rem 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 2000;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 300px;
}

.dew-notification.dew-notification--show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.dew-notification--success {
    border-left: 4px solid #4ade80;
}

.dew-notification--error {
    border-left: 4px solid #ef4444;
}

.dew-notification__icon {
    font-size: 1.5rem;
}

.dew-notification__message {
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 500;
}

.dew-notification__close {
    margin-left: auto;
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0.2rem;
    transition: color 0.2s;
}

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