/* Global Styles */
:root {
    --primary-color: #B07D62;
    /* Terracota from Quiet Luxury */
    --accent-color: #CD995D;
    /* Ocre Dorado from Quiet Luxury */
    --text-color: #4A4A48;
    /* Dark Grey for body text */
    --text-light: #FAFAF9;
    /* Off-white for overlay text */
    --overlay-color: rgba(0, 0, 0, 0.4);
    --bg-light: #F9F9F9;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Outfit', sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.btn {
    font-family: 'Manrope', sans-serif;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: var(--text-light);
}

/* Media Background */
.media-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5));
}

/* Content */
.glass-box {
    position: relative;
    z-index: 1;
    padding: 3rem;
    max-width: 800px;
    animation: fadeIn Up 1s ease-out;
    background: rgba(0, 0, 0, 0.25);
    /* More transparent */
    backdrop-filter: blur(8px);
    /* Subtle blur */
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
}

.eyebrow-text {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--accent-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.headline {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.gradient-text {
    background: linear-gradient(to right, #ffffff, #e0c3fc);
    /* Subtle gradient */
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    /* Text shadow doesn't work well with gradient text clip */
}

.subheadline {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    opacity: 0.95;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Buttons */
.cta-container {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(176, 125, 98, 0.4);
}

.btn-primary:hover {
    background-color: #9A6A50;
    border-color: #9A6A50;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(176, 125, 98, 0.5);
}

.btn-outline {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 2px solid #fff;
    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    background-color: #fff;
    color: var(--text-color);
    transform: translateY(-3px);
}

/* METHODOLOGY GRID */
.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    text-align: center;
}

.method-card {
    background: #fff;
    padding: 2.5rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.method-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    background: rgba(176, 125, 98, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.method-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.section-intro {
    max-width: 700px;
    margin: 1rem auto;
    font-size: 1.1rem;
    color: #666;
}

.highlight-text {
    font-size: 1.2rem;
    background: #FFF8F0;
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 1px solid var(--accent-color);
    color: var(--primary-color);
}

/* SKILLS GRID REFINED */
.skills-grid-refined {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.skill-card-refined {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.skill-card-refined:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.skill-number {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.03);
    font-family: 'Manrope', sans-serif;
}

.skill-card-refined h4 {
    font-size: 1.3rem;
    margin: 1rem 0;
    color: var(--text-color);
}

.icon-box {
    font-size: 2rem;
    color: var(--primary-color);
}

/* IMPACT / BENEFITS */
.impact-section {
    background-color: var(--bg-light);
}

.impact-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 3rem auto;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.benefit-icon {
    font-size: 2rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.benefit-text h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.benefit-text p {
    margin: 0;
    font-size: 0.95rem;
    color: #666;
}

.pricing-card {
    background: #fff;
    max-width: 500px;
    margin: 0 auto;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(176, 125, 98, 0.15);
    border: 1px solid rgba(176, 125, 98, 0.1);
}

.price-tag {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: 'Manrope', sans-serif;
}

.price-tag .period {
    font-size: 1rem;
    color: #999;
    font-weight: 400;
}

/* BLOG MODERN */
.blog-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-card-modern {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.card-image-wrapper {
    height: 220px;
    overflow: hidden;
}

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

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

.card-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.category-tag {
    font-size: 0.75rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.card-content p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    flex-grow: 1;
}

.read-more {
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 5px;
}

.read-more:hover {
    gap: 10px;
}

/* Animations */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.8;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid #fff;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: #fff;
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* WHATSAPP FLOAT - Removed (Moved to style.css) */

/* Responsive */
@media (max-width: 768px) {
    .headline {
        font-size: 2.2rem;
        /* Reduced from 2.5rem/4rem */
        line-height: 1.2;
    }

    .subheadline {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .glass-box {
        padding: 2rem 1rem;
        margin: 0 1rem;
        border-radius: 16px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefit-item {
        padding: 1.5rem;
    }

    .cta-container {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        display: flex;
        /* Center text properly if flex */
        justify-content: center;
    }

    .methodology-grid,
    .skills-grid-refined,
    .blog-grid-modern {
        grid-template-columns: 1fr;
        /* Force stack */
    }

    /* Improve spacing on mobile */
    .hero-section {
        height: auto;
        min-height: 100vh;
        /* Allow growth if content is long */
        padding-top: 80px;
        /* Space for fixed nav */
        padding-bottom: 4rem;
    }

    .content-wrapper {
        margin-top: 2rem;
    }
}