/* Global Typography Variables inherited from style.css */

/* Grid Layout */
.hero-title {
    font-size: clamp(3.5rem, 5vw, 5.5rem);
    font-weight: 600;
    line-height: 1.1;
    font-family: var(--font-heading);
    /* Standardized */
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

/* Portfolio / Digital Agency Layout (2 Column Auto-Fit) */
.grid-missions {
    display: grid;
    /* Min 280px allows 4 columns on 1200px screens, 3 on tablet/laptop, 1-2 on mobile */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    width: 100%;
}

@media (max-width: 600px) {
    .grid-missions {
        grid-template-columns: 1fr;
    }
}

/* Card Reset & Redesign */
/* Card Reset & Redesign */
.glass-card {
    display: flex;
    flex-direction: column;
    background: transparent;
    border-radius: 1.5rem;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    overflow: visible;
    text-decoration: none;
    isolation: auto;
    aspect-ratio: auto;
    height: auto;
    transform: none;
}

.glass-card:hover,
.glass-card:focus,
.glass-card:active {
    background: transparent;
    border: none;
    box-shadow: none;
    transform: none;
}

/* Image Container */
.card-bg-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: 1rem;
    /* Modern soft rounded corners */
    background-size: cover;
    background-position: center;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    /* Smooth modern ease */
    z-index: 1;
    box-shadow: none;
    /* No elevation */
    margin-bottom: 1rem;
    inset: auto;
}

.glass-card:hover .card-bg-image {
    transform: scale(0.98);
    /* Subtle modern press effect instead of lift */
    box-shadow: none;
}

.glass-card::after {
    display: none;
}

/* Content Container (Below Image) */
.glass-card-content {
    position: relative;
    background: transparent;
    padding: 0.5rem 0 0 0;
    /* Slight top padding */
    display: flex;
    flex-direction: row;
    /* Row: Icon | Text */
    align-items: center;
    /* Center vertically */
    justify-content: flex-start;
    /* Left align */
    width: 100%;
    inset: auto;
    transform: none !important;
    height: auto;
    gap: 1rem;
}

.glass-card:hover .glass-card-content {
    transform: none;
}

.card-icon {
    display: flex;
    /* Restore Icon */
    flex-shrink: 0;
    background: #f3f4f6;
    /* Keep subtle bg or remove? User liked 'previous', which had it. */
    width: 48px;
    height: 48px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
}

.card-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Left align text */
    gap: 0.2rem;
}

.card-title {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-size: 1rem;
    /* Restored larger size */
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}

.card-subtitle {
    font-family: var(--font-ui);
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.8;
}

/* Hide Arrow only */
.card-arrow {
    display: none;
}

.hover-bg {
    display: none;
}

/* Hero Section Redesign */
.hero-screen {
    min-height: 100vh;
    padding: 2rem 5%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    background-color: var(--bg-primary);
    position: relative;
    overflow: hidden;
    gap: 4rem;
    background-image: none !important;
}

/* Remove default dark overlay from style.css */
.hero-screen::after {
    content: none !important;
    display: none !important;
}

@media (max-width: 992px) {
    .hero-screen {
        flex-direction: column-reverse;
        justify-content: center;
        text-align: center;
        padding-top: 6rem;
    }
}

/* Left Content */
.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
}

.hero-tagline {
    font-family: var(--font-ui);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    display: block;
    font-weight: 600;
}

/* .hero-title handled above */

.hero-description {
    font-family: var(--font-body);
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

@media (max-width: 992px) {
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Button */
/* Button styles cleared */

/* Nav Link Overrides for Home Page */
.nav-link {
    color: var(--text-secondary) !important;
    font-family: var(--font-ui);
    font-weight: 600;
}

.nav-link:hover {
    color: var(--text-primary) !important;
}

.nav-link i,
.nav-link svg {
    stroke: currentColor;
    color: currentColor;
}

/* Right Visuals */
.hero-visuals {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 500px;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

/* Circular Blob Background */
.hero-blob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background-color: #CCFBF1;
    border-radius: 50%;
    z-index: 1;
}

/* Floating Elements (Decorations) */
.hero-decor-1 {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 40px;
    height: 40px;
    background-color: #A78BFA;
    border-radius: 50%;
    opacity: 0.6;
    z-index: 2;
    filter: blur(2px);
}

.hero-decor-2 {
    position: absolute;
    bottom: 20%;
    right: 5%;
    width: 20px;
    height: 20px;
    background-color: #F97316;
    border-radius: 50%;
    z-index: 2;
}

.hero-decor-3 {
    position: absolute;
    bottom: 30%;
    right: 5%;
    width: 12px;
    height: 12px;
    background-color: #9CA3AF;
    border-radius: 50%;
    z-index: 2;
}

/* Main Image */
.hero-img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Button styles cleared (Moved to style.css) */

/* Footer Styles */
footer {
    background: var(--bg-primary);
    color: var(--text-primary);
    padding: 4rem 1rem;
    border-top: 1px solid var(--border-color);
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 900px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    }
}

.footer-col h4 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    font-family: var(--font-ui);
    gap: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.social-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin: 0;
    padding: 0;
    line-height: 0;
}

.social-icon {
    color: var(--text-primary);
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    height: 20px;
    /* Enforce height */
    width: 20px;
    /* Enforce width */
}

.social-icon:hover {
    opacity: 0.8;
}

.footer-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}


.footer-input {
    width: 100%;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: white;
    font-family: var(--font-ui);
    /* UI Font */
}

.footer-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.footer-btn {
    background: var(--text-primary);
    color: var(--bg-primary);
    border: none;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-family: var(--font-ui);
    /* UI Font */
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.footer-btn:hover {
    background: #e5e5e5;
}

.copyright {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* FAQ Styles */
summary {
    list-style: none;
    /* Remove default triangle */
}

summary::-webkit-details-marker {
    display: none;
    /* Safari */
}

.faq-summary {
    font-family: var(--font-ui);
    /* Heading/UI Font */
    font-weight: 600;
    font-size: 1.25rem;
    /* Larger than answer */
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 1rem 0;
    user-select: none;
}

.faq-answer {
    font-family: var(--font-body);
    margin-top: 0.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1.05rem;
    /* Smaller than question */
}

details {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

details[open] .faq-summary svg {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.faq-summary svg {
    transition: transform 0.3s ease;
}

details[open] summary~* {
    animation: slideDown 0.3s ease-in-out;
}

/* Section Headings */
.section-title {
    font-family: var(--font-heading);
    /* Poppins */
    font-size: clamp(2rem, 4vw, 3rem);
    /* Match Campaign Title */
    font-weight: 400;
    /* Match Campaign Title */
    margin-bottom: 3rem;
    color: var(--text-primary);
    line-height: 1.1;
    letter-spacing: normal;
    text-transform: none;
    /* Match Campaign Title */
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}

@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Testimonial Styles */
.testimonial-card {
    min-width: 350px;
    max-width: 400px;
    padding: 1rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(20, 10, 10, 0.8), rgba(40, 20, 20, 0.6));
    border: 1px solid rgba(255, 255, 255, 0.1);
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: auto;
}

.testimonial-quote {
    font-family: var(--font-serif);
    /* Playfair Display */
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    flex-grow: 1;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.profile-pic {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.testimonial-name {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    line-height: 1.2;
    margin-bottom: 0.2rem;
}

.testimonial-role {
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-family: var(--font-ui);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hide scrollbar */
.testimonial-scroller::-webkit-scrollbar {
    display: none;
}

.testimonial-scroller {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* --- Impact Feature Section (Index) --- */
.impact-feature-section {
    padding: 6rem 0;
    background-color: var(--bg-primary);
    overflow: hidden;
}

.feature-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 992px) {
    .feature-layout {
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
    }
}

/* Left Column - Big Impact */
.feature-left-content {
    position: relative;
    z-index: 2;
}

/* Unused feature-tagline removed */

.feature-headline {
    font-family: var(--font-heading);
    /* Poppins */
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 0.9;
    color: var(--text-primary);
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.feature-headline .highlight-text {
    color: #f97316;
}

.feature-big-number {
    font-family: 'Outfit', sans-serif;
    /* Special case */
    font-size: clamp(8rem, 15vw, 12rem);
    font-weight: 900;
    line-height: 0.8;
    color: #f97316;
    display: inline-block;
    margin-top: 1rem;
    margin-bottom: 2rem;
    /* Spacing below number */
    text-shadow: 4px 4px 2px rgba(0, 0, 0, 0.1);
    letter-spacing: -4px;
}

/* Right Column - Handwritting & List */
.feature-right-content {
    position: relative;
}



.feature-description {
    font-family: var(--font-body);
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 3rem;
    font-weight: 500;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 2rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-key {
    font-size: 0.875rem;
    font-weight: 600;
    color: #f97316;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-family: var(--font-ui);
}

.feature-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: var(--font-heading);
}

/* --- Mission Campaign Section (Index) --- */
.campaign-section {
    padding: 3rem 0;
    position: relative;
    /* Removed overflow: hidden to allow girl to pop out */
}

.campaign-header {
    margin-bottom: 2rem;
    max-width: 800px;
}

.campaign-subtitle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #f97316;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    font-family: var(--font-ui);
}

.campaign-subtitle::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background-color: var(--text-primary);
}

.campaign-title {
    font-family: var(--font-heading);
    /* Poppins */
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--text-primary);
}

.campaign-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 992px) {
    .campaign-grid {
        grid-template-columns: 250px 1fr 350px;
        gap: 3rem;
        align-items: start;
    }
}

/* Sidebar - Orange Card */
.campaign-sidebar {
    background-color: #f26b3a;
    padding: 2rem 1.5rem;
    color: white;
    height: fit-content;
    /* Fit content instead of 100% */
    border-radius: 4px;
}

.sidebar-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}


.sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
    /* Removed bottom margin */
}

.sidebar-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 0.75rem;
}

.sidebar-list li::before {
    content: '•';
    font-size: 1.25rem;
    line-height: 0;
}

.btn-sidebar {
    background-color: #0f3d3e;
    /* Dark Teal */
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    font-size: 0.85rem;
    transition: background 0.3s ease;
}

.btn-sidebar:hover {
    background-color: #0c2e2f;
}

/* Center Content */
.campaign-content {
    display: flex;
    flex-direction: column;
}

.campaign-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Unused classes removed: btn-outline, handwritten-note, campaign-feature-box, progress-wrapper */

/* Right Content - Image */
.campaign-image-col {
    position: relative;
    height: 100%;
    /* Fill height */
    margin-top: -8rem;
    /* Adjusted alignment */
    z-index: 10;
}

.campaign-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    /* Ensure clean fit */
    display: block;
    filter: drop-shadow(10px 10px 20px rgba(0, 0, 0, 0.1));
}